blob: 91c65e8fbe265ddf86d4eb85a4c48a7ef79fbe79 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/CodeGen/MachineFunction.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chenga448bc42007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/Target/TargetLowering.h"
22#include "llvm/Target/TargetData.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetOptions.h"
Dan Gohmane8b391e2008-04-12 04:36:06 +000025#include "llvm/Target/TargetSubtarget.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/CallingConv.h"
27#include "llvm/Constants.h"
28#include "llvm/DerivedTypes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Compiler.h"
Duncan Sandsa3691432007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/ADT/DenseMap.h"
33#include "llvm/ADT/SmallVector.h"
34#include "llvm/ADT/SmallPtrSet.h"
35#include <map>
36using namespace llvm;
37
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
51class VISIBILITY_HIDDEN SelectionDAGLegalize {
52 TargetLowering &TLI;
53 SelectionDAG &DAG;
54
55 // Libcall insertion helpers.
56
57 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
58 /// legalized. We use this to ensure that calls are properly serialized
59 /// against each other, including inserted libcalls.
Dan Gohman8181bd12008-07-27 21:46:04 +000060 SDValue LastCALLSEQ_END;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62 /// IsLegalizingCall - This member is used *only* for purposes of providing
63 /// helpful assertions that a libcall isn't created while another call is
64 /// being legalized (which could lead to non-serialized call sequences).
65 bool IsLegalizingCall;
66
67 enum LegalizeAction {
68 Legal, // The target natively supports this operation.
69 Promote, // This operation should be executed in a larger type.
70 Expand // Try to expand this to other ops, otherwise use a libcall.
71 };
72
73 /// ValueTypeActions - This is a bitvector that contains two bits for each
74 /// value type, where the two bits correspond to the LegalizeAction enum.
75 /// This can be queried with "getTypeAction(VT)".
76 TargetLowering::ValueTypeActionImpl ValueTypeActions;
77
78 /// LegalizedNodes - For nodes that are of legal width, and that have more
79 /// than one use, this map indicates what regularized operand to use. This
80 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000081 DenseMap<SDValue, SDValue> LegalizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082
83 /// PromotedNodes - For nodes that are below legal width, and that have more
84 /// than one use, this map indicates what promoted value to use. This allows
85 /// us to avoid promoting the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000086 DenseMap<SDValue, SDValue> PromotedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087
88 /// ExpandedNodes - For nodes that need to be expanded this map indicates
89 /// which which operands are the expanded version of the input. This allows
90 /// us to avoid expanding the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000091 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092
93 /// SplitNodes - For vector nodes that need to be split, this map indicates
94 /// which which operands are the split version of the input. This allows us
95 /// to avoid splitting the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000096 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097
98 /// ScalarizedNodes - For nodes that need to be converted from vector types to
99 /// scalar types, this contains the mapping of ones we have already
100 /// processed to the result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000101 std::map<SDValue, SDValue> ScalarizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
Dan Gohman8181bd12008-07-27 21:46:04 +0000103 void AddLegalizedOperand(SDValue From, SDValue To) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 LegalizedNodes.insert(std::make_pair(From, To));
105 // If someone requests legalization of the new node, return itself.
106 if (From != To)
107 LegalizedNodes.insert(std::make_pair(To, To));
108 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000109 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman55d19662008-07-07 17:46:23 +0000110 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 assert(isNew && "Got into the map somehow?");
112 // If someone requests legalization of the new node, return itself.
113 LegalizedNodes.insert(std::make_pair(To, To));
114 }
115
116public:
Dan Gohmane887fdf2008-07-07 18:00:37 +0000117 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118
119 /// getTypeAction - Return how we should legalize values of this type, either
120 /// it is already legal or we need to expand it into multiple registers of
121 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands92c43912008-06-06 12:08:01 +0000122 LegalizeAction getTypeAction(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
124 }
125
126 /// isTypeLegal - Return true if this type is legal on this target.
127 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000128 bool isTypeLegal(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 return getTypeAction(VT) == Legal;
130 }
131
132 void LegalizeDAG();
133
134private:
135 /// HandleOp - Legalize, Promote, or Expand the specified operand as
136 /// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000137 void HandleOp(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
139 /// LegalizeOp - We know that the specified value has a legal type.
140 /// Recursively ensure that the operands have legal types, then return the
141 /// result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000142 SDValue LegalizeOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
Dan Gohman6d05cac2007-10-11 23:57:53 +0000144 /// UnrollVectorOp - We know that the given vector has a legal type, however
145 /// the operation it performs is not legal and is an operation that we have
146 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
147 /// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000148 SDValue UnrollVectorOp(SDValue O);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000149
150 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
151 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
152 /// is necessary to spill the vector being inserted into to memory, perform
153 /// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000154 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
155 SDValue Idx);
Dan Gohman6d05cac2007-10-11 23:57:53 +0000156
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 /// PromoteOp - Given an operation that produces a value in an invalid type,
158 /// promote it to compute the value into a larger type. The produced value
159 /// will have the correct bits for the low portion of the register, but no
160 /// guarantee is made about the top bits: it may be zero, sign-extended, or
161 /// garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +0000162 SDValue PromoteOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163
Dan Gohman8181bd12008-07-27 21:46:04 +0000164 /// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
166 /// the LegalizeNodes map is filled in for any results that are not expanded,
167 /// the ExpandedNodes map is filled in for any results that are expanded, and
168 /// the Lo/Hi values are returned. This applies to integer types and Vector
169 /// types.
Dan Gohman8181bd12008-07-27 21:46:04 +0000170 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171
172 /// SplitVectorOp - Given an operand of vector type, break it down into
173 /// two smaller values.
Dan Gohman8181bd12008-07-27 21:46:04 +0000174 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175
176 /// ScalarizeVectorOp - Given an operand of single-element vector type
177 /// (e.g. v1f32), convert it into the equivalent operation that returns a
178 /// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000179 SDValue ScalarizeVectorOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180
Duncan Sandsd3ace282008-07-21 10:20:31 +0000181 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 /// specified mask and type. Targets can specify exactly which masks they
183 /// support and the code generator is tasked with not creating illegal masks.
184 ///
185 /// Note that this will also return true for shuffles that are promoted to a
186 /// different type.
187 ///
188 /// If this is a legal shuffle, this method returns the (possibly promoted)
189 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman8181bd12008-07-27 21:46:04 +0000190 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191
192 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
193 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
194
Dan Gohman8181bd12008-07-27 21:46:04 +0000195 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
Dan Gohman8181bd12008-07-27 21:46:04 +0000197 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
198 SDValue &Hi);
199 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200
Dan Gohman8181bd12008-07-27 21:46:04 +0000201 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT);
202 SDValue ExpandBUILD_VECTOR(SDNode *Node);
203 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Dan Gohman29c3cef2008-08-14 20:04:46 +0000204 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op);
Dan Gohman8181bd12008-07-27 21:46:04 +0000205 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT);
206 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned);
207 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208
Dan Gohman8181bd12008-07-27 21:46:04 +0000209 SDValue ExpandBSWAP(SDValue Op);
210 SDValue ExpandBitCount(unsigned Opc, SDValue Op);
211 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
212 SDValue &Lo, SDValue &Hi);
213 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
214 SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215
Dan Gohman8181bd12008-07-27 21:46:04 +0000216 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
217 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218};
219}
220
221/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
222/// specified mask and type. Targets can specify exactly which masks they
223/// support and the code generator is tasked with not creating illegal masks.
224///
225/// Note that this will also return true for shuffles that are promoted to a
226/// different type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000227SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
229 default: return 0;
230 case TargetLowering::Legal:
231 case TargetLowering::Custom:
232 break;
233 case TargetLowering::Promote: {
234 // If this is promoted to a different type, convert the shuffle mask and
235 // ask if it is legal in the promoted type!
Duncan Sands92c43912008-06-06 12:08:01 +0000236 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd3ace282008-07-21 10:20:31 +0000237 MVT EltVT = NVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238
239 // If we changed # elements, change the shuffle mask.
240 unsigned NumEltsGrowth =
Duncan Sands92c43912008-06-06 12:08:01 +0000241 NVT.getVectorNumElements() / VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
243 if (NumEltsGrowth > 1) {
244 // Renumber the elements.
Dan Gohman8181bd12008-07-27 21:46:04 +0000245 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000247 SDValue InOp = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
249 if (InOp.getOpcode() == ISD::UNDEF)
Duncan Sandsd3ace282008-07-21 10:20:31 +0000250 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 else {
252 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
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 }
263 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
264}
265
266SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
267 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
268 ValueTypeActions(TLI.getValueTypeActions()) {
269 assert(MVT::LAST_VALUETYPE <= 32 &&
270 "Too many value types for ValueTypeActions to hold!");
271}
272
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273void SelectionDAGLegalize::LegalizeDAG() {
274 LastCALLSEQ_END = DAG.getEntryNode();
275 IsLegalizingCall = false;
276
277 // The legalize process is inherently a bottom-up recursive process (users
278 // legalize their uses before themselves). Given infinite stack space, we
279 // could just start legalizing on the root and traverse the whole graph. In
280 // practice however, this causes us to run out of stack space on large basic
281 // blocks. To avoid this problem, compute an ordering of the nodes where each
282 // node is only legalized after all of its operands are legalized.
Dan Gohman509fca42008-08-26 21:42:18 +0000283 std::vector<SDNode *> TopOrder;
284 unsigned N = DAG.AssignTopologicalOrder(TopOrder);
285 for (unsigned i = N; i != 0; --i)
286 HandleOp(SDValue(TopOrder[i-1], 0));
287 TopOrder.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288
289 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000290 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
292 DAG.setRoot(LegalizedNodes[OldRoot]);
293
294 ExpandedNodes.clear();
295 LegalizedNodes.clear();
296 PromotedNodes.clear();
297 SplitNodes.clear();
298 ScalarizedNodes.clear();
299
300 // Remove dead nodes now.
301 DAG.RemoveDeadNodes();
302}
303
304
305/// FindCallEndFromCallStart - Given a chained node that is part of a call
306/// sequence, find the CALLSEQ_END node that terminates the call sequence.
307static SDNode *FindCallEndFromCallStart(SDNode *Node) {
308 if (Node->getOpcode() == ISD::CALLSEQ_END)
309 return Node;
310 if (Node->use_empty())
311 return 0; // No CallSeqEnd
312
313 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000314 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 if (TheChain.getValueType() != MVT::Other) {
316 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000317 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318 if (TheChain.getValueType() != MVT::Other) {
319 // Otherwise, hunt for it.
320 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
321 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000322 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 break;
324 }
325
326 // Otherwise, we walked into a node without a chain.
327 if (TheChain.getValueType() != MVT::Other)
328 return 0;
329 }
330 }
331
332 for (SDNode::use_iterator UI = Node->use_begin(),
333 E = Node->use_end(); UI != E; ++UI) {
334
335 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000336 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
338 if (User->getOperand(i) == TheChain)
339 if (SDNode *Result = FindCallEndFromCallStart(User))
340 return Result;
341 }
342 return 0;
343}
344
345/// FindCallStartFromCallEnd - Given a chained node that is part of a call
346/// sequence, find the CALLSEQ_START node that initiates the call sequence.
347static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
348 assert(Node && "Didn't find callseq_start for a call??");
349 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
350
351 assert(Node->getOperand(0).getValueType() == MVT::Other &&
352 "Node doesn't have a token chain argument!");
353 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
354}
355
356/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
357/// see if any uses can reach Dest. If no dest operands can get to dest,
358/// legalize them, legalize ourself, and return false, otherwise, return true.
359///
360/// Keep track of the nodes we fine that actually do lead to Dest in
361/// NodesLeadingTo. This avoids retraversing them exponential number of times.
362///
363bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
364 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
365 if (N == Dest) return true; // N certainly leads to Dest :)
366
367 // If we've already processed this node and it does lead to Dest, there is no
368 // need to reprocess it.
369 if (NodesLeadingTo.count(N)) return true;
370
371 // If the first result of this node has been already legalized, then it cannot
372 // reach N.
373 switch (getTypeAction(N->getValueType(0))) {
374 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000375 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376 break;
377 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000378 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379 break;
380 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000381 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 break;
383 }
384
385 // Okay, this node has not already been legalized. Check and legalize all
386 // operands. If none lead to Dest, then we can legalize this node.
387 bool OperandsLeadToDest = false;
388 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
389 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
390 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
391
392 if (OperandsLeadToDest) {
393 NodesLeadingTo.insert(N);
394 return true;
395 }
396
397 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000398 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 return false;
400}
401
402/// HandleOp - Legalize, Promote, or Expand the specified operand as
403/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000404void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000405 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 switch (getTypeAction(VT)) {
407 default: assert(0 && "Bad type action!");
408 case Legal: (void)LegalizeOp(Op); break;
409 case Promote: (void)PromoteOp(Op); break;
410 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000411 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 // If this is an illegal scalar, expand it into its two component
413 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000414 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000415 if (Op.getOpcode() == ISD::TargetConstant)
416 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000418 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 // If this is an illegal single element vector, convert it to a
420 // scalar operation.
421 (void)ScalarizeVectorOp(Op);
422 } else {
423 // Otherwise, this is an illegal multiple element vector.
424 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000425 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 SplitVectorOp(Op, X, Y);
427 }
428 break;
429 }
430}
431
432/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
433/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000434static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 SelectionDAG &DAG, TargetLowering &TLI) {
436 bool Extend = false;
437
438 // If a FP immediate is precise when represented as a float and if the
439 // target can do an extending load from float to double, we put it into
440 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000441 // double. This shrinks FP constants and canonicalizes them for targets where
442 // an FP extending load is the same cost as a normal load (such as on the x87
443 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000444 MVT VT = CFP->getValueType(0);
Chris Lattner5e0610f2008-04-20 00:41:09 +0000445 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 if (!UseCP) {
Dale Johannesen2fc20782007-09-14 22:26:36 +0000447 if (VT!=MVT::f64 && VT!=MVT::f32)
448 assert(0 && "Invalid type expansion");
Dan Gohman39509762008-03-11 00:11:06 +0000449 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000450 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 }
452
Duncan Sands92c43912008-06-06 12:08:01 +0000453 MVT OrigVT = VT;
454 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000455 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000456 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000457 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
458 // Only do this if the target has a native EXTLOAD instruction from
459 // smaller type.
Evan Cheng35190fd2008-03-05 01:30:59 +0000460 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000461 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000462 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000463 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
464 VT = SVT;
465 Extend = true;
466 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 }
468
Dan Gohman8181bd12008-07-27 21:46:04 +0000469 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
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(),
Evan Cheng354be062008-03-04 08:05:30 +0000473 0, VT);
474 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
475 PseudoSourceValue::getConstantPool(), 0);
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!");
670 assert(Op.Val->getNumValues() == 1 &&
671 "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
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000736 int SPFI = cast<FrameIndexSDNode>(StackPtr.Val)->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!");
767 SDNode *Node = Op.Val;
768
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:
802 case ISD::TargetExternalSymbol:
803 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:
835 case ISD::ExternalSymbol:
836 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);
842 if (Tmp1.Val) Result = Tmp1;
843 // 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);
853 if (Tmp1.Val)
854 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);
864 if (Result.Val) break;
865 // 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);
884 if (Result.Val) break;
885 // 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 }
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000893 if (Result.Val->getNumValues() == 1) break;
894
895 assert(Result.Val->getNumValues() == 2 &&
896 "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);
918 if (Result.Val) break;
919 // 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 }
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000927 if (Result.Val->getNumValues() == 1) break;
928
929 assert(Result.Val->getNumValues() == 2 &&
930 "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);
946 if (Result.Val) break;
947 // 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);
1015 if (Tmp3.Val) Result = Tmp3;
1016 }
1017
1018 if (Result.Val->getNumValues() == 1) break;
1019
1020 // Must have return value and chain result.
1021 assert(Result.Val->getNumValues() == 2 &&
1022 "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;
Mon P Wang078a62d2008-05-05 19:05:59 +00001263 case TargetLowering::Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +00001264 Result = SDValue(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang078a62d2008-05-05 19:05:59 +00001265 break;
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001266 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001267 break;
1268 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001269 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1270 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001271 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001272 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001273 case ISD::Constant: {
1274 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1275 unsigned opAction =
1276 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1277
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 // We know we don't need to expand constants here, constants only have one
1279 // value and we check that it is fine above.
1280
Scott Michelf2e2b702007-08-08 23:23:31 +00001281 if (opAction == TargetLowering::Custom) {
1282 Tmp1 = TLI.LowerOperation(Result, DAG);
1283 if (Tmp1.Val)
1284 Result = Tmp1;
1285 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001287 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288 case ISD::ConstantFP: {
1289 // Spill FP immediates to the constant pool if the target cannot directly
1290 // codegen them. Targets often have some immediate values that can be
1291 // efficiently generated into an FP register without a load. We explicitly
1292 // leave these constants as ConstantFP nodes for the target to deal with.
1293 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1294
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1296 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001297 case TargetLowering::Legal:
1298 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299 case TargetLowering::Custom:
1300 Tmp3 = TLI.LowerOperation(Result, DAG);
1301 if (Tmp3.Val) {
1302 Result = Tmp3;
1303 break;
1304 }
1305 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001306 case TargetLowering::Expand: {
1307 // Check to see if this FP immediate is already legal.
1308 bool isLegal = false;
1309 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1310 E = TLI.legal_fpimm_end(); I != E; ++I) {
1311 if (CFP->isExactlyValue(*I)) {
1312 isLegal = true;
1313 break;
1314 }
1315 }
1316 // If this is a legal constant, turn it into a TargetConstantFP node.
1317 if (isLegal)
1318 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001319 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1320 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001321 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001322 break;
1323 }
1324 case ISD::TokenFactor:
1325 if (Node->getNumOperands() == 2) {
1326 Tmp1 = LegalizeOp(Node->getOperand(0));
1327 Tmp2 = LegalizeOp(Node->getOperand(1));
1328 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1329 } else if (Node->getNumOperands() == 3) {
1330 Tmp1 = LegalizeOp(Node->getOperand(0));
1331 Tmp2 = LegalizeOp(Node->getOperand(1));
1332 Tmp3 = LegalizeOp(Node->getOperand(2));
1333 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1334 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001335 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001336 // Legalize the operands.
1337 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1338 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1339 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1340 }
1341 break;
1342
1343 case ISD::FORMAL_ARGUMENTS:
1344 case ISD::CALL:
1345 // The only option for this is to custom lower it.
1346 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1347 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001348 // A call within a calling sequence must be legalized to something
1349 // other than the normal CALLSEQ_END. Violating this gets Legalize
1350 // into an infinite loop.
1351 assert ((!IsLegalizingCall ||
1352 Node->getOpcode() != ISD::CALL ||
1353 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1354 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001355
1356 // The number of incoming and outgoing values should match; unless the final
1357 // outgoing value is a flag.
1358 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1359 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1360 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1361 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001362 "Lowering call/formal_arguments produced unexpected # results!");
1363
1364 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1365 // remember that we legalized all of them, so it doesn't get relegalized.
1366 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling22f8deb2007-11-13 00:44:25 +00001367 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1368 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001369 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001370 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001371 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001372 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001373 }
1374 return Tmp2;
Christopher Lambb768c2e2007-07-26 07:34:40 +00001375 case ISD::EXTRACT_SUBREG: {
1376 Tmp1 = LegalizeOp(Node->getOperand(0));
1377 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1378 assert(idx && "Operand must be a constant");
1379 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1381 }
1382 break;
1383 case ISD::INSERT_SUBREG: {
1384 Tmp1 = LegalizeOp(Node->getOperand(0));
1385 Tmp2 = LegalizeOp(Node->getOperand(1));
1386 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1387 assert(idx && "Operand must be a constant");
1388 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1390 }
1391 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392 case ISD::BUILD_VECTOR:
1393 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1394 default: assert(0 && "This action is not supported yet!");
1395 case TargetLowering::Custom:
1396 Tmp3 = TLI.LowerOperation(Result, DAG);
1397 if (Tmp3.Val) {
1398 Result = Tmp3;
1399 break;
1400 }
1401 // FALLTHROUGH
1402 case TargetLowering::Expand:
1403 Result = ExpandBUILD_VECTOR(Result.Val);
1404 break;
1405 }
1406 break;
1407 case ISD::INSERT_VECTOR_ELT:
1408 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001409 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001410
1411 // The type of the value to insert may not be legal, even though the vector
1412 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1413 // here.
1414 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1415 default: assert(0 && "Cannot expand insert element operand");
1416 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1417 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1418 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001419 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1420
1421 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1422 Node->getValueType(0))) {
1423 default: assert(0 && "This action is not supported yet!");
1424 case TargetLowering::Legal:
1425 break;
1426 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001427 Tmp4 = TLI.LowerOperation(Result, DAG);
1428 if (Tmp4.Val) {
1429 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001430 break;
1431 }
1432 // FALLTHROUGH
1433 case TargetLowering::Expand: {
1434 // If the insert index is a constant, codegen this as a scalar_to_vector,
1435 // then a shuffle that inserts it into the right position in the vector.
1436 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001437 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1438 // match the element type of the vector being created.
1439 if (Tmp2.getValueType() ==
Duncan Sands92c43912008-06-06 12:08:01 +00001440 Op.getValueType().getVectorElementType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001441 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001442 Tmp1.getValueType(), Tmp2);
1443
Duncan Sands92c43912008-06-06 12:08:01 +00001444 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1445 MVT ShufMaskVT =
1446 MVT::getIntVectorWithNumElements(NumElts);
1447 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001448
1449 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1450 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1451 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001452 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001453 for (unsigned i = 0; i != NumElts; ++i) {
1454 if (i != InsertPos->getValue())
1455 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1456 else
1457 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1458 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001459 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001460 &ShufOps[0], ShufOps.size());
1461
1462 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1463 Tmp1, ScVec, ShufMask);
1464 Result = LegalizeOp(Result);
1465 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001466 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001467 }
Nate Begeman7c9e4b72008-04-25 18:07:40 +00001468 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001469 break;
1470 }
1471 }
1472 break;
1473 case ISD::SCALAR_TO_VECTOR:
1474 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1475 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1476 break;
1477 }
1478
1479 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1480 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1481 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1482 Node->getValueType(0))) {
1483 default: assert(0 && "This action is not supported yet!");
1484 case TargetLowering::Legal:
1485 break;
1486 case TargetLowering::Custom:
1487 Tmp3 = TLI.LowerOperation(Result, DAG);
1488 if (Tmp3.Val) {
1489 Result = Tmp3;
1490 break;
1491 }
1492 // FALLTHROUGH
1493 case TargetLowering::Expand:
1494 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1495 break;
1496 }
1497 break;
1498 case ISD::VECTOR_SHUFFLE:
1499 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1500 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1501 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1502
1503 // Allow targets to custom lower the SHUFFLEs they support.
1504 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1505 default: assert(0 && "Unknown operation action!");
1506 case TargetLowering::Legal:
1507 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1508 "vector shuffle should not be created if not legal!");
1509 break;
1510 case TargetLowering::Custom:
1511 Tmp3 = TLI.LowerOperation(Result, DAG);
1512 if (Tmp3.Val) {
1513 Result = Tmp3;
1514 break;
1515 }
1516 // FALLTHROUGH
1517 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001518 MVT VT = Node->getValueType(0);
1519 MVT EltVT = VT.getVectorElementType();
1520 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001521 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001522 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00001523 SmallVector<SDValue,8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001524 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001525 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001526 if (Arg.getOpcode() == ISD::UNDEF) {
1527 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1528 } else {
1529 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1530 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1531 if (Idx < NumElems)
1532 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1533 DAG.getConstant(Idx, PtrVT)));
1534 else
1535 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1536 DAG.getConstant(Idx - NumElems, PtrVT)));
1537 }
1538 }
1539 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
1540 break;
1541 }
1542 case TargetLowering::Promote: {
1543 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001544 MVT OVT = Node->getValueType(0);
1545 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001546
1547 // Cast the two input vectors.
1548 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1549 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1550
1551 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001552 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001553 assert(Tmp3.Val && "Shuffle not legal?");
1554 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1555 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1556 break;
1557 }
1558 }
1559 break;
1560
1561 case ISD::EXTRACT_VECTOR_ELT:
1562 Tmp1 = Node->getOperand(0);
1563 Tmp2 = LegalizeOp(Node->getOperand(1));
1564 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1565 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1566 break;
1567
1568 case ISD::EXTRACT_SUBVECTOR:
1569 Tmp1 = Node->getOperand(0);
1570 Tmp2 = LegalizeOp(Node->getOperand(1));
1571 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1572 Result = ExpandEXTRACT_SUBVECTOR(Result);
1573 break;
1574
1575 case ISD::CALLSEQ_START: {
1576 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1577
1578 // Recursively Legalize all of the inputs of the call end that do not lead
1579 // to this call start. This ensures that any libcalls that need be inserted
1580 // are inserted *before* the CALLSEQ_START.
1581 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1582 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
1583 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1584 NodesLeadingTo);
1585 }
1586
1587 // Now that we legalized all of the inputs (which may have inserted
1588 // libcalls) create the new CALLSEQ_START node.
1589 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1590
1591 // Merge in the last call, to ensure that this call start after the last
1592 // call ended.
1593 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
1594 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1595 Tmp1 = LegalizeOp(Tmp1);
1596 }
1597
1598 // Do not try to legalize the target-specific arguments (#1+).
1599 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001600 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001601 Ops[0] = Tmp1;
1602 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1603 }
1604
1605 // Remember that the CALLSEQ_START is legalized.
1606 AddLegalizedOperand(Op.getValue(0), Result);
1607 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1608 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1609
1610 // Now that the callseq_start and all of the non-call nodes above this call
1611 // sequence have been legalized, legalize the call itself. During this
1612 // process, no libcalls can/will be inserted, guaranteeing that no calls
1613 // can overlap.
1614 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001616 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001617 IsLegalizingCall = true;
1618
1619 // Legalize the call, starting from the CALLSEQ_END.
1620 LegalizeOp(LastCALLSEQ_END);
1621 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1622 return Result;
1623 }
1624 case ISD::CALLSEQ_END:
1625 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1626 // will cause this node to be legalized as well as handling libcalls right.
1627 if (LastCALLSEQ_END.Val != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001628 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1629 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001630 assert(I != LegalizedNodes.end() &&
1631 "Legalizing the call start should have legalized this node!");
1632 return I->second;
1633 }
1634
1635 // Otherwise, the call start has been legalized and everything is going
1636 // according to plan. Just legalize ourselves normally here.
1637 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1638 // Do not try to legalize the target-specific arguments (#1+), except for
1639 // an optional flag input.
1640 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1641 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001642 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001643 Ops[0] = Tmp1;
1644 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1645 }
1646 } else {
1647 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1648 if (Tmp1 != Node->getOperand(0) ||
1649 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001650 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001651 Ops[0] = Tmp1;
1652 Ops.back() = Tmp2;
1653 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1654 }
1655 }
1656 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1657 // This finishes up call legalization.
1658 IsLegalizingCall = false;
1659
1660 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001661 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001662 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001663 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001664 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001665 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001666 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001667 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1668 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1669 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1670 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1671
1672 Tmp1 = Result.getValue(0);
1673 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001674 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675 default: assert(0 && "This action is not supported yet!");
1676 case TargetLowering::Expand: {
1677 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1678 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1679 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001680 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001681
1682 // Chain the dynamic stack allocation so that it doesn't modify the stack
1683 // pointer when other instructions are using the stack.
1684 Chain = DAG.getCALLSEQ_START(Chain,
1685 DAG.getConstant(0, TLI.getPointerTy()));
1686
Dan Gohman8181bd12008-07-27 21:46:04 +00001687 SDValue Size = Tmp2.getOperand(1);
1688 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001689 Chain = SP.getValue(1);
1690 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1691 unsigned StackAlign =
1692 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1693 if (Align > StackAlign)
Evan Cheng51ce0382007-08-17 18:02:22 +00001694 SP = DAG.getNode(ISD::AND, VT, SP,
1695 DAG.getConstant(-(uint64_t)Align, VT));
Evan Chenga448bc42007-08-16 23:50:06 +00001696 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling22f8deb2007-11-13 00:44:25 +00001697 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1698
1699 Tmp2 =
1700 DAG.getCALLSEQ_END(Chain,
1701 DAG.getConstant(0, TLI.getPointerTy()),
1702 DAG.getConstant(0, TLI.getPointerTy()),
Dan Gohman8181bd12008-07-27 21:46:04 +00001703 SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001704
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001705 Tmp1 = LegalizeOp(Tmp1);
1706 Tmp2 = LegalizeOp(Tmp2);
1707 break;
1708 }
1709 case TargetLowering::Custom:
1710 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1711 if (Tmp3.Val) {
1712 Tmp1 = LegalizeOp(Tmp3);
1713 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1714 }
1715 break;
1716 case TargetLowering::Legal:
1717 break;
1718 }
1719 // Since this op produce two values, make sure to remember that we
1720 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001721 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1722 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001723 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001724 }
1725 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001726 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001727 bool Changed = false;
1728 // Legalize all of the operands of the inline asm, in case they are nodes
1729 // that need to be expanded or something. Note we skip the asm string and
1730 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001731 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001732 Changed = Op != Ops[0];
1733 Ops[0] = Op;
1734
1735 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1736 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1737 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1738 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001739 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001740 if (Op != Ops[i]) {
1741 Changed = true;
1742 Ops[i] = Op;
1743 }
1744 }
1745 }
1746
1747 if (HasInFlag) {
1748 Op = LegalizeOp(Ops.back());
1749 Changed |= Op != Ops.back();
1750 Ops.back() = Op;
1751 }
1752
1753 if (Changed)
1754 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1755
1756 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001757 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1758 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001759 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001760 }
1761 case ISD::BR:
1762 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1763 // Ensure that libcalls are emitted before a branch.
1764 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1765 Tmp1 = LegalizeOp(Tmp1);
1766 LastCALLSEQ_END = DAG.getEntryNode();
1767
1768 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1769 break;
1770 case ISD::BRIND:
1771 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1772 // Ensure that libcalls are emitted before a branch.
1773 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1774 Tmp1 = LegalizeOp(Tmp1);
1775 LastCALLSEQ_END = DAG.getEntryNode();
1776
1777 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1778 default: assert(0 && "Indirect target must be legal type (pointer)!");
1779 case Legal:
1780 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1781 break;
1782 }
1783 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1784 break;
1785 case ISD::BR_JT:
1786 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1787 // Ensure that libcalls are emitted before a branch.
1788 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1789 Tmp1 = LegalizeOp(Tmp1);
1790 LastCALLSEQ_END = DAG.getEntryNode();
1791
1792 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1793 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1794
1795 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1796 default: assert(0 && "This action is not supported yet!");
1797 case TargetLowering::Legal: break;
1798 case TargetLowering::Custom:
1799 Tmp1 = TLI.LowerOperation(Result, DAG);
1800 if (Tmp1.Val) Result = Tmp1;
1801 break;
1802 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001803 SDValue Chain = Result.getOperand(0);
1804 SDValue Table = Result.getOperand(1);
1805 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001806
Duncan Sands92c43912008-06-06 12:08:01 +00001807 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001808 MachineFunction &MF = DAG.getMachineFunction();
1809 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
1810 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman8181bd12008-07-27 21:46:04 +00001811 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001812
Dan Gohman8181bd12008-07-27 21:46:04 +00001813 SDValue LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001814 switch (EntrySize) {
1815 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman12a9c082008-02-06 22:27:42 +00001816 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001817 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman12a9c082008-02-06 22:27:42 +00001818 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001819 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001820 }
1821
Evan Cheng6fb06762007-11-09 01:32:10 +00001822 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001823 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1824 // For PIC, the sequence is:
1825 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00001826 // RelocBase can be JumpTable, GOT or some sort of global base.
1827 if (PTy != MVT::i32)
1828 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1829 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1830 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001831 }
Evan Cheng6fb06762007-11-09 01:32:10 +00001832 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001833 }
1834 }
1835 break;
1836 case ISD::BRCOND:
1837 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1838 // Ensure that libcalls are emitted before a return.
1839 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1840 Tmp1 = LegalizeOp(Tmp1);
1841 LastCALLSEQ_END = DAG.getEntryNode();
1842
1843 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1844 case Expand: assert(0 && "It's impossible to expand bools");
1845 case Legal:
1846 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1847 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00001848 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001849 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1850
1851 // The top bits of the promoted condition are not necessarily zero, ensure
1852 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00001853 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001854 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00001855 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001856 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
1857 break;
1858 }
Dan Gohman07961cd2008-02-25 21:11:39 +00001859 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001860
1861 // Basic block destination (Op#2) is always legal.
1862 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1863
1864 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1865 default: assert(0 && "This action is not supported yet!");
1866 case TargetLowering::Legal: break;
1867 case TargetLowering::Custom:
1868 Tmp1 = TLI.LowerOperation(Result, DAG);
1869 if (Tmp1.Val) Result = Tmp1;
1870 break;
1871 case TargetLowering::Expand:
1872 // Expand brcond's setcc into its constituent parts and create a BR_CC
1873 // Node.
1874 if (Tmp2.getOpcode() == ISD::SETCC) {
1875 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1876 Tmp2.getOperand(0), Tmp2.getOperand(1),
1877 Node->getOperand(2));
1878 } else {
1879 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1880 DAG.getCondCode(ISD::SETNE), Tmp2,
1881 DAG.getConstant(0, Tmp2.getValueType()),
1882 Node->getOperand(2));
1883 }
1884 break;
1885 }
1886 break;
1887 case ISD::BR_CC:
1888 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1889 // Ensure that libcalls are emitted before a branch.
1890 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1891 Tmp1 = LegalizeOp(Tmp1);
1892 Tmp2 = Node->getOperand(2); // LHS
1893 Tmp3 = Node->getOperand(3); // RHS
1894 Tmp4 = Node->getOperand(1); // CC
1895
1896 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1897 LastCALLSEQ_END = DAG.getEntryNode();
1898
1899 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1900 // the LHS is a legal SETCC itself. In this case, we need to compare
1901 // the result against zero to select between true and false values.
1902 if (Tmp3.Val == 0) {
1903 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1904 Tmp4 = DAG.getCondCode(ISD::SETNE);
1905 }
1906
1907 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1908 Node->getOperand(4));
1909
1910 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1911 default: assert(0 && "Unexpected action for BR_CC!");
1912 case TargetLowering::Legal: break;
1913 case TargetLowering::Custom:
1914 Tmp4 = TLI.LowerOperation(Result, DAG);
1915 if (Tmp4.Val) Result = Tmp4;
1916 break;
1917 }
1918 break;
1919 case ISD::LOAD: {
1920 LoadSDNode *LD = cast<LoadSDNode>(Node);
1921 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1922 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
1923
1924 ISD::LoadExtType ExtType = LD->getExtensionType();
1925 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00001926 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001927 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1928 Tmp3 = Result.getValue(0);
1929 Tmp4 = Result.getValue(1);
1930
1931 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1932 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001933 case TargetLowering::Legal:
1934 // If this is an unaligned load and the target doesn't support it,
1935 // expand it.
1936 if (!TLI.allowsUnalignedMemoryAccesses()) {
1937 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00001938 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001939 if (LD->getAlignment() < ABIAlignment){
1940 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1941 TLI);
1942 Tmp3 = Result.getOperand(0);
1943 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00001944 Tmp3 = LegalizeOp(Tmp3);
1945 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001946 }
1947 }
1948 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001949 case TargetLowering::Custom:
1950 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1951 if (Tmp1.Val) {
1952 Tmp3 = LegalizeOp(Tmp1);
1953 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1954 }
1955 break;
1956 case TargetLowering::Promote: {
1957 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00001958 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001959 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001960 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001961
1962 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1963 LD->getSrcValueOffset(),
1964 LD->isVolatile(), LD->getAlignment());
1965 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1966 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1967 break;
1968 }
1969 }
1970 // Since loads produce two values, make sure to remember that we
1971 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001972 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1973 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00001974 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001975 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00001976 MVT SrcVT = LD->getMemoryVT();
1977 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00001978 int SVOffset = LD->getSrcValueOffset();
1979 unsigned Alignment = LD->getAlignment();
1980 bool isVolatile = LD->isVolatile();
1981
Duncan Sands92c43912008-06-06 12:08:01 +00001982 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00001983 // Some targets pretend to have an i1 loading operation, and actually
1984 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1985 // bits are guaranteed to be zero; it helps the optimizers understand
1986 // that these bits are zero. It is also useful for EXTLOAD, since it
1987 // tells the optimizers that those bits are undefined. It would be
1988 // nice to have an effective generic way of getting these benefits...
1989 // Until such a way is found, don't insist on promoting i1 here.
1990 (SrcVT != MVT::i1 ||
1991 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1992 // Promote to a byte-sized load if not loading an integral number of
1993 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00001994 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1995 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00001996 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00001997
1998 // The extra bits are guaranteed to be zero, since we stored them that
1999 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2000
2001 ISD::LoadExtType NewExtType =
2002 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2003
2004 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2005 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2006 NVT, isVolatile, Alignment);
2007
2008 Ch = Result.getValue(1); // The chain.
2009
2010 if (ExtType == ISD::SEXTLOAD)
2011 // Having the top bits zero doesn't help when sign extending.
2012 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2013 Result, DAG.getValueType(SrcVT));
2014 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2015 // All the top bits are guaranteed to be zero - inform the optimizers.
2016 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2017 DAG.getValueType(SrcVT));
2018
2019 Tmp1 = LegalizeOp(Result);
2020 Tmp2 = LegalizeOp(Ch);
2021 } else if (SrcWidth & (SrcWidth - 1)) {
2022 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002023 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002024 "Unsupported extload!");
2025 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2026 assert(RoundWidth < SrcWidth);
2027 unsigned ExtraWidth = SrcWidth - RoundWidth;
2028 assert(ExtraWidth < RoundWidth);
2029 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2030 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002031 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2032 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002033 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002034 unsigned IncrementSize;
2035
2036 if (TLI.isLittleEndian()) {
2037 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2038 // Load the bottom RoundWidth bits.
2039 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2040 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2041 Alignment);
2042
2043 // Load the remaining ExtraWidth bits.
2044 IncrementSize = RoundWidth / 8;
2045 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2046 DAG.getIntPtrConstant(IncrementSize));
2047 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2048 LD->getSrcValue(), SVOffset + IncrementSize,
2049 ExtraVT, isVolatile,
2050 MinAlign(Alignment, IncrementSize));
2051
2052 // Build a factor node to remember that this load is independent of the
2053 // other one.
2054 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2055 Hi.getValue(1));
2056
2057 // Move the top bits to the right place.
2058 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2059 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2060
2061 // Join the hi and lo parts.
2062 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002063 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002064 // Big endian - avoid unaligned loads.
2065 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2066 // Load the top RoundWidth bits.
2067 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2068 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2069 Alignment);
2070
2071 // Load the remaining ExtraWidth bits.
2072 IncrementSize = RoundWidth / 8;
2073 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2074 DAG.getIntPtrConstant(IncrementSize));
2075 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2076 LD->getSrcValue(), SVOffset + IncrementSize,
2077 ExtraVT, isVolatile,
2078 MinAlign(Alignment, IncrementSize));
2079
2080 // Build a factor node to remember that this load is independent of the
2081 // other one.
2082 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2083 Hi.getValue(1));
2084
2085 // Move the top bits to the right place.
2086 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2087 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2088
2089 // Join the hi and lo parts.
2090 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2091 }
2092
2093 Tmp1 = LegalizeOp(Result);
2094 Tmp2 = LegalizeOp(Ch);
2095 } else {
2096 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2097 default: assert(0 && "This action is not supported yet!");
2098 case TargetLowering::Custom:
2099 isCustom = true;
2100 // FALLTHROUGH
2101 case TargetLowering::Legal:
2102 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2103 Tmp1 = Result.getValue(0);
2104 Tmp2 = Result.getValue(1);
2105
2106 if (isCustom) {
2107 Tmp3 = TLI.LowerOperation(Result, DAG);
2108 if (Tmp3.Val) {
2109 Tmp1 = LegalizeOp(Tmp3);
2110 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2111 }
2112 } else {
2113 // If this is an unaligned load and the target doesn't support it,
2114 // expand it.
2115 if (!TLI.allowsUnalignedMemoryAccesses()) {
2116 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002117 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002118 if (LD->getAlignment() < ABIAlignment){
2119 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2120 TLI);
2121 Tmp1 = Result.getOperand(0);
2122 Tmp2 = Result.getOperand(1);
2123 Tmp1 = LegalizeOp(Tmp1);
2124 Tmp2 = LegalizeOp(Tmp2);
2125 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002126 }
2127 }
Duncan Sands082524c2008-01-23 20:39:46 +00002128 break;
2129 case TargetLowering::Expand:
2130 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2131 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002132 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002133 LD->getSrcValueOffset(),
2134 LD->isVolatile(), LD->getAlignment());
2135 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2136 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2137 Tmp2 = LegalizeOp(Load.getValue(1));
2138 break;
2139 }
2140 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2141 // Turn the unsupported load into an EXTLOAD followed by an explicit
2142 // zero/sign extend inreg.
2143 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2144 Tmp1, Tmp2, LD->getSrcValue(),
2145 LD->getSrcValueOffset(), SrcVT,
2146 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002147 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002148 if (ExtType == ISD::SEXTLOAD)
2149 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2150 Result, DAG.getValueType(SrcVT));
2151 else
2152 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2153 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2154 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002155 break;
2156 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002157 }
Duncan Sands082524c2008-01-23 20:39:46 +00002158
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002159 // Since loads produce two values, make sure to remember that we legalized
2160 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002161 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2162 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002163 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002164 }
2165 }
2166 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002167 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002168 switch (getTypeAction(OpTy)) {
2169 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2170 case Legal:
2171 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2172 // 1 -> Hi
2173 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002174 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002175 TLI.getShiftAmountTy()));
2176 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2177 } else {
2178 // 0 -> Lo
2179 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2180 Node->getOperand(0));
2181 }
2182 break;
2183 case Expand:
2184 // Get both the low and high parts.
2185 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2186 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2187 Result = Tmp2; // 1 -> Hi
2188 else
2189 Result = Tmp1; // 0 -> Lo
2190 break;
2191 }
2192 break;
2193 }
2194
2195 case ISD::CopyToReg:
2196 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2197
2198 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2199 "Register type must be legal!");
2200 // Legalize the incoming value (must be a legal type).
2201 Tmp2 = LegalizeOp(Node->getOperand(2));
2202 if (Node->getNumValues() == 1) {
2203 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2204 } else {
2205 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2206 if (Node->getNumOperands() == 4) {
2207 Tmp3 = LegalizeOp(Node->getOperand(3));
2208 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2209 Tmp3);
2210 } else {
2211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2212 }
2213
2214 // Since this produces two values, make sure to remember that we legalized
2215 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002216 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2217 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002218 return Result;
2219 }
2220 break;
2221
2222 case ISD::RET:
2223 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2224
2225 // Ensure that libcalls are emitted before a return.
2226 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2227 Tmp1 = LegalizeOp(Tmp1);
2228 LastCALLSEQ_END = DAG.getEntryNode();
2229
2230 switch (Node->getNumOperands()) {
2231 case 3: // ret val
2232 Tmp2 = Node->getOperand(1);
2233 Tmp3 = Node->getOperand(2); // Signness
2234 switch (getTypeAction(Tmp2.getValueType())) {
2235 case Legal:
2236 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2237 break;
2238 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002239 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002240 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002241 ExpandOp(Tmp2, Lo, Hi);
2242
2243 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002244 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002245 std::swap(Lo, Hi);
2246
2247 if (Hi.Val)
2248 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2249 else
2250 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
2251 Result = LegalizeOp(Result);
2252 } else {
2253 SDNode *InVal = Tmp2.Val;
Gabor Greif46bf5472008-08-26 22:36:50 +00002254 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002255 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2256 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002257
2258 // Figure out if there is a simple type corresponding to this Vector
2259 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002260 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002261 if (TLI.isTypeLegal(TVT)) {
2262 // Turn this into a return of the vector type.
2263 Tmp2 = LegalizeOp(Tmp2);
2264 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2265 } else if (NumElems == 1) {
2266 // Turn this into a return of the scalar type.
2267 Tmp2 = ScalarizeVectorOp(Tmp2);
2268 Tmp2 = LegalizeOp(Tmp2);
2269 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2270
2271 // FIXME: Returns of gcc generic vectors smaller than a legal type
2272 // should be returned in integer registers!
2273
2274 // The scalarized value type may not be legal, e.g. it might require
2275 // promotion or expansion. Relegalize the return.
2276 Result = LegalizeOp(Result);
2277 } else {
2278 // FIXME: Returns of gcc generic vectors larger than a legal vector
2279 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002280 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002281 SplitVectorOp(Tmp2, Lo, Hi);
2282 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2283 Result = LegalizeOp(Result);
2284 }
2285 }
2286 break;
2287 case Promote:
2288 Tmp2 = PromoteOp(Node->getOperand(1));
2289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2290 Result = LegalizeOp(Result);
2291 break;
2292 }
2293 break;
2294 case 1: // ret void
2295 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2296 break;
2297 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002298 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002299 NewValues.push_back(Tmp1);
2300 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2301 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2302 case Legal:
2303 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2304 NewValues.push_back(Node->getOperand(i+1));
2305 break;
2306 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002307 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002308 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002309 "FIXME: TODO: implement returning non-legal vector types!");
2310 ExpandOp(Node->getOperand(i), Lo, Hi);
2311 NewValues.push_back(Lo);
2312 NewValues.push_back(Node->getOperand(i+1));
2313 if (Hi.Val) {
2314 NewValues.push_back(Hi);
2315 NewValues.push_back(Node->getOperand(i+1));
2316 }
2317 break;
2318 }
2319 case Promote:
2320 assert(0 && "Can't promote multiple return value yet!");
2321 }
2322
2323 if (NewValues.size() == Node->getNumOperands())
2324 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2325 else
2326 Result = DAG.getNode(ISD::RET, MVT::Other,
2327 &NewValues[0], NewValues.size());
2328 break;
2329 }
2330 }
2331
2332 if (Result.getOpcode() == ISD::RET) {
2333 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2334 default: assert(0 && "This action is not supported yet!");
2335 case TargetLowering::Legal: break;
2336 case TargetLowering::Custom:
2337 Tmp1 = TLI.LowerOperation(Result, DAG);
2338 if (Tmp1.Val) Result = Tmp1;
2339 break;
2340 }
2341 }
2342 break;
2343 case ISD::STORE: {
2344 StoreSDNode *ST = cast<StoreSDNode>(Node);
2345 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2346 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2347 int SVOffset = ST->getSrcValueOffset();
2348 unsigned Alignment = ST->getAlignment();
2349 bool isVolatile = ST->isVolatile();
2350
2351 if (!ST->isTruncatingStore()) {
2352 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2353 // FIXME: We shouldn't do this for TargetConstantFP's.
2354 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2355 // to phase ordering between legalized code and the dag combiner. This
2356 // probably means that we need to integrate dag combiner and legalizer
2357 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002358 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002359 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002360 if (CFP->getValueType(0) == MVT::f32 &&
2361 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002362 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2363 convertToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002364 MVT::i32);
Dale Johannesen2fc20782007-09-14 22:26:36 +00002365 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2366 SVOffset, isVolatile, Alignment);
2367 break;
2368 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002369 // If this target supports 64-bit registers, do a single 64-bit store.
2370 if (getTypeAction(MVT::i64) == Legal) {
2371 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002372 zextOrTrunc(64), MVT::i64);
Chris Lattner19f229a2007-10-15 05:46:06 +00002373 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2374 SVOffset, isVolatile, Alignment);
2375 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002376 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002377 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2378 // stores. If the target supports neither 32- nor 64-bits, this
2379 // xform is certainly not worth it.
Dan Gohman39509762008-03-11 00:11:06 +00002380 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002381 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2382 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002383 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002384
2385 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2386 SVOffset, isVolatile, Alignment);
2387 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002388 DAG.getIntPtrConstant(4));
Chris Lattner19f229a2007-10-15 05:46:06 +00002389 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002390 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002391
2392 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2393 break;
2394 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002395 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002396 }
2397
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002398 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002399 case Legal: {
2400 Tmp3 = LegalizeOp(ST->getValue());
2401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2402 ST->getOffset());
2403
Duncan Sands92c43912008-06-06 12:08:01 +00002404 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002405 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2406 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002407 case TargetLowering::Legal:
2408 // If this is an unaligned store and the target doesn't support it,
2409 // expand it.
2410 if (!TLI.allowsUnalignedMemoryAccesses()) {
2411 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002412 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002413 if (ST->getAlignment() < ABIAlignment)
2414 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2415 TLI);
2416 }
2417 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002418 case TargetLowering::Custom:
2419 Tmp1 = TLI.LowerOperation(Result, DAG);
2420 if (Tmp1.Val) Result = Tmp1;
2421 break;
2422 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002423 assert(VT.isVector() && "Unknown legal promote case!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002424 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2425 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2426 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
2427 ST->getSrcValue(), SVOffset, isVolatile,
2428 Alignment);
2429 break;
2430 }
2431 break;
2432 }
2433 case Promote:
2434 // Truncate the value and store the result.
2435 Tmp3 = PromoteOp(ST->getValue());
2436 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002437 SVOffset, ST->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002438 isVolatile, Alignment);
2439 break;
2440
2441 case Expand:
2442 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002443 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002444
2445 // If this is a vector type, then we have to calculate the increment as
2446 // the product of the element size in bytes, and the number of elements
2447 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002448 if (ST->getValue().getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002449 SDNode *InVal = ST->getValue().Val;
Gabor Greif46bf5472008-08-26 22:36:50 +00002450 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002451 MVT InVT = InVal->getValueType(InIx);
2452 unsigned NumElems = InVT.getVectorNumElements();
2453 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002454
2455 // Figure out if there is a simple type corresponding to this Vector
2456 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002457 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002458 if (TLI.isTypeLegal(TVT)) {
2459 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002460 Tmp3 = LegalizeOp(ST->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002461 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2462 SVOffset, isVolatile, Alignment);
2463 Result = LegalizeOp(Result);
2464 break;
2465 } else if (NumElems == 1) {
2466 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002467 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002468 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2469 SVOffset, isVolatile, Alignment);
2470 // The scalarized value type may not be legal, e.g. it might require
2471 // promotion or expansion. Relegalize the scalar store.
2472 Result = LegalizeOp(Result);
2473 break;
2474 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002475 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands92c43912008-06-06 12:08:01 +00002476 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2477 EVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002478 }
2479 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002480 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands92c43912008-06-06 12:08:01 +00002481 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002482
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002483 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002484 std::swap(Lo, Hi);
2485 }
2486
2487 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2488 SVOffset, isVolatile, Alignment);
2489
2490 if (Hi.Val == NULL) {
2491 // Must be int <-> float one-to-one expansion.
2492 Result = Lo;
2493 break;
2494 }
2495
2496 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002497 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002498 assert(isTypeLegal(Tmp2.getValueType()) &&
2499 "Pointers must be legal!");
2500 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002501 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002502 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2503 SVOffset, isVolatile, Alignment);
2504 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2505 break;
2506 }
2507 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002508 switch (getTypeAction(ST->getValue().getValueType())) {
2509 case Legal:
2510 Tmp3 = LegalizeOp(ST->getValue());
2511 break;
2512 case Promote:
2513 // We can promote the value, the truncstore will still take care of it.
2514 Tmp3 = PromoteOp(ST->getValue());
2515 break;
2516 case Expand:
2517 // Just store the low part. This may become a non-trunc store, so make
2518 // sure to use getTruncStore, not UpdateNodeOperands below.
2519 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2520 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2521 SVOffset, MVT::i8, isVolatile, Alignment);
2522 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002523
Duncan Sands92c43912008-06-06 12:08:01 +00002524 MVT StVT = ST->getMemoryVT();
2525 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002526
Duncan Sands92c43912008-06-06 12:08:01 +00002527 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002528 // Promote to a byte-sized store with upper bits zero if not
2529 // storing an integral number of bytes. For example, promote
2530 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002531 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands40676662008-01-22 07:17:34 +00002532 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2533 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2534 SVOffset, NVT, isVolatile, Alignment);
2535 } else if (StWidth & (StWidth - 1)) {
2536 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002537 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002538 "Unsupported truncstore!");
2539 unsigned RoundWidth = 1 << Log2_32(StWidth);
2540 assert(RoundWidth < StWidth);
2541 unsigned ExtraWidth = StWidth - RoundWidth;
2542 assert(ExtraWidth < RoundWidth);
2543 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2544 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002545 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2546 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002547 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002548 unsigned IncrementSize;
2549
2550 if (TLI.isLittleEndian()) {
2551 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2552 // Store the bottom RoundWidth bits.
2553 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2554 SVOffset, RoundVT,
2555 isVolatile, Alignment);
2556
2557 // Store the remaining ExtraWidth bits.
2558 IncrementSize = RoundWidth / 8;
2559 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2560 DAG.getIntPtrConstant(IncrementSize));
2561 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2562 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2563 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2564 SVOffset + IncrementSize, ExtraVT, isVolatile,
2565 MinAlign(Alignment, IncrementSize));
2566 } else {
2567 // Big endian - avoid unaligned stores.
2568 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2569 // Store the top RoundWidth bits.
2570 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2571 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2572 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2573 RoundVT, isVolatile, Alignment);
2574
2575 // Store the remaining ExtraWidth bits.
2576 IncrementSize = RoundWidth / 8;
2577 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2578 DAG.getIntPtrConstant(IncrementSize));
2579 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2580 SVOffset + IncrementSize, ExtraVT, isVolatile,
2581 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002582 }
Duncan Sands40676662008-01-22 07:17:34 +00002583
2584 // The order of the stores doesn't matter.
2585 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2586 } else {
2587 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2588 Tmp2 != ST->getBasePtr())
2589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2590 ST->getOffset());
2591
2592 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2593 default: assert(0 && "This action is not supported yet!");
2594 case TargetLowering::Legal:
2595 // If this is an unaligned store and the target doesn't support it,
2596 // expand it.
2597 if (!TLI.allowsUnalignedMemoryAccesses()) {
2598 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002599 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002600 if (ST->getAlignment() < ABIAlignment)
2601 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2602 TLI);
2603 }
2604 break;
2605 case TargetLowering::Custom:
2606 Result = TLI.LowerOperation(Result, DAG);
2607 break;
2608 case Expand:
2609 // TRUNCSTORE:i16 i32 -> STORE i16
2610 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2611 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2612 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2613 isVolatile, Alignment);
2614 break;
2615 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002616 }
2617 }
2618 break;
2619 }
2620 case ISD::PCMARKER:
2621 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2622 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2623 break;
2624 case ISD::STACKSAVE:
2625 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2626 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2627 Tmp1 = Result.getValue(0);
2628 Tmp2 = Result.getValue(1);
2629
2630 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2631 default: assert(0 && "This action is not supported yet!");
2632 case TargetLowering::Legal: break;
2633 case TargetLowering::Custom:
2634 Tmp3 = TLI.LowerOperation(Result, DAG);
2635 if (Tmp3.Val) {
2636 Tmp1 = LegalizeOp(Tmp3);
2637 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2638 }
2639 break;
2640 case TargetLowering::Expand:
2641 // Expand to CopyFromReg if the target set
2642 // StackPointerRegisterToSaveRestore.
2643 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2644 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
2645 Node->getValueType(0));
2646 Tmp2 = Tmp1.getValue(1);
2647 } else {
2648 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2649 Tmp2 = Node->getOperand(0);
2650 }
2651 break;
2652 }
2653
2654 // Since stacksave produce two values, make sure to remember that we
2655 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002656 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2657 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002658 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002659
2660 case ISD::STACKRESTORE:
2661 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2662 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2663 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2664
2665 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2666 default: assert(0 && "This action is not supported yet!");
2667 case TargetLowering::Legal: break;
2668 case TargetLowering::Custom:
2669 Tmp1 = TLI.LowerOperation(Result, DAG);
2670 if (Tmp1.Val) Result = Tmp1;
2671 break;
2672 case TargetLowering::Expand:
2673 // Expand to CopyToReg if the target set
2674 // StackPointerRegisterToSaveRestore.
2675 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2676 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2677 } else {
2678 Result = Tmp1;
2679 }
2680 break;
2681 }
2682 break;
2683
2684 case ISD::READCYCLECOUNTER:
2685 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2686 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2687 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2688 Node->getValueType(0))) {
2689 default: assert(0 && "This action is not supported yet!");
2690 case TargetLowering::Legal:
2691 Tmp1 = Result.getValue(0);
2692 Tmp2 = Result.getValue(1);
2693 break;
2694 case TargetLowering::Custom:
2695 Result = TLI.LowerOperation(Result, DAG);
2696 Tmp1 = LegalizeOp(Result.getValue(0));
2697 Tmp2 = LegalizeOp(Result.getValue(1));
2698 break;
2699 }
2700
2701 // Since rdcc produce two values, make sure to remember that we legalized
2702 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002703 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2704 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002705 return Result;
2706
2707 case ISD::SELECT:
2708 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2709 case Expand: assert(0 && "It's impossible to expand bools");
2710 case Legal:
2711 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2712 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002713 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002714 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2715 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002716 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002717 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002718 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002719 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
2720 break;
2721 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002722 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002723 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2724 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2725
2726 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2727
2728 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2729 default: assert(0 && "This action is not supported yet!");
2730 case TargetLowering::Legal: break;
2731 case TargetLowering::Custom: {
2732 Tmp1 = TLI.LowerOperation(Result, DAG);
2733 if (Tmp1.Val) Result = Tmp1;
2734 break;
2735 }
2736 case TargetLowering::Expand:
2737 if (Tmp1.getOpcode() == ISD::SETCC) {
2738 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2739 Tmp2, Tmp3,
2740 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2741 } else {
2742 Result = DAG.getSelectCC(Tmp1,
2743 DAG.getConstant(0, Tmp1.getValueType()),
2744 Tmp2, Tmp3, ISD::SETNE);
2745 }
2746 break;
2747 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00002748 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002749 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2750 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00002751 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002752 ExtOp = ISD::BIT_CONVERT;
2753 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00002754 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002755 ExtOp = ISD::ANY_EXTEND;
2756 TruncOp = ISD::TRUNCATE;
2757 } else {
2758 ExtOp = ISD::FP_EXTEND;
2759 TruncOp = ISD::FP_ROUND;
2760 }
2761 // Promote each of the values to the new type.
2762 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2763 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2764 // Perform the larger operation, then round down.
2765 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00002766 if (TruncOp != ISD::FP_ROUND)
2767 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2768 else
2769 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2770 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002771 break;
2772 }
2773 }
2774 break;
2775 case ISD::SELECT_CC: {
2776 Tmp1 = Node->getOperand(0); // LHS
2777 Tmp2 = Node->getOperand(1); // RHS
2778 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2779 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00002780 SDValue CC = Node->getOperand(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002781
2782 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2783
2784 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2785 // the LHS is a legal SETCC itself. In this case, we need to compare
2786 // the result against zero to select between true and false values.
2787 if (Tmp2.Val == 0) {
2788 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2789 CC = DAG.getCondCode(ISD::SETNE);
2790 }
2791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2792
2793 // Everything is legal, see if we should expand this op or something.
2794 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2795 default: assert(0 && "This action is not supported yet!");
2796 case TargetLowering::Legal: break;
2797 case TargetLowering::Custom:
2798 Tmp1 = TLI.LowerOperation(Result, DAG);
2799 if (Tmp1.Val) Result = Tmp1;
2800 break;
2801 }
2802 break;
2803 }
2804 case ISD::SETCC:
2805 Tmp1 = Node->getOperand(0);
2806 Tmp2 = Node->getOperand(1);
2807 Tmp3 = Node->getOperand(2);
2808 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2809
2810 // If we had to Expand the SetCC operands into a SELECT node, then it may
2811 // not always be possible to return a true LHS & RHS. In this case, just
2812 // return the value we legalized, returned in the LHS
2813 if (Tmp2.Val == 0) {
2814 Result = Tmp1;
2815 break;
2816 }
2817
2818 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
2819 default: assert(0 && "Cannot handle this action for SETCC yet!");
2820 case TargetLowering::Custom:
2821 isCustom = true;
2822 // FALLTHROUGH.
2823 case TargetLowering::Legal:
2824 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2825 if (isCustom) {
2826 Tmp4 = TLI.LowerOperation(Result, DAG);
2827 if (Tmp4.Val) Result = Tmp4;
2828 }
2829 break;
2830 case TargetLowering::Promote: {
2831 // First step, figure out the appropriate operation to use.
2832 // Allow SETCC to not be supported for all legal data types
2833 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00002834 MVT NewInTy = Node->getOperand(0).getValueType();
2835 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002836
2837 // Scan for the appropriate larger type to use.
2838 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00002839 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002840
Duncan Sands92c43912008-06-06 12:08:01 +00002841 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002842 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00002843 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002844 "Fell off of the edge of the floating point world");
2845
2846 // If the target supports SETCC of this type, use it.
2847 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
2848 break;
2849 }
Duncan Sands92c43912008-06-06 12:08:01 +00002850 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002851 assert(0 && "Cannot promote Legal Integer SETCC yet");
2852 else {
2853 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2854 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2855 }
2856 Tmp1 = LegalizeOp(Tmp1);
2857 Tmp2 = LegalizeOp(Tmp2);
2858 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2859 Result = LegalizeOp(Result);
2860 break;
2861 }
2862 case TargetLowering::Expand:
2863 // Expand a setcc node into a select_cc of the same condition, lhs, and
2864 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00002865 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002866 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2867 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2868 Tmp3);
2869 break;
2870 }
2871 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00002872 case ISD::VSETCC: {
2873 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2874 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00002875 SDValue CC = Node->getOperand(2);
Nate Begeman9a1ce152008-05-12 19:40:03 +00002876
2877 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2878
2879 // Everything is legal, see if we should expand this op or something.
2880 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2881 default: assert(0 && "This action is not supported yet!");
2882 case TargetLowering::Legal: break;
2883 case TargetLowering::Custom:
2884 Tmp1 = TLI.LowerOperation(Result, DAG);
2885 if (Tmp1.Val) Result = Tmp1;
2886 break;
2887 }
2888 break;
2889 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002890
2891 case ISD::SHL_PARTS:
2892 case ISD::SRA_PARTS:
2893 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002894 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002895 bool Changed = false;
2896 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2897 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2898 Changed |= Ops.back() != Node->getOperand(i);
2899 }
2900 if (Changed)
2901 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
2902
2903 switch (TLI.getOperationAction(Node->getOpcode(),
2904 Node->getValueType(0))) {
2905 default: assert(0 && "This action is not supported yet!");
2906 case TargetLowering::Legal: break;
2907 case TargetLowering::Custom:
2908 Tmp1 = TLI.LowerOperation(Result, DAG);
2909 if (Tmp1.Val) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002910 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002911 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
2912 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00002913 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002914 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002915 RetVal = Tmp2;
2916 }
2917 assert(RetVal.Val && "Illegal result number");
2918 return RetVal;
2919 }
2920 break;
2921 }
2922
2923 // Since these produce multiple values, make sure to remember that we
2924 // legalized all of them.
2925 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00002926 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00002927 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002928 }
2929
2930 // Binary operators
2931 case ISD::ADD:
2932 case ISD::SUB:
2933 case ISD::MUL:
2934 case ISD::MULHS:
2935 case ISD::MULHU:
2936 case ISD::UDIV:
2937 case ISD::SDIV:
2938 case ISD::AND:
2939 case ISD::OR:
2940 case ISD::XOR:
2941 case ISD::SHL:
2942 case ISD::SRL:
2943 case ISD::SRA:
2944 case ISD::FADD:
2945 case ISD::FSUB:
2946 case ISD::FMUL:
2947 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00002948 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002949 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2950 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2951 case Expand: assert(0 && "Not possible");
2952 case Legal:
2953 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2954 break;
2955 case Promote:
2956 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2957 break;
2958 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00002959
2960 if ((Node->getOpcode() == ISD::SHL ||
2961 Node->getOpcode() == ISD::SRL ||
2962 Node->getOpcode() == ISD::SRA) &&
2963 !Node->getValueType(0).isVector()) {
2964 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2965 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2966 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2967 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2968 }
2969
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002970 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2971
2972 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2973 default: assert(0 && "BinOp legalize operation not supported");
2974 case TargetLowering::Legal: break;
2975 case TargetLowering::Custom:
2976 Tmp1 = TLI.LowerOperation(Result, DAG);
Nate Begeman7569e762008-07-29 19:07:27 +00002977 if (Tmp1.Val) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00002978 Result = Tmp1;
2979 break;
Nate Begeman7569e762008-07-29 19:07:27 +00002980 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00002981 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002982 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00002983 MVT VT = Op.getValueType();
Dan Gohman5a199552007-10-08 18:33:35 +00002984
2985 // See if multiply or divide can be lowered using two-result operations.
2986 SDVTList VTs = DAG.getVTList(VT, VT);
2987 if (Node->getOpcode() == ISD::MUL) {
2988 // We just need the low half of the multiply; try both the signed
2989 // and unsigned forms. If the target supports both SMUL_LOHI and
2990 // UMUL_LOHI, form a preference by checking which forms of plain
2991 // MULH it supports.
2992 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2993 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2994 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2995 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2996 unsigned OpToUse = 0;
2997 if (HasSMUL_LOHI && !HasMULHS) {
2998 OpToUse = ISD::SMUL_LOHI;
2999 } else if (HasUMUL_LOHI && !HasMULHU) {
3000 OpToUse = ISD::UMUL_LOHI;
3001 } else if (HasSMUL_LOHI) {
3002 OpToUse = ISD::SMUL_LOHI;
3003 } else if (HasUMUL_LOHI) {
3004 OpToUse = ISD::UMUL_LOHI;
3005 }
3006 if (OpToUse) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003007 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003008 break;
3009 }
3010 }
3011 if (Node->getOpcode() == ISD::MULHS &&
3012 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003013 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003014 break;
3015 }
3016 if (Node->getOpcode() == ISD::MULHU &&
3017 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003018 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003019 break;
3020 }
3021 if (Node->getOpcode() == ISD::SDIV &&
3022 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003023 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003024 break;
3025 }
3026 if (Node->getOpcode() == ISD::UDIV &&
3027 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003028 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003029 break;
3030 }
3031
Dan Gohman6d05cac2007-10-11 23:57:53 +00003032 // Check to see if we have a libcall for this operator.
3033 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3034 bool isSigned = false;
3035 switch (Node->getOpcode()) {
3036 case ISD::UDIV:
3037 case ISD::SDIV:
3038 if (VT == MVT::i32) {
3039 LC = Node->getOpcode() == ISD::UDIV
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003040 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003041 isSigned = Node->getOpcode() == ISD::SDIV;
3042 }
3043 break;
3044 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003045 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3046 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003047 break;
3048 default: break;
3049 }
3050 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003051 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003052 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003053 break;
3054 }
3055
Duncan Sands92c43912008-06-06 12:08:01 +00003056 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003057 "Cannot expand this binary operator!");
3058 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003059 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003060 break;
3061 }
3062 case TargetLowering::Promote: {
3063 switch (Node->getOpcode()) {
3064 default: assert(0 && "Do not know how to promote this BinOp!");
3065 case ISD::AND:
3066 case ISD::OR:
3067 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003068 MVT OVT = Node->getValueType(0);
3069 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3070 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003071 // Bit convert each of the values to the new type.
3072 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3073 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3074 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3075 // Bit convert the result back the original type.
3076 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3077 break;
3078 }
3079 }
3080 }
3081 }
3082 break;
3083
Dan Gohman475cd732007-10-05 14:17:22 +00003084 case ISD::SMUL_LOHI:
3085 case ISD::UMUL_LOHI:
3086 case ISD::SDIVREM:
3087 case ISD::UDIVREM:
3088 // These nodes will only be produced by target-specific lowering, so
3089 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003090 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003091 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003092
3093 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3094 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3095 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003096 break;
3097
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003098 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3099 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3100 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3101 case Expand: assert(0 && "Not possible");
3102 case Legal:
3103 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3104 break;
3105 case Promote:
3106 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3107 break;
3108 }
3109
3110 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3111
3112 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3113 default: assert(0 && "Operation not supported");
3114 case TargetLowering::Custom:
3115 Tmp1 = TLI.LowerOperation(Result, DAG);
3116 if (Tmp1.Val) Result = Tmp1;
3117 break;
3118 case TargetLowering::Legal: break;
3119 case TargetLowering::Expand: {
3120 // If this target supports fabs/fneg natively and select is cheap,
3121 // do this efficiently.
3122 if (!TLI.isSelectExpensive() &&
3123 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3124 TargetLowering::Legal &&
3125 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3126 TargetLowering::Legal) {
3127 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003128 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003129 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman8181bd12008-07-27 21:46:04 +00003130 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel502151f2008-03-10 15:42:14 +00003131 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003132 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3133 // Get the absolute value of the result.
Dan Gohman8181bd12008-07-27 21:46:04 +00003134 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003135 // Select between the nabs and abs value based on the sign bit of
3136 // the input.
3137 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3138 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3139 AbsVal),
3140 AbsVal);
3141 Result = LegalizeOp(Result);
3142 break;
3143 }
3144
3145 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003146 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003147 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3148 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3149 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3150 Result = LegalizeOp(Result);
3151 break;
3152 }
3153 }
3154 break;
3155
3156 case ISD::ADDC:
3157 case ISD::SUBC:
3158 Tmp1 = LegalizeOp(Node->getOperand(0));
3159 Tmp2 = LegalizeOp(Node->getOperand(1));
3160 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3161 // Since this produces two values, make sure to remember that we legalized
3162 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003163 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3164 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003165 return Result;
3166
3167 case ISD::ADDE:
3168 case ISD::SUBE:
3169 Tmp1 = LegalizeOp(Node->getOperand(0));
3170 Tmp2 = LegalizeOp(Node->getOperand(1));
3171 Tmp3 = LegalizeOp(Node->getOperand(2));
3172 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3173 // Since this produces two values, make sure to remember that we legalized
3174 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003175 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3176 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003177 return Result;
3178
3179 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003180 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003181 // TODO: handle the case where the Lo and Hi operands are not of legal type
3182 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3183 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3184 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3185 case TargetLowering::Promote:
3186 case TargetLowering::Custom:
3187 assert(0 && "Cannot promote/custom this yet!");
3188 case TargetLowering::Legal:
3189 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3190 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3191 break;
3192 case TargetLowering::Expand:
3193 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3194 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3195 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003196 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003197 TLI.getShiftAmountTy()));
3198 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
3199 break;
3200 }
3201 break;
3202 }
3203
3204 case ISD::UREM:
3205 case ISD::SREM:
3206 case ISD::FREM:
3207 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3208 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3209
3210 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3211 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3212 case TargetLowering::Custom:
3213 isCustom = true;
3214 // FALLTHROUGH
3215 case TargetLowering::Legal:
3216 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3217 if (isCustom) {
3218 Tmp1 = TLI.LowerOperation(Result, DAG);
3219 if (Tmp1.Val) Result = Tmp1;
3220 }
3221 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003222 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003223 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3224 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003225 MVT VT = Node->getValueType(0);
Dan Gohman5a199552007-10-08 18:33:35 +00003226
3227 // See if remainder can be lowered using two-result operations.
3228 SDVTList VTs = DAG.getVTList(VT, VT);
3229 if (Node->getOpcode() == ISD::SREM &&
3230 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003231 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003232 break;
3233 }
3234 if (Node->getOpcode() == ISD::UREM &&
3235 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003236 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003237 break;
3238 }
3239
Duncan Sands92c43912008-06-06 12:08:01 +00003240 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003241 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003242 TargetLowering::Legal) {
3243 // X % Y -> X-X/Y*Y
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003244 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
3245 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3246 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003247 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003248 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003249 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003250 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003251 "Cannot expand this binary operator!");
3252 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3253 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003254 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003255 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003256 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003257 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003258 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003259 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003260 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003261 Result = LegalizeOp(UnrollVectorOp(Op));
3262 } else {
3263 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003264 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3265 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003266 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003267 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003268 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003269 }
3270 break;
3271 }
Dan Gohman5a199552007-10-08 18:33:35 +00003272 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003273 break;
3274 case ISD::VAARG: {
3275 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3276 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3277
Duncan Sands92c43912008-06-06 12:08:01 +00003278 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003279 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3280 default: assert(0 && "This action is not supported yet!");
3281 case TargetLowering::Custom:
3282 isCustom = true;
3283 // FALLTHROUGH
3284 case TargetLowering::Legal:
3285 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3286 Result = Result.getValue(0);
3287 Tmp1 = Result.getValue(1);
3288
3289 if (isCustom) {
3290 Tmp2 = TLI.LowerOperation(Result, DAG);
3291 if (Tmp2.Val) {
3292 Result = LegalizeOp(Tmp2);
3293 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3294 }
3295 }
3296 break;
3297 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003298 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00003299 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003300 // Increment the pointer, VAList, to the next vaarg
3301 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00003302 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003303 TLI.getPointerTy()));
3304 // Store the incremented VAList to the legalized pointer
Dan Gohman12a9c082008-02-06 22:27:42 +00003305 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003306 // Load the actual argument out of the pointer VAList
3307 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
3308 Tmp1 = LegalizeOp(Result.getValue(1));
3309 Result = LegalizeOp(Result);
3310 break;
3311 }
3312 }
3313 // Since VAARG produces two values, make sure to remember that we
3314 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003315 AddLegalizedOperand(SDValue(Node, 0), Result);
3316 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003317 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003318 }
3319
3320 case ISD::VACOPY:
3321 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3322 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3323 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3324
3325 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3326 default: assert(0 && "This action is not supported yet!");
3327 case TargetLowering::Custom:
3328 isCustom = true;
3329 // FALLTHROUGH
3330 case TargetLowering::Legal:
3331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3332 Node->getOperand(3), Node->getOperand(4));
3333 if (isCustom) {
3334 Tmp1 = TLI.LowerOperation(Result, DAG);
3335 if (Tmp1.Val) Result = Tmp1;
3336 }
3337 break;
3338 case TargetLowering::Expand:
3339 // This defaults to loading a pointer from the input and storing it to the
3340 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003341 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3342 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman6b9a08e2008-04-17 02:09:26 +00003343 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3344 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003345 break;
3346 }
3347 break;
3348
3349 case ISD::VAEND:
3350 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3351 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3352
3353 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3354 default: assert(0 && "This action is not supported yet!");
3355 case TargetLowering::Custom:
3356 isCustom = true;
3357 // FALLTHROUGH
3358 case TargetLowering::Legal:
3359 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3360 if (isCustom) {
3361 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3362 if (Tmp1.Val) Result = Tmp1;
3363 }
3364 break;
3365 case TargetLowering::Expand:
3366 Result = Tmp1; // Default to a no-op, return the chain
3367 break;
3368 }
3369 break;
3370
3371 case ISD::VASTART:
3372 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3373 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3374
3375 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3376
3377 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3378 default: assert(0 && "This action is not supported yet!");
3379 case TargetLowering::Legal: break;
3380 case TargetLowering::Custom:
3381 Tmp1 = TLI.LowerOperation(Result, DAG);
3382 if (Tmp1.Val) Result = Tmp1;
3383 break;
3384 }
3385 break;
3386
3387 case ISD::ROTL:
3388 case ISD::ROTR:
3389 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3390 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3391 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3392 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3393 default:
3394 assert(0 && "ROTL/ROTR legalize operation not supported");
3395 break;
3396 case TargetLowering::Legal:
3397 break;
3398 case TargetLowering::Custom:
3399 Tmp1 = TLI.LowerOperation(Result, DAG);
3400 if (Tmp1.Val) Result = Tmp1;
3401 break;
3402 case TargetLowering::Promote:
3403 assert(0 && "Do not know how to promote ROTL/ROTR");
3404 break;
3405 case TargetLowering::Expand:
3406 assert(0 && "Do not know how to expand ROTL/ROTR");
3407 break;
3408 }
3409 break;
3410
3411 case ISD::BSWAP:
3412 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3413 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3414 case TargetLowering::Custom:
3415 assert(0 && "Cannot custom legalize this yet!");
3416 case TargetLowering::Legal:
3417 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3418 break;
3419 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003420 MVT OVT = Tmp1.getValueType();
3421 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3422 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003423
3424 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3425 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3426 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3427 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3428 break;
3429 }
3430 case TargetLowering::Expand:
3431 Result = ExpandBSWAP(Tmp1);
3432 break;
3433 }
3434 break;
3435
3436 case ISD::CTPOP:
3437 case ISD::CTTZ:
3438 case ISD::CTLZ:
3439 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3440 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003441 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003442 case TargetLowering::Legal:
3443 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003444 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003445 TargetLowering::Custom) {
3446 Tmp1 = TLI.LowerOperation(Result, DAG);
3447 if (Tmp1.Val) {
3448 Result = Tmp1;
3449 }
Scott Michel48b63e62007-07-30 21:00:31 +00003450 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003451 break;
3452 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003453 MVT OVT = Tmp1.getValueType();
3454 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003455
3456 // Zero extend the argument.
3457 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3458 // Perform the larger operation, then subtract if needed.
3459 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
3460 switch (Node->getOpcode()) {
3461 case ISD::CTPOP:
3462 Result = Tmp1;
3463 break;
3464 case ISD::CTTZ:
3465 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel502151f2008-03-10 15:42:14 +00003466 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003467 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003468 ISD::SETEQ);
3469 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003470 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003471 break;
3472 case ISD::CTLZ:
3473 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3474 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003475 DAG.getConstant(NVT.getSizeInBits() -
3476 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003477 break;
3478 }
3479 break;
3480 }
3481 case TargetLowering::Expand:
3482 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
3483 break;
3484 }
3485 break;
3486
3487 // Unary operators
3488 case ISD::FABS:
3489 case ISD::FNEG:
3490 case ISD::FSQRT:
3491 case ISD::FSIN:
3492 case ISD::FCOS:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003493 case ISD::FTRUNC:
3494 case ISD::FFLOOR:
3495 case ISD::FCEIL:
3496 case ISD::FRINT:
3497 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003498 Tmp1 = LegalizeOp(Node->getOperand(0));
3499 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3500 case TargetLowering::Promote:
3501 case TargetLowering::Custom:
3502 isCustom = true;
3503 // FALLTHROUGH
3504 case TargetLowering::Legal:
3505 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3506 if (isCustom) {
3507 Tmp1 = TLI.LowerOperation(Result, DAG);
3508 if (Tmp1.Val) Result = Tmp1;
3509 }
3510 break;
3511 case TargetLowering::Expand:
3512 switch (Node->getOpcode()) {
3513 default: assert(0 && "Unreachable!");
3514 case ISD::FNEG:
3515 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3516 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3517 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
3518 break;
3519 case ISD::FABS: {
3520 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003521 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003522 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel502151f2008-03-10 15:42:14 +00003523 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00003524 ISD::SETUGT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003525 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3526 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
3527 break;
3528 }
Dan Gohmanb2158232008-08-21 18:38:14 +00003529 case ISD::FTRUNC:
3530 case ISD::FFLOOR:
3531 case ISD::FCEIL:
3532 case ISD::FRINT:
3533 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003534 case ISD::FSQRT:
3535 case ISD::FSIN:
3536 case ISD::FCOS: {
Duncan Sands92c43912008-06-06 12:08:01 +00003537 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003538
3539 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003540 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003541 Result = LegalizeOp(UnrollVectorOp(Op));
3542 break;
3543 }
3544
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003545 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3546 switch(Node->getOpcode()) {
3547 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003548 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3549 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003550 break;
3551 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003552 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3553 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003554 break;
3555 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003556 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3557 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003558 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003559 case ISD::FTRUNC:
3560 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3561 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3562 break;
3563 case ISD::FFLOOR:
3564 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3565 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3566 break;
3567 case ISD::FCEIL:
3568 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3569 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3570 break;
3571 case ISD::FRINT:
3572 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3573 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3574 break;
3575 case ISD::FNEARBYINT:
3576 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3577 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3578 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003579 default: assert(0 && "Unreachable!");
3580 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003581 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003582 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003583 break;
3584 }
3585 }
3586 break;
3587 }
3588 break;
3589 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003590 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003591
3592 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003593 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003594 Result = LegalizeOp(UnrollVectorOp(Op));
3595 break;
3596 }
3597
3598 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003599 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3600 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003601 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003602 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003603 break;
3604 }
3605 case ISD::BIT_CONVERT:
3606 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003607 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3608 Node->getValueType(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003609 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003610 // The input has to be a vector type, we have to either scalarize it, pack
3611 // it, or convert it based on whether the input vector type is legal.
3612 SDNode *InVal = Node->getOperand(0).Val;
Gabor Greif46bf5472008-08-26 22:36:50 +00003613 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003614 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3615 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003616
3617 // Figure out if there is a simple type corresponding to this Vector
3618 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003619 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003620 if (TLI.isTypeLegal(TVT)) {
3621 // Turn this into a bit convert of the vector input.
3622 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3623 LegalizeOp(Node->getOperand(0)));
3624 break;
3625 } else if (NumElems == 1) {
3626 // Turn this into a bit convert of the scalar input.
3627 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3628 ScalarizeVectorOp(Node->getOperand(0)));
3629 break;
3630 } else {
3631 // FIXME: UNIMP! Store then reload
3632 assert(0 && "Cast from unsupported vector type not implemented yet!");
3633 }
3634 } else {
3635 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3636 Node->getOperand(0).getValueType())) {
3637 default: assert(0 && "Unknown operation action!");
3638 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003639 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3640 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003641 break;
3642 case TargetLowering::Legal:
3643 Tmp1 = LegalizeOp(Node->getOperand(0));
3644 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3645 break;
3646 }
3647 }
3648 break;
3649
3650 // Conversion operators. The source and destination have different types.
3651 case ISD::SINT_TO_FP:
3652 case ISD::UINT_TO_FP: {
3653 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00003654 Result = LegalizeINT_TO_FP(Result, isSigned,
3655 Node->getValueType(0), Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003656 break;
3657 }
3658 case ISD::TRUNCATE:
3659 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3660 case Legal:
3661 Tmp1 = LegalizeOp(Node->getOperand(0));
3662 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3663 break;
3664 case Expand:
3665 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3666
3667 // Since the result is legal, we should just be able to truncate the low
3668 // part of the source.
3669 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3670 break;
3671 case Promote:
3672 Result = PromoteOp(Node->getOperand(0));
3673 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3674 break;
3675 }
3676 break;
3677
3678 case ISD::FP_TO_SINT:
3679 case ISD::FP_TO_UINT:
3680 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3681 case Legal:
3682 Tmp1 = LegalizeOp(Node->getOperand(0));
3683
3684 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3685 default: assert(0 && "Unknown operation action!");
3686 case TargetLowering::Custom:
3687 isCustom = true;
3688 // FALLTHROUGH
3689 case TargetLowering::Legal:
3690 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3691 if (isCustom) {
3692 Tmp1 = TLI.LowerOperation(Result, DAG);
3693 if (Tmp1.Val) Result = Tmp1;
3694 }
3695 break;
3696 case TargetLowering::Promote:
3697 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3698 Node->getOpcode() == ISD::FP_TO_SINT);
3699 break;
3700 case TargetLowering::Expand:
3701 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003702 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00003703 MVT VT = Node->getOperand(0).getValueType();
3704 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00003705 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00003706 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3707 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00003708 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00003709 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel502151f2008-03-10 15:42:14 +00003710 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003711 Node->getOperand(0), Tmp2, ISD::SETLT);
3712 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3713 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
3714 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
3715 Tmp2));
3716 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00003717 DAG.getConstant(x, NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003718 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3719 break;
3720 } else {
3721 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3722 }
3723 break;
3724 }
3725 break;
3726 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003727 MVT VT = Op.getValueType();
3728 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00003729 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003730 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00003731 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3732 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3733 Node->getOperand(0), DAG.getValueType(MVT::f64));
3734 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3735 DAG.getIntPtrConstant(1));
3736 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3737 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00003738 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3739 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3740 Tmp2 = DAG.getConstantFP(apf, OVT);
3741 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3742 // FIXME: generated code sucks.
3743 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3744 DAG.getNode(ISD::ADD, MVT::i32,
3745 DAG.getNode(ISD::FP_TO_SINT, VT,
3746 DAG.getNode(ISD::FSUB, OVT,
3747 Node->getOperand(0), Tmp2)),
3748 DAG.getConstant(0x80000000, MVT::i32)),
3749 DAG.getNode(ISD::FP_TO_SINT, VT,
3750 Node->getOperand(0)),
3751 DAG.getCondCode(ISD::SETGE));
3752 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003753 break;
3754 }
Dan Gohmanec51f642008-03-10 23:03:31 +00003755 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00003756 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3757 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3758 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00003759 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003760 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003761 break;
3762 }
3763 case Promote:
3764 Tmp1 = PromoteOp(Node->getOperand(0));
3765 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3766 Result = LegalizeOp(Result);
3767 break;
3768 }
3769 break;
3770
Chris Lattner56ecde32008-01-16 06:57:07 +00003771 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00003772 MVT DstVT = Op.getValueType();
3773 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00003774 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3775 // The only other way we can lower this is to turn it into a STORE,
3776 // LOAD pair, targetting a temporary location (a stack slot).
3777 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3778 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00003779 }
3780 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3781 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3782 case Legal:
3783 Tmp1 = LegalizeOp(Node->getOperand(0));
3784 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3785 break;
3786 case Promote:
3787 Tmp1 = PromoteOp(Node->getOperand(0));
3788 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3789 break;
3790 }
3791 break;
Chris Lattner5872a362008-01-17 07:00:52 +00003792 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00003793 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00003794 MVT DstVT = Op.getValueType();
3795 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00003796 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3797 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003798 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00003799 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003800 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00003801 if (DstVT!=MVT::f64)
3802 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00003803 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00003804 }
Chris Lattner5872a362008-01-17 07:00:52 +00003805 // The only other way we can lower this is to turn it into a STORE,
3806 // LOAD pair, targetting a temporary location (a stack slot).
3807 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3808 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003809 }
Chris Lattner56ecde32008-01-16 06:57:07 +00003810 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3811 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3812 case Legal:
3813 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00003814 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00003815 break;
3816 case Promote:
3817 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00003818 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3819 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00003820 break;
3821 }
3822 break;
Chris Lattner5872a362008-01-17 07:00:52 +00003823 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003824 case ISD::ANY_EXTEND:
3825 case ISD::ZERO_EXTEND:
3826 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003827 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3828 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3829 case Legal:
3830 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00003831 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00003832 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3833 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00003834 Tmp1 = TLI.LowerOperation(Result, DAG);
3835 if (Tmp1.Val) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00003836 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003837 break;
3838 case Promote:
3839 switch (Node->getOpcode()) {
3840 case ISD::ANY_EXTEND:
3841 Tmp1 = PromoteOp(Node->getOperand(0));
3842 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
3843 break;
3844 case ISD::ZERO_EXTEND:
3845 Result = PromoteOp(Node->getOperand(0));
3846 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3847 Result = DAG.getZeroExtendInReg(Result,
3848 Node->getOperand(0).getValueType());
3849 break;
3850 case ISD::SIGN_EXTEND:
3851 Result = PromoteOp(Node->getOperand(0));
3852 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3853 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
3854 Result,
3855 DAG.getValueType(Node->getOperand(0).getValueType()));
3856 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003857 }
3858 }
3859 break;
3860 case ISD::FP_ROUND_INREG:
3861 case ISD::SIGN_EXTEND_INREG: {
3862 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003863 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003864
3865 // If this operation is not supported, convert it to a shl/shr or load/store
3866 // pair.
3867 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3868 default: assert(0 && "This action not supported for this op yet!");
3869 case TargetLowering::Legal:
3870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
3871 break;
3872 case TargetLowering::Expand:
3873 // If this is an integer extend and shifts are supported, do that.
3874 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
3875 // NOTE: we could fall back on load/store here too for targets without
3876 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00003877 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3878 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00003879 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003880 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3881 Node->getOperand(0), ShiftCst);
3882 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3883 Result, ShiftCst);
3884 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
3885 // The only way we can lower this is to turn it into a TRUNCSTORE,
3886 // EXTLOAD pair, targetting a temporary location (a stack slot).
3887
3888 // NOTE: there is a choice here between constantly creating new stack
3889 // slots and always reusing the same one. We currently always create
3890 // new ones, as reuse may inhibit scheduling.
Chris Lattner59370bd2008-01-16 07:51:34 +00003891 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3892 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003893 } else {
3894 assert(0 && "Unknown op");
3895 }
3896 break;
3897 }
3898 break;
3899 }
Duncan Sands38947cd2007-07-27 12:58:54 +00003900 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003901 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00003902 for (unsigned i = 0; i != 6; ++i)
3903 Ops[i] = LegalizeOp(Node->getOperand(i));
3904 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3905 // The only option for this node is to custom lower it.
3906 Result = TLI.LowerOperation(Result, DAG);
3907 assert(Result.Val && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00003908
3909 // Since trampoline produces two values, make sure to remember that we
3910 // legalized both of them.
3911 Tmp1 = LegalizeOp(Result.getValue(1));
3912 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00003913 AddLegalizedOperand(SDValue(Node, 0), Result);
3914 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003915 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00003916 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00003917 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00003918 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003919 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3920 default: assert(0 && "This action not supported for this op yet!");
3921 case TargetLowering::Custom:
3922 Result = TLI.LowerOperation(Op, DAG);
3923 if (Result.Val) break;
3924 // Fall Thru
3925 case TargetLowering::Legal:
3926 // If this operation is not supported, lower it to constant 1
3927 Result = DAG.getConstant(1, VT);
3928 break;
3929 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00003930 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003931 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00003932 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00003933 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003934 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3935 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00003936 case TargetLowering::Legal:
3937 Tmp1 = LegalizeOp(Node->getOperand(0));
3938 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3939 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003940 case TargetLowering::Custom:
3941 Result = TLI.LowerOperation(Op, DAG);
3942 if (Result.Val) break;
3943 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00003944 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003945 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00003946 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003947 TargetLowering::ArgListTy Args;
Dan Gohman8181bd12008-07-27 21:46:04 +00003948 std::pair<SDValue,SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00003949 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3950 false, false, false, CallingConv::C, false,
Chris Lattner88e03932008-01-15 22:09:33 +00003951 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3952 Args, DAG);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003953 Result = CallResult.second;
3954 break;
3955 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00003956 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003957 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003958 }
3959
3960 assert(Result.getValueType() == Op.getValueType() &&
3961 "Bad legalization!");
3962
3963 // Make sure that the generated code is itself legal.
3964 if (Result != Op)
3965 Result = LegalizeOp(Result);
3966
3967 // Note that LegalizeOp may be reentered even from single-use nodes, which
3968 // means that we always must cache transformed nodes.
3969 AddLegalizedOperand(Op, Result);
3970 return Result;
3971}
3972
3973/// PromoteOp - Given an operation that produces a value in an invalid type,
3974/// promote it to compute the value into a larger type. The produced value will
3975/// have the correct bits for the low portion of the register, but no guarantee
3976/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00003977SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00003978 MVT VT = Op.getValueType();
3979 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003980 assert(getTypeAction(VT) == Promote &&
3981 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00003982 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003983 "Cannot promote to smaller type!");
3984
Dan Gohman8181bd12008-07-27 21:46:04 +00003985 SDValue Tmp1, Tmp2, Tmp3;
3986 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003987 SDNode *Node = Op.Val;
3988
Dan Gohman8181bd12008-07-27 21:46:04 +00003989 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003990 if (I != PromotedNodes.end()) return I->second;
3991
3992 switch (Node->getOpcode()) {
3993 case ISD::CopyFromReg:
3994 assert(0 && "CopyFromReg must be legal!");
3995 default:
3996#ifndef NDEBUG
3997 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
3998#endif
3999 assert(0 && "Do not know how to promote this operator!");
4000 abort();
4001 case ISD::UNDEF:
4002 Result = DAG.getNode(ISD::UNDEF, NVT);
4003 break;
4004 case ISD::Constant:
4005 if (VT != MVT::i1)
4006 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4007 else
4008 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
4009 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4010 break;
4011 case ISD::ConstantFP:
4012 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4013 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4014 break;
4015
4016 case ISD::SETCC:
Scott Michel502151f2008-03-10 15:42:14 +00004017 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004018 && "SetCC type is not legal??");
Scott Michel502151f2008-03-10 15:42:14 +00004019 Result = DAG.getNode(ISD::SETCC,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004020 TLI.getSetCCResultType(Node->getOperand(0)),
4021 Node->getOperand(0), Node->getOperand(1),
4022 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004023 break;
4024
4025 case ISD::TRUNCATE:
4026 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4027 case Legal:
4028 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004029 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004030 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004031 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004032 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4033 break;
4034 case Promote:
4035 // The truncation is not required, because we don't guarantee anything
4036 // about high bits anyway.
4037 Result = PromoteOp(Node->getOperand(0));
4038 break;
4039 case Expand:
4040 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4041 // Truncate the low part of the expanded value to the result type
4042 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
4043 }
4044 break;
4045 case ISD::SIGN_EXTEND:
4046 case ISD::ZERO_EXTEND:
4047 case ISD::ANY_EXTEND:
4048 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4049 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4050 case Legal:
4051 // Input is legal? Just do extend all the way to the larger type.
4052 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4053 break;
4054 case Promote:
4055 // Promote the reg if it's smaller.
4056 Result = PromoteOp(Node->getOperand(0));
4057 // The high bits are not guaranteed to be anything. Insert an extend.
4058 if (Node->getOpcode() == ISD::SIGN_EXTEND)
4059 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4060 DAG.getValueType(Node->getOperand(0).getValueType()));
4061 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
4062 Result = DAG.getZeroExtendInReg(Result,
4063 Node->getOperand(0).getValueType());
4064 break;
4065 }
4066 break;
4067 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004068 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4069 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004070 Result = PromoteOp(Result);
4071 break;
4072
4073 case ISD::FP_EXTEND:
4074 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4075 case ISD::FP_ROUND:
4076 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4077 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4078 case Promote: assert(0 && "Unreachable with 2 FP types!");
4079 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004080 if (Node->getConstantOperandVal(1) == 0) {
4081 // Input is legal? Do an FP_ROUND_INREG.
4082 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4083 DAG.getValueType(VT));
4084 } else {
4085 // Just remove the truncate, it isn't affecting the value.
4086 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4087 Node->getOperand(1));
4088 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004089 break;
4090 }
4091 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004092 case ISD::SINT_TO_FP:
4093 case ISD::UINT_TO_FP:
4094 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4095 case Legal:
4096 // No extra round required here.
4097 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4098 break;
4099
4100 case Promote:
4101 Result = PromoteOp(Node->getOperand(0));
4102 if (Node->getOpcode() == ISD::SINT_TO_FP)
4103 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
4104 Result,
4105 DAG.getValueType(Node->getOperand(0).getValueType()));
4106 else
4107 Result = DAG.getZeroExtendInReg(Result,
4108 Node->getOperand(0).getValueType());
4109 // No extra round required here.
4110 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
4111 break;
4112 case Expand:
4113 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4114 Node->getOperand(0));
4115 // Round if we cannot tolerate excess precision.
4116 if (NoExcessFPPrecision)
4117 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4118 DAG.getValueType(VT));
4119 break;
4120 }
4121 break;
4122
4123 case ISD::SIGN_EXTEND_INREG:
4124 Result = PromoteOp(Node->getOperand(0));
4125 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4126 Node->getOperand(1));
4127 break;
4128 case ISD::FP_TO_SINT:
4129 case ISD::FP_TO_UINT:
4130 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4131 case Legal:
4132 case Expand:
4133 Tmp1 = Node->getOperand(0);
4134 break;
4135 case Promote:
4136 // The input result is prerounded, so we don't have to do anything
4137 // special.
4138 Tmp1 = PromoteOp(Node->getOperand(0));
4139 break;
4140 }
4141 // If we're promoting a UINT to a larger size, check to see if the new node
4142 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4143 // we can use that instead. This allows us to generate better code for
4144 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4145 // legal, such as PowerPC.
4146 if (Node->getOpcode() == ISD::FP_TO_UINT &&
4147 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
4148 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4149 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
4150 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4151 } else {
4152 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4153 }
4154 break;
4155
4156 case ISD::FABS:
4157 case ISD::FNEG:
4158 Tmp1 = PromoteOp(Node->getOperand(0));
4159 assert(Tmp1.getValueType() == NVT);
4160 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4161 // NOTE: we do not have to do any extra rounding here for
4162 // NoExcessFPPrecision, because we know the input will have the appropriate
4163 // precision, and these operations don't modify precision at all.
4164 break;
4165
4166 case ISD::FSQRT:
4167 case ISD::FSIN:
4168 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004169 case ISD::FTRUNC:
4170 case ISD::FFLOOR:
4171 case ISD::FCEIL:
4172 case ISD::FRINT:
4173 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004174 Tmp1 = PromoteOp(Node->getOperand(0));
4175 assert(Tmp1.getValueType() == NVT);
4176 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4177 if (NoExcessFPPrecision)
4178 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4179 DAG.getValueType(VT));
4180 break;
4181
4182 case ISD::FPOWI: {
4183 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4184 // directly as well, which may be better.
4185 Tmp1 = PromoteOp(Node->getOperand(0));
4186 assert(Tmp1.getValueType() == NVT);
4187 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4188 if (NoExcessFPPrecision)
4189 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4190 DAG.getValueType(VT));
4191 break;
4192 }
4193
Dale Johannesenbc187662008-08-28 02:44:49 +00004194 case ISD::ATOMIC_CMP_SWAP_8:
4195 case ISD::ATOMIC_CMP_SWAP_16:
4196 case ISD::ATOMIC_CMP_SWAP_32:
4197 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004198 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004199 Tmp2 = PromoteOp(Node->getOperand(2));
4200 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004201 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4202 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004203 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004204 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004205 // Remember that we legalized the chain.
4206 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4207 break;
4208 }
Dale Johannesenbc187662008-08-28 02:44:49 +00004209 case ISD::ATOMIC_LOAD_ADD_8:
4210 case ISD::ATOMIC_LOAD_SUB_8:
4211 case ISD::ATOMIC_LOAD_AND_8:
4212 case ISD::ATOMIC_LOAD_OR_8:
4213 case ISD::ATOMIC_LOAD_XOR_8:
4214 case ISD::ATOMIC_LOAD_NAND_8:
4215 case ISD::ATOMIC_LOAD_MIN_8:
4216 case ISD::ATOMIC_LOAD_MAX_8:
4217 case ISD::ATOMIC_LOAD_UMIN_8:
4218 case ISD::ATOMIC_LOAD_UMAX_8:
4219 case ISD::ATOMIC_SWAP_8:
4220 case ISD::ATOMIC_LOAD_ADD_16:
4221 case ISD::ATOMIC_LOAD_SUB_16:
4222 case ISD::ATOMIC_LOAD_AND_16:
4223 case ISD::ATOMIC_LOAD_OR_16:
4224 case ISD::ATOMIC_LOAD_XOR_16:
4225 case ISD::ATOMIC_LOAD_NAND_16:
4226 case ISD::ATOMIC_LOAD_MIN_16:
4227 case ISD::ATOMIC_LOAD_MAX_16:
4228 case ISD::ATOMIC_LOAD_UMIN_16:
4229 case ISD::ATOMIC_LOAD_UMAX_16:
4230 case ISD::ATOMIC_SWAP_16:
4231 case ISD::ATOMIC_LOAD_ADD_32:
4232 case ISD::ATOMIC_LOAD_SUB_32:
4233 case ISD::ATOMIC_LOAD_AND_32:
4234 case ISD::ATOMIC_LOAD_OR_32:
4235 case ISD::ATOMIC_LOAD_XOR_32:
4236 case ISD::ATOMIC_LOAD_NAND_32:
4237 case ISD::ATOMIC_LOAD_MIN_32:
4238 case ISD::ATOMIC_LOAD_MAX_32:
4239 case ISD::ATOMIC_LOAD_UMIN_32:
4240 case ISD::ATOMIC_LOAD_UMAX_32:
4241 case ISD::ATOMIC_SWAP_32:
4242 case ISD::ATOMIC_LOAD_ADD_64:
4243 case ISD::ATOMIC_LOAD_SUB_64:
4244 case ISD::ATOMIC_LOAD_AND_64:
4245 case ISD::ATOMIC_LOAD_OR_64:
4246 case ISD::ATOMIC_LOAD_XOR_64:
4247 case ISD::ATOMIC_LOAD_NAND_64:
4248 case ISD::ATOMIC_LOAD_MIN_64:
4249 case ISD::ATOMIC_LOAD_MAX_64:
4250 case ISD::ATOMIC_LOAD_UMIN_64:
4251 case ISD::ATOMIC_LOAD_UMAX_64:
4252 case ISD::ATOMIC_SWAP_64: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004253 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004254 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004255 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4256 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004257 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004258 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004259 // Remember that we legalized the chain.
4260 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4261 break;
4262 }
4263
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004264 case ISD::AND:
4265 case ISD::OR:
4266 case ISD::XOR:
4267 case ISD::ADD:
4268 case ISD::SUB:
4269 case ISD::MUL:
4270 // The input may have strange things in the top bits of the registers, but
4271 // these operations don't care. They may have weird bits going out, but
4272 // that too is okay if they are integer operations.
4273 Tmp1 = PromoteOp(Node->getOperand(0));
4274 Tmp2 = PromoteOp(Node->getOperand(1));
4275 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4276 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4277 break;
4278 case ISD::FADD:
4279 case ISD::FSUB:
4280 case ISD::FMUL:
4281 Tmp1 = PromoteOp(Node->getOperand(0));
4282 Tmp2 = PromoteOp(Node->getOperand(1));
4283 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4284 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4285
4286 // Floating point operations will give excess precision that we may not be
4287 // able to tolerate. If we DO allow excess precision, just leave it,
4288 // otherwise excise it.
4289 // FIXME: Why would we need to round FP ops more than integer ones?
4290 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4291 if (NoExcessFPPrecision)
4292 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4293 DAG.getValueType(VT));
4294 break;
4295
4296 case ISD::SDIV:
4297 case ISD::SREM:
4298 // These operators require that their input be sign extended.
4299 Tmp1 = PromoteOp(Node->getOperand(0));
4300 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004301 if (NVT.isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004302 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4303 DAG.getValueType(VT));
4304 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4305 DAG.getValueType(VT));
4306 }
4307 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4308
4309 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004310 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004311 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4312 DAG.getValueType(VT));
4313 break;
4314 case ISD::FDIV:
4315 case ISD::FREM:
4316 case ISD::FCOPYSIGN:
4317 // These operators require that their input be fp extended.
4318 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004319 case Expand: assert(0 && "not implemented");
4320 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4321 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004322 }
4323 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004324 case Expand: assert(0 && "not implemented");
4325 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4326 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004327 }
4328 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4329
4330 // Perform FP_ROUND: this is probably overly pessimistic.
4331 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
4332 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4333 DAG.getValueType(VT));
4334 break;
4335
4336 case ISD::UDIV:
4337 case ISD::UREM:
4338 // These operators require that their input be zero extended.
4339 Tmp1 = PromoteOp(Node->getOperand(0));
4340 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004341 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004342 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4343 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4344 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4345 break;
4346
4347 case ISD::SHL:
4348 Tmp1 = PromoteOp(Node->getOperand(0));
4349 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
4350 break;
4351 case ISD::SRA:
4352 // The input value must be properly sign extended.
4353 Tmp1 = PromoteOp(Node->getOperand(0));
4354 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4355 DAG.getValueType(VT));
4356 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
4357 break;
4358 case ISD::SRL:
4359 // The input value must be properly zero extended.
4360 Tmp1 = PromoteOp(Node->getOperand(0));
4361 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4362 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
4363 break;
4364
4365 case ISD::VAARG:
4366 Tmp1 = Node->getOperand(0); // Get the chain.
4367 Tmp2 = Node->getOperand(1); // Get the pointer.
4368 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4369 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004370 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004371 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004372 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00004373 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004374 // Increment the pointer, VAList, to the next vaarg
4375 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004376 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004377 TLI.getPointerTy()));
4378 // Store the incremented VAList to the legalized pointer
Dan Gohman12a9c082008-02-06 22:27:42 +00004379 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004380 // Load the actual argument out of the pointer VAList
4381 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
4382 }
4383 // Remember that we legalized the chain.
4384 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4385 break;
4386
4387 case ISD::LOAD: {
4388 LoadSDNode *LD = cast<LoadSDNode>(Node);
4389 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4390 ? ISD::EXTLOAD : LD->getExtensionType();
4391 Result = DAG.getExtLoad(ExtType, NVT,
4392 LD->getChain(), LD->getBasePtr(),
4393 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004394 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004395 LD->isVolatile(),
4396 LD->getAlignment());
4397 // Remember that we legalized the chain.
4398 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4399 break;
4400 }
Scott Michel67224b22008-06-02 22:18:03 +00004401 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004402 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4403 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004404
Duncan Sands92c43912008-06-06 12:08:01 +00004405 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004406 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004407 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4408 // Ensure that the resulting node is at least the same size as the operands'
4409 // value types, because we cannot assume that TLI.getSetCCValueType() is
4410 // constant.
4411 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004412 break;
Scott Michel67224b22008-06-02 22:18:03 +00004413 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004414 case ISD::SELECT_CC:
4415 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4416 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4417 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4418 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4419 break;
4420 case ISD::BSWAP:
4421 Tmp1 = Node->getOperand(0);
4422 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4423 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4424 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004425 DAG.getConstant(NVT.getSizeInBits() -
4426 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004427 TLI.getShiftAmountTy()));
4428 break;
4429 case ISD::CTPOP:
4430 case ISD::CTTZ:
4431 case ISD::CTLZ:
4432 // Zero extend the argument
4433 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
4434 // Perform the larger operation, then subtract if needed.
4435 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4436 switch(Node->getOpcode()) {
4437 case ISD::CTPOP:
4438 Result = Tmp1;
4439 break;
4440 case ISD::CTTZ:
4441 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel502151f2008-03-10 15:42:14 +00004442 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004443 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004444 ISD::SETEQ);
4445 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004446 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004447 break;
4448 case ISD::CTLZ:
4449 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4450 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004451 DAG.getConstant(NVT.getSizeInBits() -
4452 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004453 break;
4454 }
4455 break;
4456 case ISD::EXTRACT_SUBVECTOR:
4457 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4458 break;
4459 case ISD::EXTRACT_VECTOR_ELT:
4460 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4461 break;
4462 }
4463
4464 assert(Result.Val && "Didn't set a result!");
4465
4466 // Make sure the result is itself legal.
4467 Result = LegalizeOp(Result);
4468
4469 // Remember that we promoted this!
4470 AddPromotedOperand(Op, Result);
4471 return Result;
4472}
4473
4474/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4475/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4476/// based on the vector type. The return type of this matches the element type
4477/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00004478SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004479 // We know that operand #0 is the Vec vector. If the index is a constant
4480 // or if the invec is a supported hardware type, we can use it. Otherwise,
4481 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00004482 SDValue Vec = Op.getOperand(0);
4483 SDValue Idx = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004484
Duncan Sands92c43912008-06-06 12:08:01 +00004485 MVT TVT = Vec.getValueType();
4486 unsigned NumElems = TVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004487
4488 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4489 default: assert(0 && "This action is not supported yet!");
4490 case TargetLowering::Custom: {
4491 Vec = LegalizeOp(Vec);
4492 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004493 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004494 if (Tmp3.Val)
4495 return Tmp3;
4496 break;
4497 }
4498 case TargetLowering::Legal:
4499 if (isTypeLegal(TVT)) {
4500 Vec = LegalizeOp(Vec);
4501 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00004502 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004503 }
4504 break;
4505 case TargetLowering::Expand:
4506 break;
4507 }
4508
4509 if (NumElems == 1) {
4510 // This must be an access of the only element. Return it.
4511 Op = ScalarizeVectorOp(Vec);
4512 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00004513 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004514 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004515 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004516 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman2b10fde2008-01-29 02:24:00 +00004517 if (CIdx->getValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004518 Vec = Lo;
4519 } else {
4520 Vec = Hi;
Nate Begeman2b10fde2008-01-29 02:24:00 +00004521 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004522 Idx.getValueType());
4523 }
4524
4525 // It's now an extract from the appropriate high or low part. Recurse.
4526 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4527 Op = ExpandEXTRACT_VECTOR_ELT(Op);
4528 } else {
4529 // Store the value to a temporary stack slot, then LOAD the scalar
4530 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00004531 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4532 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004533
4534 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00004535 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004536 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4537 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004538
Duncan Sandsec142ee2008-06-08 20:54:56 +00004539 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattner9f9b8802007-10-19 16:47:35 +00004540 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004541 else
Chris Lattner9f9b8802007-10-19 16:47:35 +00004542 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004543
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004544 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4545
4546 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
4547 }
4548 return Op;
4549}
4550
4551/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
4552/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00004553SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004554 // We know that operand #0 is the Vec vector. For now we assume the index
4555 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00004556 SDValue Vec = Op.getOperand(0);
4557 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004558
Duncan Sands92c43912008-06-06 12:08:01 +00004559 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004560
Duncan Sands92c43912008-06-06 12:08:01 +00004561 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004562 // This must be an access of the desired vector length. Return it.
4563 return Vec;
4564 }
4565
4566 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004567 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004568 SplitVectorOp(Vec, Lo, Hi);
4569 if (CIdx->getValue() < NumElems/2) {
4570 Vec = Lo;
4571 } else {
4572 Vec = Hi;
4573 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4574 }
4575
4576 // It's now an extract from the appropriate high or low part. Recurse.
4577 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4578 return ExpandEXTRACT_SUBVECTOR(Op);
4579}
4580
4581/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4582/// with condition CC on the current target. This usually involves legalizing
4583/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4584/// there may be no choice but to create a new SetCC node to represent the
4585/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00004586/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4587void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4588 SDValue &RHS,
4589 SDValue &CC) {
4590 SDValue Tmp1, Tmp2, Tmp3, Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004591
4592 switch (getTypeAction(LHS.getValueType())) {
4593 case Legal:
4594 Tmp1 = LegalizeOp(LHS); // LHS
4595 Tmp2 = LegalizeOp(RHS); // RHS
4596 break;
4597 case Promote:
4598 Tmp1 = PromoteOp(LHS); // LHS
4599 Tmp2 = PromoteOp(RHS); // RHS
4600
4601 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00004602 if (LHS.getValueType().isInteger()) {
4603 MVT VT = LHS.getValueType();
4604 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004605
4606 // Otherwise, we have to insert explicit sign or zero extends. Note
4607 // that we could insert sign extends for ALL conditions, but zero extend
4608 // is cheaper on many machines (an AND instead of two shifts), so prefer
4609 // it.
4610 switch (cast<CondCodeSDNode>(CC)->get()) {
4611 default: assert(0 && "Unknown integer comparison!");
4612 case ISD::SETEQ:
4613 case ISD::SETNE:
4614 case ISD::SETUGE:
4615 case ISD::SETUGT:
4616 case ISD::SETULE:
4617 case ISD::SETULT:
4618 // ALL of these operations will work if we either sign or zero extend
4619 // the operands (including the unsigned comparisons!). Zero extend is
4620 // usually a simpler/cheaper operation, so prefer it.
4621 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4622 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4623 break;
4624 case ISD::SETGE:
4625 case ISD::SETGT:
4626 case ISD::SETLT:
4627 case ISD::SETLE:
4628 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4629 DAG.getValueType(VT));
4630 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4631 DAG.getValueType(VT));
4632 break;
4633 }
4634 }
4635 break;
4636 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004637 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004638 if (VT == MVT::f32 || VT == MVT::f64) {
4639 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00004640 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004641 switch (cast<CondCodeSDNode>(CC)->get()) {
4642 case ISD::SETEQ:
4643 case ISD::SETOEQ:
4644 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4645 break;
4646 case ISD::SETNE:
4647 case ISD::SETUNE:
4648 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
4649 break;
4650 case ISD::SETGE:
4651 case ISD::SETOGE:
4652 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4653 break;
4654 case ISD::SETLT:
4655 case ISD::SETOLT:
4656 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4657 break;
4658 case ISD::SETLE:
4659 case ISD::SETOLE:
4660 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4661 break;
4662 case ISD::SETGT:
4663 case ISD::SETOGT:
4664 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4665 break;
4666 case ISD::SETUO:
4667 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4668 break;
4669 case ISD::SETO:
4670 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
4671 break;
4672 default:
4673 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4674 switch (cast<CondCodeSDNode>(CC)->get()) {
4675 case ISD::SETONE:
4676 // SETONE = SETOLT | SETOGT
4677 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4678 // Fallthrough
4679 case ISD::SETUGT:
4680 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4681 break;
4682 case ISD::SETUGE:
4683 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4684 break;
4685 case ISD::SETULT:
4686 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4687 break;
4688 case ISD::SETULE:
4689 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4690 break;
4691 case ISD::SETUEQ:
4692 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4693 break;
4694 default: assert(0 && "Unsupported FP setcc!");
4695 }
4696 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00004697
Dan Gohman8181bd12008-07-27 21:46:04 +00004698 SDValue Dummy;
4699 SDValue Ops[2] = { LHS, RHS };
Duncan Sands698842f2008-07-02 17:40:58 +00004700 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004701 false /*sign irrelevant*/, Dummy);
4702 Tmp2 = DAG.getConstant(0, MVT::i32);
4703 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
4704 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel502151f2008-03-10 15:42:14 +00004705 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004706 CC);
Duncan Sands698842f2008-07-02 17:40:58 +00004707 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004708 false /*sign irrelevant*/, Dummy);
Scott Michel502151f2008-03-10 15:42:14 +00004709 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004710 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
4711 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004712 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004713 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00004714 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004715 RHS = Tmp2;
4716 return;
4717 }
4718
Dan Gohman8181bd12008-07-27 21:46:04 +00004719 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004720 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004721 ExpandOp(RHS, RHSLo, RHSHi);
4722 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4723
4724 if (VT==MVT::ppcf128) {
4725 // FIXME: This generated code sucks. We want to generate
4726 // FCMP crN, hi1, hi2
4727 // BNE crN, L:
4728 // FCMP crN, lo1, lo2
4729 // The following can be improved, but not that much.
Scott Michel502151f2008-03-10 15:42:14 +00004730 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4731 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004732 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel502151f2008-03-10 15:42:14 +00004733 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4734 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004735 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4736 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00004737 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00004738 break;
4739 }
4740
4741 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004742 case ISD::SETEQ:
4743 case ISD::SETNE:
4744 if (RHSLo == RHSHi)
4745 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4746 if (RHSCST->isAllOnesValue()) {
4747 // Comparison to -1.
4748 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4749 Tmp2 = RHSLo;
4750 break;
4751 }
4752
4753 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4754 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4755 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4756 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4757 break;
4758 default:
4759 // If this is a comparison of the sign bit, just look at the top part.
4760 // X > -1, x < 0
4761 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4762 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00004763 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004764 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4765 CST->isAllOnesValue())) { // X > -1
4766 Tmp1 = LHSHi;
4767 Tmp2 = RHSHi;
4768 break;
4769 }
4770
4771 // FIXME: This generated code sucks.
4772 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004773 switch (CCCode) {
4774 default: assert(0 && "Unknown integer setcc!");
4775 case ISD::SETLT:
4776 case ISD::SETULT: LowCC = ISD::SETULT; break;
4777 case ISD::SETGT:
4778 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4779 case ISD::SETLE:
4780 case ISD::SETULE: LowCC = ISD::SETULE; break;
4781 case ISD::SETGE:
4782 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4783 }
4784
4785 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4786 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4787 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4788
4789 // NOTE: on targets without efficient SELECT of bools, we can always use
4790 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
4791 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel502151f2008-03-10 15:42:14 +00004792 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004793 LowCC, false, DagCombineInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004794 if (!Tmp1.Val)
Scott Michel502151f2008-03-10 15:42:14 +00004795 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4796 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004797 CCCode, false, DagCombineInfo);
4798 if (!Tmp2.Val)
Scott Michel502151f2008-03-10 15:42:14 +00004799 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004800 RHSHi,CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004801
4802 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4803 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman9d24dc72008-03-13 22:13:53 +00004804 if ((Tmp1C && Tmp1C->isNullValue()) ||
4805 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004806 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4807 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00004808 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004809 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4810 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4811 // low part is known false, returns high part.
4812 // For LE / GE, if high part is known false, ignore the low part.
4813 // For LT / GT, if high part is known true, ignore the low part.
4814 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00004815 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004816 } else {
Scott Michel502151f2008-03-10 15:42:14 +00004817 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004818 ISD::SETEQ, false, DagCombineInfo);
4819 if (!Result.Val)
Scott Michel502151f2008-03-10 15:42:14 +00004820 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004821 ISD::SETEQ);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004822 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4823 Result, Tmp1, Tmp2));
4824 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00004825 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004826 }
4827 }
4828 }
4829 }
4830 LHS = Tmp1;
4831 RHS = Tmp2;
4832}
4833
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004834/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4835/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4836/// a load from the stack slot to DestVT, extending it if needed.
4837/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00004838SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4839 MVT SlotVT,
4840 MVT DestVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004841 // Create the stack frame object.
Mon P Wang55854cc2008-07-05 20:40:31 +00004842 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4843 SrcOp.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00004844 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang55854cc2008-07-05 20:40:31 +00004845
Dan Gohman20e37962008-02-11 18:58:42 +00004846 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00004847 int SPFI = StackPtrFI->getIndex();
Mon P Wang55854cc2008-07-05 20:40:31 +00004848
Duncan Sands92c43912008-06-06 12:08:01 +00004849 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4850 unsigned SlotSize = SlotVT.getSizeInBits();
4851 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang55854cc2008-07-05 20:40:31 +00004852 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4853 DestVT.getTypeForMVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004854
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004855 // Emit a store to the stack slot. Use a truncstore if the input value is
4856 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00004857 SDValue Store;
Mon P Wang55854cc2008-07-05 20:40:31 +00004858
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004859 if (SrcSize > SlotSize)
Dan Gohman12a9c082008-02-06 22:27:42 +00004860 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004861 PseudoSourceValue::getFixedStack(SPFI), 0,
4862 SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004863 else {
4864 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman12a9c082008-02-06 22:27:42 +00004865 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004866 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang55854cc2008-07-05 20:40:31 +00004867 false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004868 }
4869
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004870 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004871 if (SlotSize == DestSize)
Mon P Wang55854cc2008-07-05 20:40:31 +00004872 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004873
4874 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang55854cc2008-07-05 20:40:31 +00004875 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4876 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004877}
4878
Dan Gohman8181bd12008-07-27 21:46:04 +00004879SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004880 // Create a vector sized/aligned stack slot, store the value to element #0,
4881 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00004882 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00004883
Dan Gohman20e37962008-02-11 18:58:42 +00004884 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00004885 int SPFI = StackPtrFI->getIndex();
4886
Dan Gohman8181bd12008-07-27 21:46:04 +00004887 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004888 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman12a9c082008-02-06 22:27:42 +00004889 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004890 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004891}
4892
4893
4894/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
4895/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00004896SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004897
4898 // If the only non-undef value is the low element, turn this into a
4899 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
4900 unsigned NumElems = Node->getNumOperands();
4901 bool isOnlyLowElement = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00004902 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerd8cee732008-03-09 00:29:42 +00004903
Dan Gohman8181bd12008-07-27 21:46:04 +00004904 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00004905 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00004906 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004907 Values[SplatValue].push_back(0);
4908 bool isConstant = true;
4909 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4910 SplatValue.getOpcode() != ISD::UNDEF)
4911 isConstant = false;
4912
4913 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004914 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004915 Values[V].push_back(i);
4916 if (V.getOpcode() != ISD::UNDEF)
4917 isOnlyLowElement = false;
4918 if (SplatValue != V)
Dan Gohman8181bd12008-07-27 21:46:04 +00004919 SplatValue = SDValue(0,0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004920
4921 // If this isn't a constant element or an undef, we can't use a constant
4922 // pool load.
4923 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4924 V.getOpcode() != ISD::UNDEF)
4925 isConstant = false;
4926 }
4927
4928 if (isOnlyLowElement) {
4929 // If the low element is an undef too, then this whole things is an undef.
4930 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4931 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4932 // Otherwise, turn this into a scalar_to_vector node.
4933 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4934 Node->getOperand(0));
4935 }
4936
4937 // If all elements are constants, create a load from the constant pool.
4938 if (isConstant) {
Duncan Sands92c43912008-06-06 12:08:01 +00004939 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004940 std::vector<Constant*> CV;
4941 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4942 if (ConstantFPSDNode *V =
4943 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner5e0610f2008-04-20 00:41:09 +00004944 CV.push_back(ConstantFP::get(V->getValueAPF()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004945 } else if (ConstantSDNode *V =
Chris Lattner5e0610f2008-04-20 00:41:09 +00004946 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4947 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004948 } else {
4949 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner5e0610f2008-04-20 00:41:09 +00004950 const Type *OpNTy =
Duncan Sands92c43912008-06-06 12:08:01 +00004951 Node->getOperand(0).getValueType().getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004952 CV.push_back(UndefValue::get(OpNTy));
4953 }
4954 }
4955 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00004956 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman12a9c082008-02-06 22:27:42 +00004957 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00004958 PseudoSourceValue::getConstantPool(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004959 }
4960
4961 if (SplatValue.Val) { // Splat of one value?
4962 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00004963 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00004964 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
4965 std::vector<SDValue> ZeroVec(NumElems, Zero);
4966 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004967 &ZeroVec[0], ZeroVec.size());
4968
4969 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
4970 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
4971 // Get the splatted value into the low element of a vector register.
Dan Gohman8181bd12008-07-27 21:46:04 +00004972 SDValue LowValVec =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004973 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4974
4975 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4976 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4977 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4978 SplatMask);
4979 }
4980 }
4981
4982 // If there are only two unique elements, we may be able to turn this into a
4983 // vector shuffle.
4984 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00004985 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00004986 SDValue Val1 = Node->getOperand(1);
4987 SDValue Val2;
4988 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00004989 if (MI->first != Val1)
4990 Val2 = MI->first;
4991 else
4992 Val2 = (++MI)->first;
4993
4994 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
4995 // vector shuffle has the undef vector on the RHS.
4996 if (Val1.getOpcode() == ISD::UNDEF)
4997 std::swap(Val1, Val2);
4998
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004999 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005000 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5001 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005002 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005003
5004 // Set elements of the shuffle mask for Val1.
5005 std::vector<unsigned> &Val1Elts = Values[Val1];
5006 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5007 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5008
5009 // Set elements of the shuffle mask for Val2.
5010 std::vector<unsigned> &Val2Elts = Values[Val2];
5011 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5012 if (Val2.getOpcode() != ISD::UNDEF)
5013 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5014 else
5015 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5016
Dan Gohman8181bd12008-07-27 21:46:04 +00005017 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005018 &MaskVec[0], MaskVec.size());
5019
Chris Lattnerd8cee732008-03-09 00:29:42 +00005020 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005021 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5022 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005023 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5024 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005025 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005026
5027 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerd8cee732008-03-09 00:29:42 +00005028 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005029 }
5030 }
5031
5032 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5033 // aligned object on the stack, store each element into it, then load
5034 // the result as a vector.
Duncan Sands92c43912008-06-06 12:08:01 +00005035 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005036 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005037 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005038
5039 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005040 SmallVector<SDValue, 8> Stores;
Duncan Sands92c43912008-06-06 12:08:01 +00005041 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005042 // Store (in the right endianness) the elements to memory.
5043 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5044 // Ignore undef elements.
5045 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5046
5047 unsigned Offset = TypeByteSize*i;
5048
Dan Gohman8181bd12008-07-27 21:46:04 +00005049 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005050 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5051
5052 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
5053 NULL, 0));
5054 }
5055
Dan Gohman8181bd12008-07-27 21:46:04 +00005056 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005057 if (!Stores.empty()) // Not all undef elements?
5058 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5059 &Stores[0], Stores.size());
5060 else
5061 StoreChain = DAG.getEntryNode();
5062
5063 // Result is a load from the stack slot.
5064 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
5065}
5066
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005067void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005068 SDValue Op, SDValue Amt,
5069 SDValue &Lo, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005070 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005071 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005072 ExpandOp(Op, LHSL, LHSH);
5073
Dan Gohman8181bd12008-07-27 21:46:04 +00005074 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005075 MVT VT = LHSL.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005076 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
5077 Hi = Lo.getValue(1);
5078}
5079
5080
5081/// ExpandShift - Try to find a clever way to expand this shift operation out to
5082/// smaller elements. If we can't find a way that is more efficient than a
5083/// libcall on this target, return false. Otherwise, return true with the
5084/// low-parts expanded into Lo and Hi.
Dan Gohman8181bd12008-07-27 21:46:04 +00005085bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5086 SDValue &Lo, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005087 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5088 "This is not a shift!");
5089
Duncan Sands92c43912008-06-06 12:08:01 +00005090 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005091 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005092 MVT ShTy = ShAmt.getValueType();
5093 unsigned ShBits = ShTy.getSizeInBits();
5094 unsigned VTBits = Op.getValueType().getSizeInBits();
5095 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005096
Chris Lattner8c931452007-10-14 20:35:12 +00005097 // Handle the case when Amt is an immediate.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005098 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5099 unsigned Cst = CN->getValue();
5100 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005101 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005102 ExpandOp(Op, InL, InH);
5103 switch(Opc) {
5104 case ISD::SHL:
5105 if (Cst > VTBits) {
5106 Lo = DAG.getConstant(0, NVT);
5107 Hi = DAG.getConstant(0, NVT);
5108 } else if (Cst > NVTBits) {
5109 Lo = DAG.getConstant(0, NVT);
5110 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
5111 } else if (Cst == NVTBits) {
5112 Lo = DAG.getConstant(0, NVT);
5113 Hi = InL;
5114 } else {
5115 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5116 Hi = DAG.getNode(ISD::OR, NVT,
5117 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5118 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5119 }
5120 return true;
5121 case ISD::SRL:
5122 if (Cst > VTBits) {
5123 Lo = DAG.getConstant(0, NVT);
5124 Hi = DAG.getConstant(0, NVT);
5125 } else if (Cst > NVTBits) {
5126 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5127 Hi = DAG.getConstant(0, NVT);
5128 } else if (Cst == NVTBits) {
5129 Lo = InH;
5130 Hi = DAG.getConstant(0, NVT);
5131 } else {
5132 Lo = DAG.getNode(ISD::OR, NVT,
5133 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5134 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5135 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5136 }
5137 return true;
5138 case ISD::SRA:
5139 if (Cst > VTBits) {
5140 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
5141 DAG.getConstant(NVTBits-1, ShTy));
5142 } else if (Cst > NVTBits) {
5143 Lo = DAG.getNode(ISD::SRA, NVT, InH,
5144 DAG.getConstant(Cst-NVTBits, ShTy));
5145 Hi = DAG.getNode(ISD::SRA, NVT, InH,
5146 DAG.getConstant(NVTBits-1, ShTy));
5147 } else if (Cst == NVTBits) {
5148 Lo = InH;
5149 Hi = DAG.getNode(ISD::SRA, NVT, InH,
5150 DAG.getConstant(NVTBits-1, ShTy));
5151 } else {
5152 Lo = DAG.getNode(ISD::OR, NVT,
5153 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5154 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5155 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5156 }
5157 return true;
5158 }
5159 }
5160
5161 // Okay, the shift amount isn't constant. However, if we can tell that it is
5162 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005163 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5164 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005165 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
5166
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005167 // If we know that if any of the high bits of the shift amount are one, then
5168 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005169 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005170 // Mask out the high bit, which we know is set.
5171 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005172 DAG.getConstant(~Mask, Amt.getValueType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005173
5174 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005175 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005176 ExpandOp(Op, InL, InH);
5177 switch(Opc) {
5178 case ISD::SHL:
5179 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5180 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5181 return true;
5182 case ISD::SRL:
5183 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5184 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5185 return true;
5186 case ISD::SRA:
5187 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5188 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5189 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5190 return true;
5191 }
5192 }
5193
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005194 // If we know that the high bits of the shift amount are all zero, then we can
5195 // do this as a couple of simple shifts.
5196 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005197 // Compute 32-amt.
Dan Gohman8181bd12008-07-27 21:46:04 +00005198 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005199 DAG.getConstant(NVTBits, Amt.getValueType()),
5200 Amt);
5201
5202 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005203 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005204 ExpandOp(Op, InL, InH);
5205 switch(Opc) {
5206 case ISD::SHL:
5207 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5208 Hi = DAG.getNode(ISD::OR, NVT,
5209 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5210 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5211 return true;
5212 case ISD::SRL:
5213 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5214 Lo = DAG.getNode(ISD::OR, NVT,
5215 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5216 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5217 return true;
5218 case ISD::SRA:
5219 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5220 Lo = DAG.getNode(ISD::OR, NVT,
5221 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5222 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5223 return true;
5224 }
5225 }
5226
5227 return false;
5228}
5229
5230
5231// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5232// does not fit into a register, return the lo part and set the hi part to the
5233// by-reg argument. If it does fit into a single register, return the result
5234// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005235SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5236 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005237 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5238 // The input chain to this libcall is the entry node of the function.
5239 // Legalizing the call will automatically add the previous call to the
5240 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005241 SDValue InChain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005242
5243 TargetLowering::ArgListTy Args;
5244 TargetLowering::ArgListEntry Entry;
5245 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005246 MVT ArgVT = Node->getOperand(i).getValueType();
5247 const Type *ArgTy = ArgVT.getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005248 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
5249 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005250 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005251 Args.push_back(Entry);
5252 }
Dan Gohman8181bd12008-07-27 21:46:04 +00005253 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Duncan Sandsf1db7c82008-04-12 17:14:18 +00005254 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005255
5256 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005257 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00005258 std::pair<SDValue,SDValue> CallInfo =
Duncan Sandsead972e2008-02-14 17:28:50 +00005259 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5260 false, Callee, Args, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005261
5262 // Legalize the call sequence, starting with the chain. This will advance
5263 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5264 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5265 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005266 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005267 switch (getTypeAction(CallInfo.first.getValueType())) {
5268 default: assert(0 && "Unknown thing");
5269 case Legal:
5270 Result = CallInfo.first;
5271 break;
5272 case Expand:
5273 ExpandOp(CallInfo.first, Result, Hi);
5274 break;
5275 }
5276 return Result;
5277}
5278
Dan Gohman29c3cef2008-08-14 20:04:46 +00005279/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5280///
5281SDValue SelectionDAGLegalize::
5282LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5283 bool isCustom = false;
5284 SDValue Tmp1;
5285 switch (getTypeAction(Op.getValueType())) {
5286 case Legal:
5287 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5288 Op.getValueType())) {
5289 default: assert(0 && "Unknown operation action!");
5290 case TargetLowering::Custom:
5291 isCustom = true;
5292 // FALLTHROUGH
5293 case TargetLowering::Legal:
5294 Tmp1 = LegalizeOp(Op);
5295 if (Result.Val)
5296 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5297 else
5298 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5299 DestTy, Tmp1);
5300 if (isCustom) {
5301 Tmp1 = TLI.LowerOperation(Result, DAG);
5302 if (Tmp1.Val) Result = Tmp1;
5303 }
5304 break;
5305 case TargetLowering::Expand:
5306 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5307 break;
5308 case TargetLowering::Promote:
5309 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5310 break;
5311 }
5312 break;
5313 case Expand:
5314 Result = ExpandIntToFP(isSigned, DestTy, Op);
5315 break;
5316 case Promote:
5317 Tmp1 = PromoteOp(Op);
5318 if (isSigned) {
5319 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5320 Tmp1, DAG.getValueType(Op.getValueType()));
5321 } else {
5322 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5323 Op.getValueType());
5324 }
5325 if (Result.Val)
5326 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5327 else
5328 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5329 DestTy, Tmp1);
5330 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5331 break;
5332 }
5333 return Result;
5334}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005335
5336/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5337///
Dan Gohman8181bd12008-07-27 21:46:04 +00005338SDValue SelectionDAGLegalize::
5339ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands92c43912008-06-06 12:08:01 +00005340 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005341 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005342
Dan Gohman29c3cef2008-08-14 20:04:46 +00005343 // Expand unsupported int-to-fp vector casts by unrolling them.
5344 if (DestTy.isVector()) {
5345 if (!ExpandSource)
5346 return LegalizeOp(UnrollVectorOp(Source));
5347 MVT DestEltTy = DestTy.getVectorElementType();
5348 if (DestTy.getVectorNumElements() == 1) {
5349 SDValue Scalar = ScalarizeVectorOp(Source);
5350 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5351 DestEltTy, Scalar);
5352 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5353 }
5354 SDValue Lo, Hi;
5355 SplitVectorOp(Source, Lo, Hi);
5356 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5357 DestTy.getVectorNumElements() / 2);
5358 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5359 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
5360 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
5361 }
5362
Evan Chengf99a7752008-04-01 02:18:22 +00005363 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5364 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005365 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005366 // incoming integer is set. To handle this, we dynamically test to see if
5367 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005368 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005369 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005370 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005371 ExpandOp(Source, Lo, Hi);
5372 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5373 } else {
5374 // The comparison for the sign bit will use the entire operand.
5375 Hi = Source;
5376 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005377
5378 // If this is unsigned, and not supported, first perform the conversion to
5379 // signed, then adjust the result if the sign bit is set.
Dan Gohman8181bd12008-07-27 21:46:04 +00005380 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005381
Dan Gohman8181bd12008-07-27 21:46:04 +00005382 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005383 DAG.getConstant(0, Hi.getValueType()),
5384 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005385 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5386 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005387 SignSet, Four, Zero);
5388 uint64_t FF = 0x5f800000ULL;
5389 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohmana193dba2008-03-05 02:07:31 +00005390 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005391
Dan Gohman8181bd12008-07-27 21:46:04 +00005392 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005393 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman8181bd12008-07-27 21:46:04 +00005394 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005395 if (DestTy == MVT::f32)
Dan Gohman12a9c082008-02-06 22:27:42 +00005396 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005397 PseudoSourceValue::getConstantPool(), 0);
Duncan Sandsec142ee2008-06-08 20:54:56 +00005398 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005399 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenb17a7a22007-09-16 16:51:49 +00005400 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00005401 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005402 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman12a9c082008-02-06 22:27:42 +00005403 MVT::f32);
Dale Johannesen2fc20782007-09-14 22:26:36 +00005404 else
5405 assert(0 && "Unexpected conversion");
5406
Duncan Sands92c43912008-06-06 12:08:01 +00005407 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005408 if (SCVT != DestTy) {
5409 // Destination type needs to be expanded as well. The FADD now we are
5410 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00005411 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5412 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmanc98645c2008-03-05 01:08:17 +00005413 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005414 SignedConv, SignedConv.getValue(1));
5415 }
5416 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5417 }
5418 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
5419 }
5420
5421 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00005422 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005423 default: assert(0 && "This action not implemented for this operation!");
5424 case TargetLowering::Legal:
5425 case TargetLowering::Expand:
5426 break; // This case is handled below.
5427 case TargetLowering::Custom: {
Dan Gohman8181bd12008-07-27 21:46:04 +00005428 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005429 Source), DAG);
5430 if (NV.Val)
5431 return LegalizeOp(NV);
5432 break; // The target decided this was legal after all
5433 }
5434 }
5435
5436 // Expand the source, then glue it back together for the call. We must expand
5437 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00005438 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005439 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005440 ExpandOp(Source, SrcLo, SrcHi);
5441 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5442 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005443
Duncan Sandsf68dffb2008-07-17 02:36:29 +00005444 RTLIB::Libcall LC = isSigned ?
5445 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5446 RTLIB::getUINTTOFP(SourceVT, DestTy);
5447 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5448
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005449 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00005450 SDValue HiPart;
5451 SDValue Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Chenga8740032008-04-01 01:50:16 +00005452 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmanec51f642008-03-10 23:03:31 +00005453 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5454 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005455}
5456
5457/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5458/// INT_TO_FP operation of the specified operand when the target requests that
5459/// we expand it. At this point, we know that the result and operand types are
5460/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00005461SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5462 SDValue Op0,
5463 MVT DestVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005464 if (Op0.getValueType() == MVT::i32) {
5465 // simple 32-bit [signed|unsigned] integer to float/double expansion
5466
Chris Lattner0aeb1d02008-01-16 07:03:22 +00005467 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00005468 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner0aeb1d02008-01-16 07:03:22 +00005469
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005470 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00005471 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005472 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00005473 SDValue Hi = StackSlot;
5474 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005475 if (TLI.isLittleEndian())
5476 std::swap(Hi, Lo);
5477
5478 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00005479 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005480 if (isSigned) {
5481 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00005482 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005483 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5484 } else {
5485 Op0Mapped = Op0;
5486 }
5487 // store the lo of the constructed double - based on integer input
Dan Gohman8181bd12008-07-27 21:46:04 +00005488 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005489 Op0Mapped, Lo, NULL, 0);
5490 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00005491 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005492 // store the hi of the constructed double - biased exponent
Dan Gohman8181bd12008-07-27 21:46:04 +00005493 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005494 // load the constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00005495 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005496 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00005497 SDValue Bias = DAG.getConstantFP(isSigned ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005498 BitsToDouble(0x4330000080000000ULL)
5499 : BitsToDouble(0x4330000000000000ULL),
5500 MVT::f64);
5501 // subtract the bias
Dan Gohman8181bd12008-07-27 21:46:04 +00005502 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005503 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00005504 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005505 // handle final rounding
5506 if (DestVT == MVT::f64) {
5507 // do nothing
5508 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00005509 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner5872a362008-01-17 07:00:52 +00005510 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5511 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00005512 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenb17a7a22007-09-16 16:51:49 +00005513 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005514 }
5515 return Result;
5516 }
5517 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman8181bd12008-07-27 21:46:04 +00005518 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005519
Dan Gohman8181bd12008-07-27 21:46:04 +00005520 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005521 DAG.getConstant(0, Op0.getValueType()),
5522 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005523 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5524 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005525 SignSet, Four, Zero);
5526
5527 // If the sign bit of the integer is set, the large number will be treated
5528 // as a negative number. To counteract this, the dynamic code adds an
5529 // offset depending on the data type.
5530 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00005531 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005532 default: assert(0 && "Unsupported integer type!");
5533 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5534 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5535 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5536 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5537 }
5538 if (TLI.isLittleEndian()) FF <<= 32;
5539 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
5540
Dan Gohman8181bd12008-07-27 21:46:04 +00005541 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005542 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman8181bd12008-07-27 21:46:04 +00005543 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005544 if (DestVT == MVT::f32)
Dan Gohman12a9c082008-02-06 22:27:42 +00005545 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005546 PseudoSourceValue::getConstantPool(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005547 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00005548 FudgeInReg =
5549 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5550 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005551 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman12a9c082008-02-06 22:27:42 +00005552 MVT::f32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005553 }
5554
5555 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5556}
5557
5558/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5559/// *INT_TO_FP operation of the specified operand when the target requests that
5560/// we promote it. At this point, we know that the result and operand types are
5561/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5562/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00005563SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5564 MVT DestVT,
5565 bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005566 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00005567 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005568
5569 unsigned OpToUse = 0;
5570
5571 // Scan for the appropriate larger type to use.
5572 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00005573 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5574 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005575
5576 // If the target supports SINT_TO_FP of this type, use it.
5577 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5578 default: break;
5579 case TargetLowering::Legal:
5580 if (!TLI.isTypeLegal(NewInTy))
5581 break; // Can't use this datatype.
5582 // FALL THROUGH.
5583 case TargetLowering::Custom:
5584 OpToUse = ISD::SINT_TO_FP;
5585 break;
5586 }
5587 if (OpToUse) break;
5588 if (isSigned) continue;
5589
5590 // If the target supports UINT_TO_FP of this type, use it.
5591 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5592 default: break;
5593 case TargetLowering::Legal:
5594 if (!TLI.isTypeLegal(NewInTy))
5595 break; // Can't use this datatype.
5596 // FALL THROUGH.
5597 case TargetLowering::Custom:
5598 OpToUse = ISD::UINT_TO_FP;
5599 break;
5600 }
5601 if (OpToUse) break;
5602
5603 // Otherwise, try a larger type.
5604 }
5605
5606 // Okay, we found the operation and type to use. Zero extend our input to the
5607 // desired type then run the operation on it.
5608 return DAG.getNode(OpToUse, DestVT,
5609 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5610 NewInTy, LegalOp));
5611}
5612
5613/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5614/// FP_TO_*INT 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 FP_TO_UINT or FP_TO_SINT
5617/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00005618SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5619 MVT DestVT,
5620 bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005621 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00005622 MVT NewOutTy = DestVT;
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 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5629 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005630
5631 // If the target supports FP_TO_SINT returning this type, use it.
5632 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5633 default: break;
5634 case TargetLowering::Legal:
5635 if (!TLI.isTypeLegal(NewOutTy))
5636 break; // Can't use this datatype.
5637 // FALL THROUGH.
5638 case TargetLowering::Custom:
5639 OpToUse = ISD::FP_TO_SINT;
5640 break;
5641 }
5642 if (OpToUse) break;
5643
5644 // If the target supports FP_TO_UINT of this type, use it.
5645 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5646 default: break;
5647 case TargetLowering::Legal:
5648 if (!TLI.isTypeLegal(NewOutTy))
5649 break; // Can't use this datatype.
5650 // FALL THROUGH.
5651 case TargetLowering::Custom:
5652 OpToUse = ISD::FP_TO_UINT;
5653 break;
5654 }
5655 if (OpToUse) break;
5656
5657 // Otherwise, try a larger type.
5658 }
5659
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005660
5661 // Okay, we found the operation and type to use.
Dan Gohman8181bd12008-07-27 21:46:04 +00005662 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00005663
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005664 // If the operation produces an invalid type, it must be custom lowered. Use
5665 // the target lowering hooks to expand it. Just keep the low part of the
5666 // expanded operation, we know that we're truncating anyway.
5667 if (getTypeAction(NewOutTy) == Expand) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005668 Operation = SDValue(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005669 assert(Operation.Val && "Didn't return anything");
5670 }
Duncan Sandsac496a12008-07-04 11:47:58 +00005671
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005672 // Truncate the result of the extended FP_TO_*INT operation to the desired
5673 // size.
5674 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005675}
5676
5677/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5678///
Dan Gohman8181bd12008-07-27 21:46:04 +00005679SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00005680 MVT VT = Op.getValueType();
5681 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00005682 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00005683 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005684 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5685 case MVT::i16:
5686 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5687 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5688 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5689 case MVT::i32:
5690 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5691 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5692 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5693 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5694 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5695 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5696 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5697 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5698 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5699 case MVT::i64:
5700 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5701 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5702 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5703 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5704 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5705 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5706 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5707 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5708 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5709 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5710 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5711 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5712 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5713 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5714 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5715 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5716 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5717 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5718 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5719 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5720 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5721 }
5722}
5723
5724/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5725///
Dan Gohman8181bd12008-07-27 21:46:04 +00005726SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005727 switch (Opc) {
5728 default: assert(0 && "Cannot expand this yet!");
5729 case ISD::CTPOP: {
5730 static const uint64_t mask[6] = {
5731 0x5555555555555555ULL, 0x3333333333333333ULL,
5732 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5733 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5734 };
Duncan Sands92c43912008-06-06 12:08:01 +00005735 MVT VT = Op.getValueType();
5736 MVT ShVT = TLI.getShiftAmountTy();
5737 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005738 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5739 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman8181bd12008-07-27 21:46:04 +00005740 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5741 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005742 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5743 DAG.getNode(ISD::AND, VT,
5744 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5745 }
5746 return Op;
5747 }
5748 case ISD::CTLZ: {
5749 // for now, we do this:
5750 // x = x | (x >> 1);
5751 // x = x | (x >> 2);
5752 // ...
5753 // x = x | (x >>16);
5754 // x = x | (x >>32); // for 64-bit input
5755 // return popcount(~x);
5756 //
5757 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00005758 MVT VT = Op.getValueType();
5759 MVT ShVT = TLI.getShiftAmountTy();
5760 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005761 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005762 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005763 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5764 }
5765 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5766 return DAG.getNode(ISD::CTPOP, VT, Op);
5767 }
5768 case ISD::CTTZ: {
5769 // for now, we use: { return popcount(~x & (x - 1)); }
5770 // unless the target has ctlz but not ctpop, in which case we use:
5771 // { return 32 - nlz(~x & (x-1)); }
5772 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00005773 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005774 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5775 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005776 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5777 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5778 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5779 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5780 TLI.isOperationLegal(ISD::CTLZ, VT))
5781 return DAG.getNode(ISD::SUB, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00005782 DAG.getConstant(VT.getSizeInBits(), VT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005783 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5784 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5785 }
5786 }
5787}
5788
Dan Gohman8181bd12008-07-27 21:46:04 +00005789/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005790/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5791/// LegalizeNodes map is filled in for any results that are not expanded, the
5792/// ExpandedNodes map is filled in for any results that are expanded, and the
5793/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00005794void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00005795 MVT VT = Op.getValueType();
5796 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005797 SDNode *Node = Op.Val;
5798 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00005799 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00005800 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005801
5802 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00005803 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005804 = ExpandedNodes.find(Op);
5805 if (I != ExpandedNodes.end()) {
5806 Lo = I->second.first;
5807 Hi = I->second.second;
5808 return;
5809 }
5810
5811 switch (Node->getOpcode()) {
5812 case ISD::CopyFromReg:
5813 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00005814 case ISD::FP_ROUND_INREG:
5815 if (VT == MVT::ppcf128 &&
5816 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5817 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005818 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00005819 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5820 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005821 SDValue Result = TLI.LowerOperation(
Dale Johannesend3b6af32007-10-11 23:32:15 +00005822 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00005823 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5824 Lo = Result.Val->getOperand(0);
5825 Hi = Result.Val->getOperand(1);
5826 break;
5827 }
5828 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005829 default:
5830#ifndef NDEBUG
5831 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
5832#endif
5833 assert(0 && "Do not know how to expand this operator!");
5834 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00005835 case ISD::EXTRACT_ELEMENT:
5836 ExpandOp(Node->getOperand(0), Lo, Hi);
5837 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5838 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00005839 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00005840 case ISD::EXTRACT_VECTOR_ELT:
5841 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5842 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5843 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5844 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005845 case ISD::UNDEF:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005846 Lo = DAG.getNode(ISD::UNDEF, NVT);
5847 Hi = DAG.getNode(ISD::UNDEF, NVT);
5848 break;
5849 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00005850 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00005851 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5852 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5853 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005854 break;
5855 }
5856 case ISD::ConstantFP: {
5857 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00005858 if (CFP->getValueType(0) == MVT::ppcf128) {
5859 APInt api = CFP->getValueAPF().convertToAPInt();
5860 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5861 MVT::f64);
5862 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5863 MVT::f64);
5864 break;
5865 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005866 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
5867 if (getTypeAction(Lo.getValueType()) == Expand)
5868 ExpandOp(Lo, Lo, Hi);
5869 break;
5870 }
5871 case ISD::BUILD_PAIR:
5872 // Return the operands.
5873 Lo = Node->getOperand(0);
5874 Hi = Node->getOperand(1);
5875 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005876
5877 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00005878 if (Node->getNumValues() == 1) {
5879 ExpandOp(Op.getOperand(0), Lo, Hi);
5880 break;
5881 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005882 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00005883 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005884 Op.getValue(1).getValueType() == MVT::Other &&
5885 "unhandled MERGE_VALUES");
5886 ExpandOp(Op.getOperand(0), Lo, Hi);
5887 // Remember that we legalized the chain.
5888 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5889 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005890
5891 case ISD::SIGN_EXTEND_INREG:
5892 ExpandOp(Node->getOperand(0), Lo, Hi);
5893 // sext_inreg the low part if needed.
5894 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5895
5896 // The high part gets the sign extension from the lo-part. This handles
5897 // things like sextinreg V:i64 from i8.
5898 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00005899 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005900 TLI.getShiftAmountTy()));
5901 break;
5902
5903 case ISD::BSWAP: {
5904 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005905 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005906 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5907 Lo = TempLo;
5908 break;
5909 }
5910
5911 case ISD::CTPOP:
5912 ExpandOp(Node->getOperand(0), Lo, Hi);
5913 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5914 DAG.getNode(ISD::CTPOP, NVT, Lo),
5915 DAG.getNode(ISD::CTPOP, NVT, Hi));
5916 Hi = DAG.getConstant(0, NVT);
5917 break;
5918
5919 case ISD::CTLZ: {
5920 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
5921 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005922 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5923 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5924 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005925 ISD::SETNE);
Dan Gohman8181bd12008-07-27 21:46:04 +00005926 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005927 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5928
5929 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5930 Hi = DAG.getConstant(0, NVT);
5931 break;
5932 }
5933
5934 case ISD::CTTZ: {
5935 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
5936 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005937 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5938 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5939 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005940 ISD::SETNE);
Dan Gohman8181bd12008-07-27 21:46:04 +00005941 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005942 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5943
5944 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5945 Hi = DAG.getConstant(0, NVT);
5946 break;
5947 }
5948
5949 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00005950 SDValue Ch = Node->getOperand(0); // Legalize the chain.
5951 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005952 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5953 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5954
5955 // Remember that we legalized the chain.
5956 Hi = LegalizeOp(Hi);
5957 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00005958 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005959 std::swap(Lo, Hi);
5960 break;
5961 }
5962
5963 case ISD::LOAD: {
5964 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00005965 SDValue Ch = LD->getChain(); // Legalize the chain.
5966 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005967 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00005968 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005969 int SVOffset = LD->getSrcValueOffset();
5970 unsigned Alignment = LD->getAlignment();
5971 bool isVolatile = LD->isVolatile();
5972
5973 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00005974 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005975 isVolatile, Alignment);
5976 if (VT == MVT::f32 || VT == MVT::f64) {
5977 // f32->i32 or f64->i64 one to one expansion.
5978 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00005979 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005980 // Recursively expand the new load.
5981 if (getTypeAction(NVT) == Expand)
5982 ExpandOp(Lo, Lo, Hi);
5983 break;
5984 }
5985
5986 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00005987 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005988 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00005989 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005990 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00005991 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman29c3cef2008-08-14 20:04:46 +00005992 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005993 isVolatile, Alignment);
5994
5995 // Build a factor node to remember that this load is independent of the
5996 // other one.
Dan Gohman8181bd12008-07-27 21:46:04 +00005997 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005998 Hi.getValue(1));
5999
6000 // Remember that we legalized the chain.
6001 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006002 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006003 std::swap(Lo, Hi);
6004 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006005 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006006
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006007 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6008 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006009 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman29c3cef2008-08-14 20:04:46 +00006010 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006011 SVOffset, isVolatile, Alignment);
6012 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006013 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006014 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6015 break;
6016 }
6017
6018 if (EVT == NVT)
Dan Gohman29c3cef2008-08-14 20:04:46 +00006019 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006020 SVOffset, isVolatile, Alignment);
6021 else
Dan Gohman29c3cef2008-08-14 20:04:46 +00006022 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006023 SVOffset, EVT, isVolatile,
6024 Alignment);
6025
6026 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006027 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006028
6029 if (ExtType == ISD::SEXTLOAD) {
6030 // The high part is obtained by SRA'ing all but one of the bits of the
6031 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006032 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006033 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6034 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6035 } else if (ExtType == ISD::ZEXTLOAD) {
6036 // The high part is just a zero.
6037 Hi = DAG.getConstant(0, NVT);
6038 } else /* if (ExtType == ISD::EXTLOAD) */ {
6039 // The high part is undefined.
6040 Hi = DAG.getNode(ISD::UNDEF, NVT);
6041 }
6042 }
6043 break;
6044 }
6045 case ISD::AND:
6046 case ISD::OR:
6047 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006048 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006049 ExpandOp(Node->getOperand(0), LL, LH);
6050 ExpandOp(Node->getOperand(1), RL, RH);
6051 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6052 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6053 break;
6054 }
6055 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006056 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006057 ExpandOp(Node->getOperand(1), LL, LH);
6058 ExpandOp(Node->getOperand(2), RL, RH);
6059 if (getTypeAction(NVT) == Expand)
6060 NVT = TLI.getTypeToExpandTo(NVT);
6061 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
6062 if (VT != MVT::f32)
6063 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
6064 break;
6065 }
6066 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006067 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006068 ExpandOp(Node->getOperand(2), TL, TH);
6069 ExpandOp(Node->getOperand(3), FL, FH);
6070 if (getTypeAction(NVT) == Expand)
6071 NVT = TLI.getTypeToExpandTo(NVT);
6072 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6073 Node->getOperand(1), TL, FL, Node->getOperand(4));
6074 if (VT != MVT::f32)
6075 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6076 Node->getOperand(1), TH, FH, Node->getOperand(4));
6077 break;
6078 }
6079 case ISD::ANY_EXTEND:
6080 // The low part is any extension of the input (which degenerates to a copy).
6081 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6082 // The high part is undefined.
6083 Hi = DAG.getNode(ISD::UNDEF, NVT);
6084 break;
6085 case ISD::SIGN_EXTEND: {
6086 // The low part is just a sign extension of the input (which degenerates to
6087 // a copy).
6088 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
6089
6090 // The high part is obtained by SRA'ing all but one of the bits of the lo
6091 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006092 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006093 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6094 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6095 break;
6096 }
6097 case ISD::ZERO_EXTEND:
6098 // The low part is just a zero extension of the input (which degenerates to
6099 // a copy).
6100 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
6101
6102 // The high part is just a zero.
6103 Hi = DAG.getConstant(0, NVT);
6104 break;
6105
6106 case ISD::TRUNCATE: {
6107 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006108 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006109 ExpandOp(Node->getOperand(0), NewLo, Hi);
6110
6111 // The low part is now either the right size, or it is closer. If not the
6112 // right size, make an illegal truncate so we recursively expand it.
6113 if (NewLo.getValueType() != Node->getValueType(0))
6114 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6115 ExpandOp(NewLo, Lo, Hi);
6116 break;
6117 }
6118
6119 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006120 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006121 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6122 // If the target wants to, allow it to lower this itself.
6123 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6124 case Expand: assert(0 && "cannot expand FP!");
6125 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6126 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6127 }
6128 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6129 }
6130
6131 // f32 / f64 must be expanded to i32 / i64.
6132 if (VT == MVT::f32 || VT == MVT::f64) {
6133 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6134 if (getTypeAction(NVT) == Expand)
6135 ExpandOp(Lo, Lo, Hi);
6136 break;
6137 }
6138
6139 // If source operand will be expanded to the same type as VT, i.e.
6140 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006141 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006142 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6143 ExpandOp(Node->getOperand(0), Lo, Hi);
6144 break;
6145 }
6146
6147 // Turn this into a load/store pair by default.
6148 if (Tmp.Val == 0)
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00006149 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006150
6151 ExpandOp(Tmp, Lo, Hi);
6152 break;
6153 }
6154
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006155 case ISD::READCYCLECOUNTER: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006156 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6157 TargetLowering::Custom &&
6158 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006159 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006160 assert(Tmp.Val && "Node must be custom expanded!");
6161 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006162 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006163 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006164 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006165 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006166
Dale Johannesenbc187662008-08-28 02:44:49 +00006167 // FIXME: should the LOAD_BIN and SWAP atomics get here too? Probably.
6168 case ISD::ATOMIC_CMP_SWAP_8:
6169 case ISD::ATOMIC_CMP_SWAP_16:
6170 case ISD::ATOMIC_CMP_SWAP_32:
6171 case ISD::ATOMIC_CMP_SWAP_64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006172 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Andrew Lenharth81580822008-03-05 01:15:49 +00006173 assert(Tmp.Val && "Node must be custom expanded!");
6174 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006175 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Andrew Lenharth81580822008-03-05 01:15:49 +00006176 LegalizeOp(Tmp.getValue(1)));
6177 break;
6178 }
6179
6180
6181
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006182 // These operators cannot be expanded directly, emit them as calls to
6183 // library functions.
6184 case ISD::FP_TO_SINT: {
6185 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006186 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006187 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6188 case Expand: assert(0 && "cannot expand FP!");
6189 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6190 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6191 }
6192
6193 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6194
6195 // Now that the custom expander is done, expand the result, which is still
6196 // VT.
6197 if (Op.Val) {
6198 ExpandOp(Op, Lo, Hi);
6199 break;
6200 }
6201 }
6202
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006203 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6204 VT);
6205 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6206 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006207 break;
6208 }
6209
6210 case ISD::FP_TO_UINT: {
6211 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006212 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006213 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6214 case Expand: assert(0 && "cannot expand FP!");
6215 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6216 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6217 }
6218
6219 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6220
6221 // Now that the custom expander is done, expand the result.
6222 if (Op.Val) {
6223 ExpandOp(Op, Lo, Hi);
6224 break;
6225 }
6226 }
6227
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006228 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6229 VT);
6230 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6231 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006232 break;
6233 }
6234
6235 case ISD::SHL: {
6236 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006237 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006238 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006239 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006240 Op = TLI.LowerOperation(Op, DAG);
6241 if (Op.Val) {
6242 // Now that the custom expander is done, expand the result, which is
6243 // still VT.
6244 ExpandOp(Op, Lo, Hi);
6245 break;
6246 }
6247 }
6248
6249 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6250 // this X << 1 as X+X.
6251 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00006252 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006253 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006254 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006255 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6256 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6257 LoOps[1] = LoOps[0];
6258 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6259
6260 HiOps[1] = HiOps[0];
6261 HiOps[2] = Lo.getValue(1);
6262 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6263 break;
6264 }
6265 }
6266
6267 // If we can emit an efficient shift operation, do so now.
6268 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6269 break;
6270
6271 // If this target supports SHL_PARTS, use it.
6272 TargetLowering::LegalizeAction Action =
6273 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6274 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6275 Action == TargetLowering::Custom) {
6276 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6277 break;
6278 }
6279
6280 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006281 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006282 break;
6283 }
6284
6285 case ISD::SRA: {
6286 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006287 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006288 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006289 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006290 Op = TLI.LowerOperation(Op, DAG);
6291 if (Op.Val) {
6292 // Now that the custom expander is done, expand the result, which is
6293 // still VT.
6294 ExpandOp(Op, Lo, Hi);
6295 break;
6296 }
6297 }
6298
6299 // If we can emit an efficient shift operation, do so now.
6300 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
6301 break;
6302
6303 // If this target supports SRA_PARTS, use it.
6304 TargetLowering::LegalizeAction Action =
6305 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6306 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6307 Action == TargetLowering::Custom) {
6308 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6309 break;
6310 }
6311
6312 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006313 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006314 break;
6315 }
6316
6317 case ISD::SRL: {
6318 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006319 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006320 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006321 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006322 Op = TLI.LowerOperation(Op, DAG);
6323 if (Op.Val) {
6324 // Now that the custom expander is done, expand the result, which is
6325 // still VT.
6326 ExpandOp(Op, Lo, Hi);
6327 break;
6328 }
6329 }
6330
6331 // If we can emit an efficient shift operation, do so now.
6332 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6333 break;
6334
6335 // If this target supports SRL_PARTS, use it.
6336 TargetLowering::LegalizeAction Action =
6337 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6338 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6339 Action == TargetLowering::Custom) {
6340 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6341 break;
6342 }
6343
6344 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006345 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006346 break;
6347 }
6348
6349 case ISD::ADD:
6350 case ISD::SUB: {
6351 // If the target wants to custom expand this, let them.
6352 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6353 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006354 SDValue Result = TLI.LowerOperation(Op, DAG);
Duncan Sands4c3885b2008-06-22 09:42:16 +00006355 if (Result.Val) {
6356 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006357 break;
6358 }
6359 }
6360
6361 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006362 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006363 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6364 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6365 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006366 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006367 LoOps[0] = LHSL;
6368 LoOps[1] = RHSL;
6369 HiOps[0] = LHSH;
6370 HiOps[1] = RHSH;
6371 if (Node->getOpcode() == ISD::ADD) {
6372 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6373 HiOps[2] = Lo.getValue(1);
6374 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6375 } else {
6376 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6377 HiOps[2] = Lo.getValue(1);
6378 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6379 }
6380 break;
6381 }
6382
6383 case ISD::ADDC:
6384 case ISD::SUBC: {
6385 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006386 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006387 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6388 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6389 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006390 SDValue LoOps[2] = { LHSL, RHSL };
6391 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006392
6393 if (Node->getOpcode() == ISD::ADDC) {
6394 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6395 HiOps[2] = Lo.getValue(1);
6396 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6397 } else {
6398 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6399 HiOps[2] = Lo.getValue(1);
6400 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6401 }
6402 // Remember that we legalized the flag.
6403 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6404 break;
6405 }
6406 case ISD::ADDE:
6407 case ISD::SUBE: {
6408 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006409 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006410 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6411 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6412 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006413 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6414 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006415
6416 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6417 HiOps[2] = Lo.getValue(1);
6418 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6419
6420 // Remember that we legalized the flag.
6421 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6422 break;
6423 }
6424 case ISD::MUL: {
6425 // If the target wants to custom expand this, let them.
6426 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006427 SDValue New = TLI.LowerOperation(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006428 if (New.Val) {
6429 ExpandOp(New, Lo, Hi);
6430 break;
6431 }
6432 }
6433
6434 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6435 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00006436 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6437 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6438 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006439 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006440 ExpandOp(Node->getOperand(0), LL, LH);
6441 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00006442 unsigned OuterBitSize = Op.getValueSizeInBits();
6443 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00006444 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6445 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00006446 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6447 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6448 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00006449 // The inputs are both zero-extended.
6450 if (HasUMUL_LOHI) {
6451 // We can emit a umul_lohi.
6452 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Dan Gohman8181bd12008-07-27 21:46:04 +00006453 Hi = SDValue(Lo.Val, 1);
Dan Gohman5a199552007-10-08 18:33:35 +00006454 break;
6455 }
6456 if (HasMULHU) {
6457 // We can emit a mulhu+mul.
6458 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6459 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6460 break;
6461 }
Dan Gohman5a199552007-10-08 18:33:35 +00006462 }
Dan Gohman07961cd2008-02-25 21:11:39 +00006463 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00006464 // The input values are both sign-extended.
6465 if (HasSMUL_LOHI) {
6466 // We can emit a smul_lohi.
6467 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Dan Gohman8181bd12008-07-27 21:46:04 +00006468 Hi = SDValue(Lo.Val, 1);
Dan Gohman5a199552007-10-08 18:33:35 +00006469 break;
6470 }
6471 if (HasMULHS) {
6472 // We can emit a mulhs+mul.
6473 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6474 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6475 break;
6476 }
6477 }
6478 if (HasUMUL_LOHI) {
6479 // Lo,Hi = umul LHS, RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00006480 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman5a199552007-10-08 18:33:35 +00006481 DAG.getVTList(NVT, NVT), LL, RL);
6482 Lo = UMulLOHI;
6483 Hi = UMulLOHI.getValue(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006484 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6485 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6486 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6487 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6488 break;
6489 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00006490 if (HasMULHU) {
6491 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6492 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6493 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6494 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6495 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6496 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6497 break;
6498 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006499 }
6500
Dan Gohman5a199552007-10-08 18:33:35 +00006501 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006502 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006503 break;
6504 }
6505 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006506 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006507 break;
6508 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006509 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006510 break;
6511 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006512 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006513 break;
6514 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006515 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006516 break;
6517
6518 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006519 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6520 RTLIB::ADD_F64,
6521 RTLIB::ADD_F80,
6522 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006523 Node, false, Hi);
6524 break;
6525 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006526 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6527 RTLIB::SUB_F64,
6528 RTLIB::SUB_F80,
6529 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006530 Node, false, Hi);
6531 break;
6532 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006533 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6534 RTLIB::MUL_F64,
6535 RTLIB::MUL_F80,
6536 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006537 Node, false, Hi);
6538 break;
6539 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006540 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6541 RTLIB::DIV_F64,
6542 RTLIB::DIV_F80,
6543 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006544 Node, false, Hi);
6545 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006546 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00006547 if (VT == MVT::ppcf128) {
6548 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6549 Node->getOperand(0).getValueType()==MVT::f64);
6550 const uint64_t zero = 0;
6551 if (Node->getOperand(0).getValueType()==MVT::f32)
6552 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6553 else
6554 Hi = Node->getOperand(0);
6555 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6556 break;
6557 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006558 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6559 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6560 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006561 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006562 }
6563 case ISD::FP_ROUND: {
6564 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6565 VT);
6566 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6567 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006568 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006569 }
Lauro Ramos Venancioccd0d7b2007-08-15 22:13:27 +00006570 case ISD::FPOWI:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006571 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6572 RTLIB::POWI_F64,
6573 RTLIB::POWI_F80,
6574 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioccd0d7b2007-08-15 22:13:27 +00006575 Node, false, Hi);
6576 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00006577 case ISD::FTRUNC:
6578 case ISD::FFLOOR:
6579 case ISD::FCEIL:
6580 case ISD::FRINT:
6581 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006582 case ISD::FSQRT:
6583 case ISD::FSIN:
6584 case ISD::FCOS: {
6585 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
6586 switch(Node->getOpcode()) {
6587 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00006588 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6589 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006590 break;
6591 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00006592 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6593 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006594 break;
6595 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00006596 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6597 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006598 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00006599 case ISD::FTRUNC:
6600 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6601 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6602 break;
6603 case ISD::FFLOOR:
6604 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6605 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6606 break;
6607 case ISD::FCEIL:
6608 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6609 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6610 break;
6611 case ISD::FRINT:
6612 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6613 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6614 break;
6615 case ISD::FNEARBYINT:
6616 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6617 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6618 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006619 default: assert(0 && "Unreachable!");
6620 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006621 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006622 break;
6623 }
6624 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00006625 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006626 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00006627 ExpandOp(Node->getOperand(0), Lo, Tmp);
6628 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6629 // lo = hi==fabs(hi) ? lo : -lo;
6630 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6631 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6632 DAG.getCondCode(ISD::SETEQ));
6633 break;
6634 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006635 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006636 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6637 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6638 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6639 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6640 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6641 if (getTypeAction(NVT) == Expand)
6642 ExpandOp(Lo, Lo, Hi);
6643 break;
6644 }
6645 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00006646 if (VT == MVT::ppcf128) {
6647 ExpandOp(Node->getOperand(0), Lo, Hi);
6648 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6649 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6650 break;
6651 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006652 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006653 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6654 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6655 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6656 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6657 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6658 if (getTypeAction(NVT) == Expand)
6659 ExpandOp(Lo, Lo, Hi);
6660 break;
6661 }
6662 case ISD::FCOPYSIGN: {
6663 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6664 if (getTypeAction(NVT) == Expand)
6665 ExpandOp(Lo, Lo, Hi);
6666 break;
6667 }
6668 case ISD::SINT_TO_FP:
6669 case ISD::UINT_TO_FP: {
6670 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00006671 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00006672
6673 // Promote the operand if needed. Do this before checking for
6674 // ppcf128 so conversions of i16 and i8 work.
6675 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006676 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00006677 Tmp = isSigned
6678 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6679 DAG.getValueType(SrcVT))
6680 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6681 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6682 SrcVT = Node->getOperand(0).getValueType();
6683 }
6684
Dan Gohmanec51f642008-03-10 23:03:31 +00006685 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00006686 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00006687 if (isSigned) {
6688 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6689 Node->getOperand(0)));
6690 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6691 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00006692 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesen4c14d512007-10-12 01:37:08 +00006693 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6694 Node->getOperand(0)));
6695 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6696 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006697 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen4c14d512007-10-12 01:37:08 +00006698 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6699 DAG.getConstant(0, MVT::i32),
6700 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6701 DAG.getConstantFP(
6702 APFloat(APInt(128, 2, TwoE32)),
6703 MVT::ppcf128)),
6704 Hi,
6705 DAG.getCondCode(ISD::SETLT)),
6706 Lo, Hi);
6707 }
6708 break;
6709 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006710 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6711 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00006712 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006713 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6714 Lo, Hi);
6715 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6716 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6717 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6718 DAG.getConstant(0, MVT::i64),
6719 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6720 DAG.getConstantFP(
6721 APFloat(APInt(128, 2, TwoE64)),
6722 MVT::ppcf128)),
6723 Hi,
6724 DAG.getCondCode(ISD::SETLT)),
6725 Lo, Hi);
6726 break;
6727 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006728
Dan Gohmanec51f642008-03-10 23:03:31 +00006729 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6730 Node->getOperand(0));
Evan Chenga8740032008-04-01 01:50:16 +00006731 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00006732 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00006733 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006734 break;
6735 }
6736 }
6737
6738 // Make sure the resultant values have been legalized themselves, unless this
6739 // is a type that requires multi-step expansion.
6740 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6741 Lo = LegalizeOp(Lo);
6742 if (Hi.Val)
6743 // Don't legalize the high part if it is expanded to a single node.
6744 Hi = LegalizeOp(Hi);
6745 }
6746
6747 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00006748 bool isNew =
6749 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006750 assert(isNew && "Value already expanded?!?");
6751}
6752
6753/// SplitVectorOp - Given an operand of vector type, break it down into
6754/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00006755void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6756 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00006757 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006758 SDNode *Node = Op.Val;
Duncan Sands92c43912008-06-06 12:08:01 +00006759 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006760 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00006761
Duncan Sands92c43912008-06-06 12:08:01 +00006762 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00006763
6764 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6765 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6766
Duncan Sands92c43912008-06-06 12:08:01 +00006767 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6768 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006769
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006770 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006771 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006772 = SplitNodes.find(Op);
6773 if (I != SplitNodes.end()) {
6774 Lo = I->second.first;
6775 Hi = I->second.second;
6776 return;
6777 }
6778
6779 switch (Node->getOpcode()) {
6780 default:
6781#ifndef NDEBUG
6782 Node->dump(&DAG);
6783#endif
6784 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00006785 case ISD::UNDEF:
6786 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6787 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6788 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006789 case ISD::BUILD_PAIR:
6790 Lo = Node->getOperand(0);
6791 Hi = Node->getOperand(1);
6792 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00006793 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006794 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6795 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6796 unsigned Index = Idx->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006797 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006798 if (Index < NewNumElts_Lo)
6799 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6800 DAG.getIntPtrConstant(Index));
6801 else
6802 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6803 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6804 break;
6805 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006806 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006807 Node->getOperand(1),
6808 Node->getOperand(2));
6809 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00006810 break;
6811 }
Chris Lattner587c46d2007-11-19 21:16:54 +00006812 case ISD::VECTOR_SHUFFLE: {
6813 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00006814 SDValue Mask = Node->getOperand(2);
6815 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00006816 MVT PtrVT = TLI.getPointerTy();
Chris Lattner587c46d2007-11-19 21:16:54 +00006817
6818 // Insert all of the elements from the input that are needed. We use
6819 // buildvector of extractelement here because the input vectors will have
6820 // to be legalized, so this makes the code simpler.
6821 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006822 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00006823 if (IdxNode.getOpcode() == ISD::UNDEF) {
6824 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6825 continue;
6826 }
6827 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006828 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00006829 if (Idx >= NumElements) {
6830 InVec = Node->getOperand(1);
6831 Idx -= NumElements;
6832 }
6833 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6834 DAG.getConstant(Idx, PtrVT)));
6835 }
6836 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6837 Ops.clear();
6838
6839 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006840 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00006841 if (IdxNode.getOpcode() == ISD::UNDEF) {
6842 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6843 continue;
6844 }
6845 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006846 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00006847 if (Idx >= NumElements) {
6848 InVec = Node->getOperand(1);
6849 Idx -= NumElements;
6850 }
6851 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6852 DAG.getConstant(Idx, PtrVT)));
6853 }
Mon P Wang2e89b112008-07-25 01:30:26 +00006854 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00006855 break;
6856 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006857 case ISD::BUILD_VECTOR: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006858 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman4a365ad2007-11-15 21:15:26 +00006859 Node->op_begin()+NewNumElts_Lo);
6860 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006861
Dan Gohman8181bd12008-07-27 21:46:04 +00006862 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006863 Node->op_end());
Nate Begeman4a365ad2007-11-15 21:15:26 +00006864 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006865 break;
6866 }
6867 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00006868 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006869 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6870 if (NewNumSubvectors == 1) {
6871 Lo = Node->getOperand(0);
6872 Hi = Node->getOperand(1);
6873 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00006874 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006875 Node->op_begin()+NewNumSubvectors);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006876 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006877
Dan Gohman8181bd12008-07-27 21:46:04 +00006878 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006879 Node->op_end());
Nate Begeman4a365ad2007-11-15 21:15:26 +00006880 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006881 }
6882 break;
6883 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00006884 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006885 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00006886
Dan Gohman8181bd12008-07-27 21:46:04 +00006887 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00006888 SplitVectorOp(Node->getOperand(1), LL, LH);
6889 SplitVectorOp(Node->getOperand(2), RL, RH);
6890
Duncan Sands92c43912008-06-06 12:08:01 +00006891 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00006892 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00006893 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00006894 SplitVectorOp(Cond, CL, CH);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006895 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6896 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00006897 } else {
6898 // Handle a simple select with vector operands.
Nate Begeman4a365ad2007-11-15 21:15:26 +00006899 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6900 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00006901 }
6902 break;
6903 }
Chris Lattnerc7471452008-06-30 02:43:01 +00006904 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006905 SDValue CondLHS = Node->getOperand(0);
6906 SDValue CondRHS = Node->getOperand(1);
6907 SDValue CondCode = Node->getOperand(4);
Chris Lattnerc7471452008-06-30 02:43:01 +00006908
Dan Gohman8181bd12008-07-27 21:46:04 +00006909 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00006910 SplitVectorOp(Node->getOperand(2), LL, LH);
6911 SplitVectorOp(Node->getOperand(3), RL, RH);
6912
6913 // Handle a simple select with vector operands.
6914 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6915 LL, RL, CondCode);
6916 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6917 LH, RH, CondCode);
6918 break;
6919 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00006920 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006921 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00006922 SplitVectorOp(Node->getOperand(0), LL, LH);
6923 SplitVectorOp(Node->getOperand(1), RL, RH);
6924 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6925 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6926 break;
6927 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006928 case ISD::ADD:
6929 case ISD::SUB:
6930 case ISD::MUL:
6931 case ISD::FADD:
6932 case ISD::FSUB:
6933 case ISD::FMUL:
6934 case ISD::SDIV:
6935 case ISD::UDIV:
6936 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00006937 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006938 case ISD::AND:
6939 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00006940 case ISD::XOR:
6941 case ISD::UREM:
6942 case ISD::SREM:
6943 case ISD::FREM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006944 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006945 SplitVectorOp(Node->getOperand(0), LL, LH);
6946 SplitVectorOp(Node->getOperand(1), RL, RH);
6947
Nate Begeman4a365ad2007-11-15 21:15:26 +00006948 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6949 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006950 break;
6951 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00006952 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00006953 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006954 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00006955 SplitVectorOp(Node->getOperand(0), L, H);
6956
Nate Begeman4a365ad2007-11-15 21:15:26 +00006957 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6958 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00006959 break;
6960 }
6961 case ISD::CTTZ:
6962 case ISD::CTLZ:
6963 case ISD::CTPOP:
6964 case ISD::FNEG:
6965 case ISD::FABS:
6966 case ISD::FSQRT:
6967 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00006968 case ISD::FCOS:
6969 case ISD::FP_TO_SINT:
6970 case ISD::FP_TO_UINT:
6971 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00006972 case ISD::UINT_TO_FP:
6973 case ISD::TRUNCATE:
6974 case ISD::ANY_EXTEND:
6975 case ISD::SIGN_EXTEND:
6976 case ISD::ZERO_EXTEND:
6977 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006978 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00006979 SplitVectorOp(Node->getOperand(0), L, H);
6980
Nate Begeman4a365ad2007-11-15 21:15:26 +00006981 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6982 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00006983 break;
6984 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006985 case ISD::LOAD: {
6986 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006987 SDValue Ch = LD->getChain();
6988 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006989 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006990 const Value *SV = LD->getSrcValue();
6991 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006992 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006993 unsigned Alignment = LD->getAlignment();
6994 bool isVolatile = LD->isVolatile();
6995
Dan Gohman29c3cef2008-08-14 20:04:46 +00006996 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
6997 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
6998
6999 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7000 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7001 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7002
7003 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7004 NewVT_Lo, Ch, Ptr, Offset,
7005 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7006 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007007 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007008 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007009 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007010 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman29c3cef2008-08-14 20:04:46 +00007011 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7012 NewVT_Hi, Ch, Ptr, Offset,
7013 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007014
7015 // Build a factor node to remember that this load is independent of the
7016 // other one.
Dan Gohman8181bd12008-07-27 21:46:04 +00007017 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007018 Hi.getValue(1));
7019
7020 // Remember that we legalized the chain.
7021 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7022 break;
7023 }
7024 case ISD::BIT_CONVERT: {
7025 // We know the result is a vector. The input may be either a vector or a
7026 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007027 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007028 if (!InOp.getValueType().isVector() ||
7029 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007030 // The input is a scalar or single-element vector.
7031 // Lower to a store/load so that it can be split.
7032 // FIXME: this could be improved probably.
Mon P Wang36b59ac2008-07-15 05:28:34 +00007033 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7034 Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007035 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007036 int FI = cast<FrameIndexSDNode>(Ptr.Val)->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007037
Dan Gohman8181bd12008-07-27 21:46:04 +00007038 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00007039 InOp, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007040 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman12a9c082008-02-06 22:27:42 +00007041 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007042 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007043 }
7044 // Split the vector and convert each of the pieces now.
7045 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007046 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7047 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007048 break;
7049 }
7050 }
7051
7052 // Remember in a map if the values will be reused later.
7053 bool isNew =
7054 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7055 assert(isNew && "Value already split?!?");
7056}
7057
7058
7059/// ScalarizeVectorOp - Given an operand of single-element vector type
7060/// (e.g. v1f32), convert it into the equivalent operation that returns a
7061/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007062SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007063 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007064 SDNode *Node = Op.Val;
Duncan Sands92c43912008-06-06 12:08:01 +00007065 MVT NewVT = Op.getValueType().getVectorElementType();
7066 assert(Op.getValueType().getVectorNumElements() == 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007067
7068 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007069 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007070 if (I != ScalarizedNodes.end()) return I->second;
7071
Dan Gohman8181bd12008-07-27 21:46:04 +00007072 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007073 switch (Node->getOpcode()) {
7074 default:
7075#ifndef NDEBUG
7076 Node->dump(&DAG); cerr << "\n";
7077#endif
7078 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7079 case ISD::ADD:
7080 case ISD::FADD:
7081 case ISD::SUB:
7082 case ISD::FSUB:
7083 case ISD::MUL:
7084 case ISD::FMUL:
7085 case ISD::SDIV:
7086 case ISD::UDIV:
7087 case ISD::FDIV:
7088 case ISD::SREM:
7089 case ISD::UREM:
7090 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007091 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007092 case ISD::AND:
7093 case ISD::OR:
7094 case ISD::XOR:
7095 Result = DAG.getNode(Node->getOpcode(),
7096 NewVT,
7097 ScalarizeVectorOp(Node->getOperand(0)),
7098 ScalarizeVectorOp(Node->getOperand(1)));
7099 break;
7100 case ISD::FNEG:
7101 case ISD::FABS:
7102 case ISD::FSQRT:
7103 case ISD::FSIN:
7104 case ISD::FCOS:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007105 case ISD::FP_TO_SINT:
7106 case ISD::FP_TO_UINT:
7107 case ISD::SINT_TO_FP:
7108 case ISD::UINT_TO_FP:
7109 case ISD::SIGN_EXTEND:
7110 case ISD::ZERO_EXTEND:
7111 case ISD::ANY_EXTEND:
7112 case ISD::TRUNCATE:
7113 case ISD::FP_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007114 Result = DAG.getNode(Node->getOpcode(),
7115 NewVT,
7116 ScalarizeVectorOp(Node->getOperand(0)));
7117 break;
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007118 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007119 case ISD::FP_ROUND:
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007120 Result = DAG.getNode(Node->getOpcode(),
7121 NewVT,
7122 ScalarizeVectorOp(Node->getOperand(0)),
7123 Node->getOperand(1));
7124 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007125 case ISD::LOAD: {
7126 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007127 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7128 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007129 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007130 const Value *SV = LD->getSrcValue();
7131 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007132 MVT MemoryVT = LD->getMemoryVT();
7133 unsigned Alignment = LD->getAlignment();
7134 bool isVolatile = LD->isVolatile();
7135
7136 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7137 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7138
7139 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7140 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7141 MemoryVT.getVectorElementType(),
7142 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007143
7144 // Remember that we legalized the chain.
7145 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7146 break;
7147 }
7148 case ISD::BUILD_VECTOR:
7149 Result = Node->getOperand(0);
7150 break;
7151 case ISD::INSERT_VECTOR_ELT:
7152 // Returning the inserted scalar element.
7153 Result = Node->getOperand(1);
7154 break;
7155 case ISD::CONCAT_VECTORS:
7156 assert(Node->getOperand(0).getValueType() == NewVT &&
7157 "Concat of non-legal vectors not yet supported!");
7158 Result = Node->getOperand(0);
7159 break;
7160 case ISD::VECTOR_SHUFFLE: {
7161 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007162 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007163 if (cast<ConstantSDNode>(EltNum)->getValue())
7164 Result = ScalarizeVectorOp(Node->getOperand(1));
7165 else
7166 Result = ScalarizeVectorOp(Node->getOperand(0));
7167 break;
7168 }
7169 case ISD::EXTRACT_SUBVECTOR:
7170 Result = Node->getOperand(0);
7171 assert(Result.getValueType() == NewVT);
7172 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007173 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007174 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007175 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007176 Op0 = ScalarizeVectorOp(Op0);
7177 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007178 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007179 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007180 case ISD::SELECT:
7181 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
7182 ScalarizeVectorOp(Op.getOperand(1)),
7183 ScalarizeVectorOp(Op.getOperand(2)));
7184 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007185 case ISD::SELECT_CC:
7186 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7187 Node->getOperand(1),
7188 ScalarizeVectorOp(Op.getOperand(2)),
7189 ScalarizeVectorOp(Op.getOperand(3)),
7190 Node->getOperand(4));
7191 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007192 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007193 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7194 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman78ca4f92008-05-12 23:09:43 +00007195 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7196 Op.getOperand(2));
7197 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7198 DAG.getConstant(-1ULL, NewVT),
7199 DAG.getConstant(0ULL, NewVT));
7200 break;
7201 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007202 }
7203
7204 if (TLI.isTypeLegal(NewVT))
7205 Result = LegalizeOp(Result);
7206 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7207 assert(isNew && "Value already scalarized?");
7208 return Result;
7209}
7210
7211
7212// SelectionDAG::Legalize - This is the entry point for the file.
7213//
7214void SelectionDAG::Legalize() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007215 /// run - This is the main entry point to this class.
7216 ///
7217 SelectionDAGLegalize(*this).LegalizeDAG();
7218}
7219