0573b6dd3563e933310faf6496411e40ee502e73
[oota-llvm.git] / lib / CodeGen / SelectionDAG / LegalizeTypes.cpp
1 //===-- LegalizeTypes.cpp - Common code for DAG type legalizer ------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the SelectionDAG::LegalizeTypes method.  It transforms
11 // an arbitrary well-formed SelectionDAG to only consist of legal types.  This
12 // is common code shared among the LegalizeTypes*.cpp files.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "LegalizeTypes.h"
17 #include "llvm/CallingConv.h"
18 #include "llvm/Support/CommandLine.h"
19 #include "llvm/Target/TargetData.h"
20 using namespace llvm;
21
22 /// run - This is the main entry point for the type legalizer.  This does a
23 /// top-down traversal of the dag, legalizing types as it goes.  Returns "true"
24 /// if it made any changes.
25 bool DAGTypeLegalizer::run() {
26   bool Changed = false;
27
28   // Create a dummy node (which is not added to allnodes), that adds a reference
29   // to the root node, preventing it from being deleted, and tracking any
30   // changes of the root.
31   HandleSDNode Dummy(DAG.getRoot());
32
33   // The root of the dag may dangle to deleted nodes until the type legalizer is
34   // done.  Set it to null to avoid confusion.
35   DAG.setRoot(SDValue());
36
37   // Walk all nodes in the graph, assigning them a NodeId of 'ReadyToProcess'
38   // (and remembering them) if they are leaves and assigning 'NewNode' if
39   // non-leaves.
40   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
41        E = DAG.allnodes_end(); I != E; ++I) {
42     if (I->getNumOperands() == 0) {
43       I->setNodeId(ReadyToProcess);
44       Worklist.push_back(I);
45     } else {
46       I->setNodeId(NewNode);
47     }
48   }
49
50   // Now that we have a set of nodes to process, handle them all.
51   while (!Worklist.empty()) {
52     SDNode *N = Worklist.back();
53     Worklist.pop_back();
54     assert(N->getNodeId() == ReadyToProcess &&
55            "Node should be ready if on worklist!");
56
57     if (IgnoreNodeResults(N))
58       goto ScanOperands;
59
60     // Scan the values produced by the node, checking to see if any result
61     // types are illegal.
62     for (unsigned i = 0, NumResults = N->getNumValues(); i < NumResults; ++i) {
63       MVT ResultVT = N->getValueType(i);
64       switch (getTypeAction(ResultVT)) {
65       default:
66         assert(false && "Unknown action!");
67       case Legal:
68         break;
69       case PromoteInteger:
70         PromoteIntegerResult(N, i);
71         Changed = true;
72         goto NodeDone;
73       case ExpandInteger:
74         ExpandIntegerResult(N, i);
75         Changed = true;
76         goto NodeDone;
77       case SoftenFloat:
78         SoftenFloatResult(N, i);
79         Changed = true;
80         goto NodeDone;
81       case ExpandFloat:
82         ExpandFloatResult(N, i);
83         Changed = true;
84         goto NodeDone;
85       case ScalarizeVector:
86         ScalarizeVectorResult(N, i);
87         Changed = true;
88         goto NodeDone;
89       case SplitVector:
90         SplitVectorResult(N, i);
91         Changed = true;
92         goto NodeDone;
93       }
94     }
95
96 ScanOperands:
97     // Scan the operand list for the node, handling any nodes with operands that
98     // are illegal.
99     {
100     unsigned NumOperands = N->getNumOperands();
101     bool NeedsRevisit = false;
102     unsigned i;
103     for (i = 0; i != NumOperands; ++i) {
104       if (IgnoreNodeResults(N->getOperand(i).getNode()))
105         continue;
106
107       MVT OpVT = N->getOperand(i).getValueType();
108       switch (getTypeAction(OpVT)) {
109       default:
110         assert(false && "Unknown action!");
111       case Legal:
112         continue;
113       case PromoteInteger:
114         NeedsRevisit = PromoteIntegerOperand(N, i);
115         Changed = true;
116         break;
117       case ExpandInteger:
118         NeedsRevisit = ExpandIntegerOperand(N, i);
119         Changed = true;
120         break;
121       case SoftenFloat:
122         NeedsRevisit = SoftenFloatOperand(N, i);
123         Changed = true;
124         break;
125       case ExpandFloat:
126         NeedsRevisit = ExpandFloatOperand(N, i);
127         Changed = true;
128         break;
129       case ScalarizeVector:
130         NeedsRevisit = ScalarizeVectorOperand(N, i);
131         Changed = true;
132         break;
133       case SplitVector:
134         NeedsRevisit = SplitVectorOperand(N, i);
135         Changed = true;
136         break;
137       }
138       break;
139     }
140
141     // If the node needs revisiting, don't add all users to the worklist etc.
142     if (NeedsRevisit)
143       continue;
144
145     if (i == NumOperands) {
146       DEBUG(cerr << "Legally typed node: "; N->dump(&DAG); cerr << "\n");
147     }
148     }
149 NodeDone:
150
151     // If we reach here, the node was processed, potentially creating new nodes.
152     // Mark it as processed and add its users to the worklist as appropriate.
153     N->setNodeId(Processed);
154
155     for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
156          UI != E; ++UI) {
157       SDNode *User = *UI;
158       int NodeId = User->getNodeId();
159       assert(NodeId != ReadyToProcess && NodeId != Processed &&
160              "Invalid node id for user of unprocessed node!");
161
162       // This node has two options: it can either be a new node or its Node ID
163       // may be a count of the number of operands it has that are not ready.
164       if (NodeId > 0) {
165         User->setNodeId(NodeId-1);
166
167         // If this was the last use it was waiting on, add it to the ready list.
168         if (NodeId-1 == ReadyToProcess)
169           Worklist.push_back(User);
170         continue;
171       }
172
173       // Otherwise, this node is new: this is the first operand of it that
174       // became ready.  Its new NodeId is the number of operands it has minus 1
175       // (as this node is now processed).
176       assert(NodeId == NewNode && "Unknown node ID!");
177       User->setNodeId(User->getNumOperands()-1);
178
179       // If the node only has a single operand, it is now ready.
180       if (User->getNumOperands() == 1)
181         Worklist.push_back(User);
182     }
183   }
184
185   // If the root changed (e.g. it was a dead load, update the root).
186   DAG.setRoot(Dummy.getValue());
187
188   //DAG.viewGraph();
189
190   // Remove dead nodes.  This is important to do for cleanliness but also before
191   // the checking loop below.  Implicit folding by the DAG.getNode operators can
192   // cause unreachable nodes to be around with their flags set to new.
193   DAG.RemoveDeadNodes();
194
195   // In a debug build, scan all the nodes to make sure we found them all.  This
196   // ensures that there are no cycles and that everything got processed.
197 #ifndef NDEBUG
198   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
199        E = DAG.allnodes_end(); I != E; ++I) {
200     bool Failed = false;
201
202     // Check that all result types are legal.
203     if (!IgnoreNodeResults(I))
204       for (unsigned i = 0, NumVals = I->getNumValues(); i < NumVals; ++i)
205         if (!isTypeLegal(I->getValueType(i))) {
206           cerr << "Result type " << i << " illegal!\n";
207           Failed = true;
208         }
209
210     // Check that all operand types are legal.
211     for (unsigned i = 0, NumOps = I->getNumOperands(); i < NumOps; ++i)
212       if (!IgnoreNodeResults(I->getOperand(i).getNode()) &&
213           !isTypeLegal(I->getOperand(i).getValueType())) {
214         cerr << "Operand type " << i << " illegal!\n";
215         Failed = true;
216       }
217
218     if (I->getNodeId() != Processed) {
219        if (I->getNodeId() == NewNode)
220          cerr << "New node not 'noticed'?\n";
221        else if (I->getNodeId() > 0)
222          cerr << "Operand not processed?\n";
223        else if (I->getNodeId() == ReadyToProcess)
224          cerr << "Not added to worklist?\n";
225        Failed = true;
226     }
227
228     if (Failed) {
229       I->dump(&DAG); cerr << "\n";
230       abort();
231     }
232   }
233 #endif
234
235   return Changed;
236 }
237
238 /// AnalyzeNewNode - The specified node is the root of a subtree of potentially
239 /// new nodes.  Correct any processed operands (this may change the node) and
240 /// calculate the NodeId.  If the node itself changes to a processed node, it
241 /// is not remapped - the caller needs to take care of this.
242 /// Returns the potentially changed node.
243 SDNode *DAGTypeLegalizer::AnalyzeNewNode(SDNode *N) {
244   // If this was an existing node that is already done, we're done.
245   if (N->getNodeId() != NewNode)
246     return N;
247
248   // Remove any stale map entries.
249   ExpungeNode(N);
250
251   // Okay, we know that this node is new.  Recursively walk all of its operands
252   // to see if they are new also.  The depth of this walk is bounded by the size
253   // of the new tree that was constructed (usually 2-3 nodes), so we don't worry
254   // about revisiting of nodes.
255   //
256   // As we walk the operands, keep track of the number of nodes that are
257   // processed.  If non-zero, this will become the new nodeid of this node.
258   // Already processed operands may need to be remapped to the node that
259   // replaced them, which can result in our node changing.  Since remapping
260   // is rare, the code tries to minimize overhead in the non-remapping case.
261
262   SmallVector<SDValue, 8> NewOps;
263   unsigned NumProcessed = 0;
264   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
265     SDValue OrigOp = N->getOperand(i);
266     SDValue Op = OrigOp;
267
268     if (Op.getNode()->getNodeId() == Processed)
269       RemapValue(Op);
270     else if (Op.getNode()->getNodeId() == NewNode)
271       AnalyzeNewValue(Op);
272
273     if (Op.getNode()->getNodeId() == Processed)
274       ++NumProcessed;
275
276     if (!NewOps.empty()) {
277       // Some previous operand changed.  Add this one to the list.
278       NewOps.push_back(Op);
279     } else if (Op != OrigOp) {
280       // This is the first operand to change - add all operands so far.
281       for (unsigned j = 0; j < i; ++j)
282         NewOps.push_back(N->getOperand(j));
283       NewOps.push_back(Op);
284     }
285   }
286
287   // Some operands changed - update the node.
288   if (!NewOps.empty()) {
289     SDNode *M = DAG.UpdateNodeOperands(SDValue(N, 0), &NewOps[0],
290                                        NewOps.size()).getNode();
291     if (M != N) {
292       if (M->getNodeId() != NewNode)
293         // It morphed into a previously analyzed node - nothing more to do.
294         return M;
295
296       // It morphed into a different new node.  Do the equivalent of passing
297       // it to AnalyzeNewNode: expunge it and calculate the NodeId.
298       N = M;
299       ExpungeNode(N);
300     }
301   }
302
303   // Calculate the NodeId.
304   N->setNodeId(N->getNumOperands()-NumProcessed);
305   if (N->getNodeId() == ReadyToProcess)
306     Worklist.push_back(N);
307
308   return N;
309 }
310
311 /// AnalyzeNewValue - Call AnalyzeNewNode, updating the node in Val if needed.
312 /// If the node changes to a processed node, then remap it.
313 void DAGTypeLegalizer::AnalyzeNewValue(SDValue &Val) {
314   SDNode *N(Val.getNode());
315   // If this was an existing node that is already done, avoid remapping it.
316   if (N->getNodeId() != NewNode)
317     return;
318   SDNode *M(AnalyzeNewNode(N));
319   if (M != N)
320     Val.setNode(M);
321   if (M->getNodeId() == Processed)
322     // It morphed into an already processed node - remap it.
323     RemapValue(Val);
324 }
325
326
327 namespace {
328   /// NodeUpdateListener - This class is a DAGUpdateListener that listens for
329   /// updates to nodes and recomputes their ready state.
330   class VISIBILITY_HIDDEN NodeUpdateListener :
331     public SelectionDAG::DAGUpdateListener {
332     DAGTypeLegalizer &DTL;
333   public:
334     explicit NodeUpdateListener(DAGTypeLegalizer &dtl) : DTL(dtl) {}
335
336     virtual void NodeDeleted(SDNode *N, SDNode *E) {
337       assert(N->getNodeId() != DAGTypeLegalizer::Processed &&
338              N->getNodeId() != DAGTypeLegalizer::ReadyToProcess &&
339              "RAUW deleted processed node!");
340       // It is possible, though rare, for the deleted node N to occur as a
341       // target in a map, so note the replacement N -> E in ReplacedValues.
342       assert(E && "Node not replaced?");
343       DTL.NoteDeletion(N, E);
344     }
345
346     virtual void NodeUpdated(SDNode *N) {
347       // Node updates can mean pretty much anything.  It is possible that an
348       // operand was set to something already processed (f.e.) in which case
349       // this node could become ready.  Recompute its flags.
350       assert(N->getNodeId() != DAGTypeLegalizer::Processed &&
351              N->getNodeId() != DAGTypeLegalizer::ReadyToProcess &&
352              "RAUW updated processed node!");
353       DTL.ReanalyzeNode(N);
354     }
355   };
356 }
357
358
359 /// ReplaceValueWith - The specified value was legalized to the specified other
360 /// value.  If they are different, update the DAG and NodeIds replacing any uses
361 /// of From to use To instead.
362 void DAGTypeLegalizer::ReplaceValueWith(SDValue From, SDValue To) {
363   if (From == To) return;
364
365   // If expansion produced new nodes, make sure they are properly marked.
366   ExpungeNode(From.getNode());
367   AnalyzeNewValue(To); // Expunges To.
368
369   // Anything that used the old node should now use the new one.  Note that this
370   // can potentially cause recursive merging.
371   NodeUpdateListener NUL(*this);
372   DAG.ReplaceAllUsesOfValueWith(From, To, &NUL);
373
374   // The old node may still be present in a map like ExpandedIntegers or
375   // PromotedIntegers.  Inform maps about the replacement.
376   ReplacedValues[From] = To;
377 }
378
379 /// RemapValue - If the specified value was already legalized to another value,
380 /// replace it by that value.
381 void DAGTypeLegalizer::RemapValue(SDValue &N) {
382   DenseMap<SDValue, SDValue>::iterator I = ReplacedValues.find(N);
383   if (I != ReplacedValues.end()) {
384     // Use path compression to speed up future lookups if values get multiply
385     // replaced with other values.
386     RemapValue(I->second);
387     N = I->second;
388   }
389 }
390
391 /// ExpungeNode - If N has a bogus mapping in ReplacedValues, eliminate it.
392 /// This can occur when a node is deleted then reallocated as a new node -
393 /// the mapping in ReplacedValues applies to the deleted node, not the new
394 /// one.
395 /// The only map that can have a deleted node as a source is ReplacedValues.
396 /// Other maps can have deleted nodes as targets, but since their looked-up
397 /// values are always immediately remapped using RemapValue, resulting in a
398 /// not-deleted node, this is harmless as long as ReplacedValues/RemapValue
399 /// always performs correct mappings.  In order to keep the mapping correct,
400 /// ExpungeNode should be called on any new nodes *before* adding them as
401 /// either source or target to ReplacedValues (which typically means calling
402 /// Expunge when a new node is first seen, since it may no longer be marked
403 /// NewNode by the time it is added to ReplacedValues).
404 void DAGTypeLegalizer::ExpungeNode(SDNode *N) {
405   if (N->getNodeId() != NewNode)
406     return;
407
408   // If N is not remapped by ReplacedValues then there is nothing to do.
409   unsigned i, e;
410   for (i = 0, e = N->getNumValues(); i != e; ++i)
411     if (ReplacedValues.find(SDValue(N, i)) != ReplacedValues.end())
412       break;
413
414   if (i == e)
415     return;
416
417   // Remove N from all maps - this is expensive but rare.
418
419   for (DenseMap<SDValue, SDValue>::iterator I = PromotedIntegers.begin(),
420        E = PromotedIntegers.end(); I != E; ++I) {
421     assert(I->first.getNode() != N);
422     RemapValue(I->second);
423   }
424
425   for (DenseMap<SDValue, SDValue>::iterator I = SoftenedFloats.begin(),
426        E = SoftenedFloats.end(); I != E; ++I) {
427     assert(I->first.getNode() != N);
428     RemapValue(I->second);
429   }
430
431   for (DenseMap<SDValue, SDValue>::iterator I = ScalarizedVectors.begin(),
432        E = ScalarizedVectors.end(); I != E; ++I) {
433     assert(I->first.getNode() != N);
434     RemapValue(I->second);
435   }
436
437   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
438        I = ExpandedIntegers.begin(), E = ExpandedIntegers.end(); I != E; ++I){
439     assert(I->first.getNode() != N);
440     RemapValue(I->second.first);
441     RemapValue(I->second.second);
442   }
443
444   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
445        I = ExpandedFloats.begin(), E = ExpandedFloats.end(); I != E; ++I) {
446     assert(I->first.getNode() != N);
447     RemapValue(I->second.first);
448     RemapValue(I->second.second);
449   }
450
451   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
452        I = SplitVectors.begin(), E = SplitVectors.end(); I != E; ++I) {
453     assert(I->first.getNode() != N);
454     RemapValue(I->second.first);
455     RemapValue(I->second.second);
456   }
457
458   for (DenseMap<SDValue, SDValue>::iterator I = ReplacedValues.begin(),
459        E = ReplacedValues.end(); I != E; ++I)
460     RemapValue(I->second);
461
462   for (unsigned i = 0, e = N->getNumValues(); i != e; ++i)
463     ReplacedValues.erase(SDValue(N, i));
464 }
465
466 void DAGTypeLegalizer::SetPromotedInteger(SDValue Op, SDValue Result) {
467   AnalyzeNewValue(Result);
468
469   SDValue &OpEntry = PromotedIntegers[Op];
470   assert(OpEntry.getNode() == 0 && "Node is already promoted!");
471   OpEntry = Result;
472 }
473
474 void DAGTypeLegalizer::SetSoftenedFloat(SDValue Op, SDValue Result) {
475   AnalyzeNewValue(Result);
476
477   SDValue &OpEntry = SoftenedFloats[Op];
478   assert(OpEntry.getNode() == 0 && "Node is already converted to integer!");
479   OpEntry = Result;
480 }
481
482 void DAGTypeLegalizer::SetScalarizedVector(SDValue Op, SDValue Result) {
483   AnalyzeNewValue(Result);
484
485   SDValue &OpEntry = ScalarizedVectors[Op];
486   assert(OpEntry.getNode() == 0 && "Node is already scalarized!");
487   OpEntry = Result;
488 }
489
490 void DAGTypeLegalizer::GetExpandedInteger(SDValue Op, SDValue &Lo,
491                                           SDValue &Hi) {
492   std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
493   RemapValue(Entry.first);
494   RemapValue(Entry.second);
495   assert(Entry.first.getNode() && "Operand isn't expanded");
496   Lo = Entry.first;
497   Hi = Entry.second;
498 }
499
500 void DAGTypeLegalizer::SetExpandedInteger(SDValue Op, SDValue Lo,
501                                           SDValue Hi) {
502   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
503   AnalyzeNewValue(Lo);
504   AnalyzeNewValue(Hi);
505
506   // Remember that this is the result of the node.
507   std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
508   assert(Entry.first.getNode() == 0 && "Node already expanded");
509   Entry.first = Lo;
510   Entry.second = Hi;
511 }
512
513 void DAGTypeLegalizer::GetExpandedFloat(SDValue Op, SDValue &Lo,
514                                         SDValue &Hi) {
515   std::pair<SDValue, SDValue> &Entry = ExpandedFloats[Op];
516   RemapValue(Entry.first);
517   RemapValue(Entry.second);
518   assert(Entry.first.getNode() && "Operand isn't expanded");
519   Lo = Entry.first;
520   Hi = Entry.second;
521 }
522
523 void DAGTypeLegalizer::SetExpandedFloat(SDValue Op, SDValue Lo,
524                                         SDValue Hi) {
525   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
526   AnalyzeNewValue(Lo);
527   AnalyzeNewValue(Hi);
528
529   // Remember that this is the result of the node.
530   std::pair<SDValue, SDValue> &Entry = ExpandedFloats[Op];
531   assert(Entry.first.getNode() == 0 && "Node already expanded");
532   Entry.first = Lo;
533   Entry.second = Hi;
534 }
535
536 void DAGTypeLegalizer::GetSplitVector(SDValue Op, SDValue &Lo,
537                                       SDValue &Hi) {
538   std::pair<SDValue, SDValue> &Entry = SplitVectors[Op];
539   RemapValue(Entry.first);
540   RemapValue(Entry.second);
541   assert(Entry.first.getNode() && "Operand isn't split");
542   Lo = Entry.first;
543   Hi = Entry.second;
544 }
545
546 void DAGTypeLegalizer::SetSplitVector(SDValue Op, SDValue Lo,
547                                       SDValue Hi) {
548   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
549   AnalyzeNewValue(Lo);
550   AnalyzeNewValue(Hi);
551
552   // Remember that this is the result of the node.
553   std::pair<SDValue, SDValue> &Entry = SplitVectors[Op];
554   assert(Entry.first.getNode() == 0 && "Node already split");
555   Entry.first = Lo;
556   Entry.second = Hi;
557 }
558
559
560 //===----------------------------------------------------------------------===//
561 // Utilities.
562 //===----------------------------------------------------------------------===//
563
564 /// BitConvertToInteger - Convert to an integer of the same size.
565 SDValue DAGTypeLegalizer::BitConvertToInteger(SDValue Op) {
566   unsigned BitWidth = Op.getValueType().getSizeInBits();
567   return DAG.getNode(ISD::BIT_CONVERT, MVT::getIntegerVT(BitWidth), Op);
568 }
569
570 SDValue DAGTypeLegalizer::CreateStackStoreLoad(SDValue Op,
571                                                MVT DestVT) {
572   // Create the stack frame object.  Make sure it is aligned for both
573   // the source and destination types.
574   unsigned SrcAlign =
575    TLI.getTargetData()->getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
576   SDValue FIPtr = DAG.CreateStackTemporary(DestVT, SrcAlign);
577
578   // Emit a store to the stack slot.
579   SDValue Store = DAG.getStore(DAG.getEntryNode(), Op, FIPtr, NULL, 0);
580   // Result is a load from the stack slot.
581   return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
582 }
583
584 /// CustomLowerResults - Replace the node's results with custom code provided
585 /// by the target and return "true", or do nothing and return "false".
586 bool DAGTypeLegalizer::CustomLowerResults(SDNode *N, unsigned ResNo) {
587   // See if the target wants to custom lower this node.
588   if (TLI.getOperationAction(N->getOpcode(), N->getValueType(ResNo)) !=
589       TargetLowering::Custom)
590     return false;
591
592   SmallVector<SDValue, 8> Results;
593   TLI.ReplaceNodeResults(N, Results, DAG);
594   if (Results.empty())
595     // The target didn't want to custom lower it after all.
596     return false;
597
598   // Make everything that once used N's values now use those in Results instead.
599   assert(Results.size() == N->getNumValues() &&
600          "Custom lowering returned the wrong number of results!");
601   for (unsigned i = 0, e = Results.size(); i != e; ++i)
602     ReplaceValueWith(SDValue(N, i), Results[i]);
603   return true;
604 }
605
606 /// JoinIntegers - Build an integer with low bits Lo and high bits Hi.
607 SDValue DAGTypeLegalizer::JoinIntegers(SDValue Lo, SDValue Hi) {
608   MVT LVT = Lo.getValueType();
609   MVT HVT = Hi.getValueType();
610   MVT NVT = MVT::getIntegerVT(LVT.getSizeInBits() + HVT.getSizeInBits());
611
612   Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Lo);
613   Hi = DAG.getNode(ISD::ANY_EXTEND, NVT, Hi);
614   Hi = DAG.getNode(ISD::SHL, NVT, Hi, DAG.getConstant(LVT.getSizeInBits(),
615                                                       TLI.getShiftAmountTy()));
616   return DAG.getNode(ISD::OR, NVT, Lo, Hi);
617 }
618
619 /// SplitInteger - Return the lower LoVT bits of Op in Lo and the upper HiVT
620 /// bits in Hi.
621 void DAGTypeLegalizer::SplitInteger(SDValue Op,
622                                     MVT LoVT, MVT HiVT,
623                                     SDValue &Lo, SDValue &Hi) {
624   assert(LoVT.getSizeInBits() + HiVT.getSizeInBits() ==
625          Op.getValueType().getSizeInBits() && "Invalid integer splitting!");
626   Lo = DAG.getNode(ISD::TRUNCATE, LoVT, Op);
627   Hi = DAG.getNode(ISD::SRL, Op.getValueType(), Op,
628                    DAG.getConstant(LoVT.getSizeInBits(),
629                                    TLI.getShiftAmountTy()));
630   Hi = DAG.getNode(ISD::TRUNCATE, HiVT, Hi);
631 }
632
633 /// SplitInteger - Return the lower and upper halves of Op's bits in a value
634 /// type half the size of Op's.
635 void DAGTypeLegalizer::SplitInteger(SDValue Op,
636                                     SDValue &Lo, SDValue &Hi) {
637   MVT HalfVT = MVT::getIntegerVT(Op.getValueType().getSizeInBits()/2);
638   SplitInteger(Op, HalfVT, HalfVT, Lo, Hi);
639 }
640
641 /// MakeLibCall - Generate a libcall taking the given operands as arguments and
642 /// returning a result of type RetVT.
643 SDValue DAGTypeLegalizer::MakeLibCall(RTLIB::Libcall LC, MVT RetVT,
644                                       const SDValue *Ops, unsigned NumOps,
645                                       bool isSigned) {
646   TargetLowering::ArgListTy Args;
647   Args.reserve(NumOps);
648
649   TargetLowering::ArgListEntry Entry;
650   for (unsigned i = 0; i != NumOps; ++i) {
651     Entry.Node = Ops[i];
652     Entry.Ty = Entry.Node.getValueType().getTypeForMVT();
653     Entry.isSExt = isSigned;
654     Entry.isZExt = !isSigned;
655     Args.push_back(Entry);
656   }
657   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
658                                          TLI.getPointerTy());
659
660   const Type *RetTy = RetVT.getTypeForMVT();
661   std::pair<SDValue,SDValue> CallInfo =
662     TLI.LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
663                     false, CallingConv::C, false, Callee, Args, DAG);
664   return CallInfo.first;
665 }
666
667 /// LibCallify - Convert the node into a libcall with the same prototype.
668 SDValue DAGTypeLegalizer::LibCallify(RTLIB::Libcall LC, SDNode *N,
669                                      bool isSigned) {
670   unsigned NumOps = N->getNumOperands();
671   if (NumOps == 0) {
672     return MakeLibCall(LC, N->getValueType(0), 0, 0, isSigned);
673   } else if (NumOps == 1) {
674     SDValue Op = N->getOperand(0);
675     return MakeLibCall(LC, N->getValueType(0), &Op, 1, isSigned);
676   } else if (NumOps == 2) {
677     SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
678     return MakeLibCall(LC, N->getValueType(0), Ops, 2, isSigned);
679   }
680   SmallVector<SDValue, 8> Ops(NumOps);
681   for (unsigned i = 0; i < NumOps; ++i)
682     Ops[i] = N->getOperand(i);
683
684   return MakeLibCall(LC, N->getValueType(0), &Ops[0], NumOps, isSigned);
685 }
686
687 SDValue DAGTypeLegalizer::GetVectorElementPointer(SDValue VecPtr, MVT EltVT,
688                                                   SDValue Index) {
689   // Make sure the index type is big enough to compute in.
690   if (Index.getValueType().bitsGT(TLI.getPointerTy()))
691     Index = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Index);
692   else
693     Index = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Index);
694
695   // Calculate the element offset and add it to the pointer.
696   unsigned EltSize = EltVT.getSizeInBits() / 8; // FIXME: should be ABI size.
697
698   Index = DAG.getNode(ISD::MUL, Index.getValueType(), Index,
699                       DAG.getConstant(EltSize, Index.getValueType()));
700   return DAG.getNode(ISD::ADD, Index.getValueType(), Index, VecPtr);
701 }
702
703 /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
704 /// which is split into two not necessarily identical pieces.
705 void DAGTypeLegalizer::GetSplitDestVTs(MVT InVT, MVT &LoVT, MVT &HiVT) {
706   if (!InVT.isVector()) {
707     LoVT = HiVT = TLI.getTypeToTransformTo(InVT);
708   } else {
709     MVT NewEltVT = InVT.getVectorElementType();
710     unsigned NumElements = InVT.getVectorNumElements();
711     if ((NumElements & (NumElements-1)) == 0) {  // Simple power of two vector.
712       NumElements >>= 1;
713       LoVT = HiVT =  MVT::getVectorVT(NewEltVT, NumElements);
714     } else {                                     // Non-power-of-two vectors.
715       unsigned NewNumElts_Lo = 1 << Log2_32(NumElements);
716       unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
717       LoVT = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
718       HiVT = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
719     }
720   }
721 }
722
723
724 //===----------------------------------------------------------------------===//
725 //  Entry Point
726 //===----------------------------------------------------------------------===//
727
728 /// LegalizeTypes - This transforms the SelectionDAG into a SelectionDAG that
729 /// only uses types natively supported by the target.  Returns "true" if it made
730 /// any changes.
731 ///
732 /// Note that this is an involved process that may invalidate pointers into
733 /// the graph.
734 bool SelectionDAG::LegalizeTypes() {
735   return DAGTypeLegalizer(*this).run();
736 }