84dfdc7a7ff285fffb33e07e2a232978261ec913
[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     assert(N.getNode()->getNodeId() != NewNode && "Mapped to unanalyzed node!");
389   }
390 }
391
392 /// ExpungeNode - If N has a bogus mapping in ReplacedValues, eliminate it.
393 /// This can occur when a node is deleted then reallocated as a new node -
394 /// the mapping in ReplacedValues applies to the deleted node, not the new
395 /// one.
396 /// The only map that can have a deleted node as a source is ReplacedValues.
397 /// Other maps can have deleted nodes as targets, but since their looked-up
398 /// values are always immediately remapped using RemapValue, resulting in a
399 /// not-deleted node, this is harmless as long as ReplacedValues/RemapValue
400 /// always performs correct mappings.  In order to keep the mapping correct,
401 /// ExpungeNode should be called on any new nodes *before* adding them as
402 /// either source or target to ReplacedValues (which typically means calling
403 /// Expunge when a new node is first seen, since it may no longer be marked
404 /// NewNode by the time it is added to ReplacedValues).
405 void DAGTypeLegalizer::ExpungeNode(SDNode *N) {
406   if (N->getNodeId() != NewNode)
407     return;
408
409   // If N is not remapped by ReplacedValues then there is nothing to do.
410   unsigned i, e;
411   for (i = 0, e = N->getNumValues(); i != e; ++i)
412     if (ReplacedValues.find(SDValue(N, i)) != ReplacedValues.end())
413       break;
414
415   if (i == e)
416     return;
417
418   // Remove N from all maps - this is expensive but rare.
419
420   for (DenseMap<SDValue, SDValue>::iterator I = PromotedIntegers.begin(),
421        E = PromotedIntegers.end(); I != E; ++I) {
422     assert(I->first.getNode() != N);
423     RemapValue(I->second);
424   }
425
426   for (DenseMap<SDValue, SDValue>::iterator I = SoftenedFloats.begin(),
427        E = SoftenedFloats.end(); I != E; ++I) {
428     assert(I->first.getNode() != N);
429     RemapValue(I->second);
430   }
431
432   for (DenseMap<SDValue, SDValue>::iterator I = ScalarizedVectors.begin(),
433        E = ScalarizedVectors.end(); I != E; ++I) {
434     assert(I->first.getNode() != N);
435     RemapValue(I->second);
436   }
437
438   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
439        I = ExpandedIntegers.begin(), E = ExpandedIntegers.end(); I != E; ++I){
440     assert(I->first.getNode() != N);
441     RemapValue(I->second.first);
442     RemapValue(I->second.second);
443   }
444
445   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
446        I = ExpandedFloats.begin(), E = ExpandedFloats.end(); I != E; ++I) {
447     assert(I->first.getNode() != N);
448     RemapValue(I->second.first);
449     RemapValue(I->second.second);
450   }
451
452   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
453        I = SplitVectors.begin(), E = SplitVectors.end(); I != E; ++I) {
454     assert(I->first.getNode() != N);
455     RemapValue(I->second.first);
456     RemapValue(I->second.second);
457   }
458
459   for (DenseMap<SDValue, SDValue>::iterator I = ReplacedValues.begin(),
460        E = ReplacedValues.end(); I != E; ++I)
461     RemapValue(I->second);
462
463   for (unsigned i = 0, e = N->getNumValues(); i != e; ++i)
464     ReplacedValues.erase(SDValue(N, i));
465 }
466
467 void DAGTypeLegalizer::SetPromotedInteger(SDValue Op, SDValue Result) {
468   AnalyzeNewValue(Result);
469
470   SDValue &OpEntry = PromotedIntegers[Op];
471   assert(OpEntry.getNode() == 0 && "Node is already promoted!");
472   OpEntry = Result;
473 }
474
475 void DAGTypeLegalizer::SetSoftenedFloat(SDValue Op, SDValue Result) {
476   AnalyzeNewValue(Result);
477
478   SDValue &OpEntry = SoftenedFloats[Op];
479   assert(OpEntry.getNode() == 0 && "Node is already converted to integer!");
480   OpEntry = Result;
481 }
482
483 void DAGTypeLegalizer::SetScalarizedVector(SDValue Op, SDValue Result) {
484   AnalyzeNewValue(Result);
485
486   SDValue &OpEntry = ScalarizedVectors[Op];
487   assert(OpEntry.getNode() == 0 && "Node is already scalarized!");
488   OpEntry = Result;
489 }
490
491 void DAGTypeLegalizer::GetExpandedInteger(SDValue Op, SDValue &Lo,
492                                           SDValue &Hi) {
493   std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
494   RemapValue(Entry.first);
495   RemapValue(Entry.second);
496   assert(Entry.first.getNode() && "Operand isn't expanded");
497   Lo = Entry.first;
498   Hi = Entry.second;
499 }
500
501 void DAGTypeLegalizer::SetExpandedInteger(SDValue Op, SDValue Lo,
502                                           SDValue Hi) {
503   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
504   AnalyzeNewValue(Lo);
505   AnalyzeNewValue(Hi);
506
507   // Remember that this is the result of the node.
508   std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
509   assert(Entry.first.getNode() == 0 && "Node already expanded");
510   Entry.first = Lo;
511   Entry.second = Hi;
512 }
513
514 void DAGTypeLegalizer::GetExpandedFloat(SDValue Op, SDValue &Lo,
515                                         SDValue &Hi) {
516   std::pair<SDValue, SDValue> &Entry = ExpandedFloats[Op];
517   RemapValue(Entry.first);
518   RemapValue(Entry.second);
519   assert(Entry.first.getNode() && "Operand isn't expanded");
520   Lo = Entry.first;
521   Hi = Entry.second;
522 }
523
524 void DAGTypeLegalizer::SetExpandedFloat(SDValue Op, SDValue Lo,
525                                         SDValue Hi) {
526   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
527   AnalyzeNewValue(Lo);
528   AnalyzeNewValue(Hi);
529
530   // Remember that this is the result of the node.
531   std::pair<SDValue, SDValue> &Entry = ExpandedFloats[Op];
532   assert(Entry.first.getNode() == 0 && "Node already expanded");
533   Entry.first = Lo;
534   Entry.second = Hi;
535 }
536
537 void DAGTypeLegalizer::GetSplitVector(SDValue Op, SDValue &Lo,
538                                       SDValue &Hi) {
539   std::pair<SDValue, SDValue> &Entry = SplitVectors[Op];
540   RemapValue(Entry.first);
541   RemapValue(Entry.second);
542   assert(Entry.first.getNode() && "Operand isn't split");
543   Lo = Entry.first;
544   Hi = Entry.second;
545 }
546
547 void DAGTypeLegalizer::SetSplitVector(SDValue Op, SDValue Lo,
548                                       SDValue Hi) {
549   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
550   AnalyzeNewValue(Lo);
551   AnalyzeNewValue(Hi);
552
553   // Remember that this is the result of the node.
554   std::pair<SDValue, SDValue> &Entry = SplitVectors[Op];
555   assert(Entry.first.getNode() == 0 && "Node already split");
556   Entry.first = Lo;
557   Entry.second = Hi;
558 }
559
560
561 //===----------------------------------------------------------------------===//
562 // Utilities.
563 //===----------------------------------------------------------------------===//
564
565 /// BitConvertToInteger - Convert to an integer of the same size.
566 SDValue DAGTypeLegalizer::BitConvertToInteger(SDValue Op) {
567   unsigned BitWidth = Op.getValueType().getSizeInBits();
568   return DAG.getNode(ISD::BIT_CONVERT, MVT::getIntegerVT(BitWidth), Op);
569 }
570
571 SDValue DAGTypeLegalizer::CreateStackStoreLoad(SDValue Op,
572                                                MVT DestVT) {
573   // Create the stack frame object.  Make sure it is aligned for both
574   // the source and destination types.
575   unsigned SrcAlign =
576    TLI.getTargetData()->getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
577   SDValue FIPtr = DAG.CreateStackTemporary(DestVT, SrcAlign);
578
579   // Emit a store to the stack slot.
580   SDValue Store = DAG.getStore(DAG.getEntryNode(), Op, FIPtr, NULL, 0);
581   // Result is a load from the stack slot.
582   return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
583 }
584
585 /// CustomLowerResults - Replace the node's results with custom code provided
586 /// by the target and return "true", or do nothing and return "false".
587 bool DAGTypeLegalizer::CustomLowerResults(SDNode *N, unsigned ResNo) {
588   // See if the target wants to custom lower this node.
589   if (TLI.getOperationAction(N->getOpcode(), N->getValueType(ResNo)) !=
590       TargetLowering::Custom)
591     return false;
592
593   SmallVector<SDValue, 8> Results;
594   TLI.ReplaceNodeResults(N, Results, DAG);
595   if (Results.empty())
596     // The target didn't want to custom lower it after all.
597     return false;
598
599   // Make everything that once used N's values now use those in Results instead.
600   assert(Results.size() == N->getNumValues() &&
601          "Custom lowering returned the wrong number of results!");
602   for (unsigned i = 0, e = Results.size(); i != e; ++i)
603     ReplaceValueWith(SDValue(N, i), Results[i]);
604   return true;
605 }
606
607 /// JoinIntegers - Build an integer with low bits Lo and high bits Hi.
608 SDValue DAGTypeLegalizer::JoinIntegers(SDValue Lo, SDValue Hi) {
609   MVT LVT = Lo.getValueType();
610   MVT HVT = Hi.getValueType();
611   MVT NVT = MVT::getIntegerVT(LVT.getSizeInBits() + HVT.getSizeInBits());
612
613   Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Lo);
614   Hi = DAG.getNode(ISD::ANY_EXTEND, NVT, Hi);
615   Hi = DAG.getNode(ISD::SHL, NVT, Hi, DAG.getConstant(LVT.getSizeInBits(),
616                                                       TLI.getShiftAmountTy()));
617   return DAG.getNode(ISD::OR, NVT, Lo, Hi);
618 }
619
620 /// SplitInteger - Return the lower LoVT bits of Op in Lo and the upper HiVT
621 /// bits in Hi.
622 void DAGTypeLegalizer::SplitInteger(SDValue Op,
623                                     MVT LoVT, MVT HiVT,
624                                     SDValue &Lo, SDValue &Hi) {
625   assert(LoVT.getSizeInBits() + HiVT.getSizeInBits() ==
626          Op.getValueType().getSizeInBits() && "Invalid integer splitting!");
627   Lo = DAG.getNode(ISD::TRUNCATE, LoVT, Op);
628   Hi = DAG.getNode(ISD::SRL, Op.getValueType(), Op,
629                    DAG.getConstant(LoVT.getSizeInBits(),
630                                    TLI.getShiftAmountTy()));
631   Hi = DAG.getNode(ISD::TRUNCATE, HiVT, Hi);
632 }
633
634 /// SplitInteger - Return the lower and upper halves of Op's bits in a value
635 /// type half the size of Op's.
636 void DAGTypeLegalizer::SplitInteger(SDValue Op,
637                                     SDValue &Lo, SDValue &Hi) {
638   MVT HalfVT = MVT::getIntegerVT(Op.getValueType().getSizeInBits()/2);
639   SplitInteger(Op, HalfVT, HalfVT, Lo, Hi);
640 }
641
642 /// MakeLibCall - Generate a libcall taking the given operands as arguments and
643 /// returning a result of type RetVT.
644 SDValue DAGTypeLegalizer::MakeLibCall(RTLIB::Libcall LC, MVT RetVT,
645                                       const SDValue *Ops, unsigned NumOps,
646                                       bool isSigned) {
647   TargetLowering::ArgListTy Args;
648   Args.reserve(NumOps);
649
650   TargetLowering::ArgListEntry Entry;
651   for (unsigned i = 0; i != NumOps; ++i) {
652     Entry.Node = Ops[i];
653     Entry.Ty = Entry.Node.getValueType().getTypeForMVT();
654     Entry.isSExt = isSigned;
655     Entry.isZExt = !isSigned;
656     Args.push_back(Entry);
657   }
658   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
659                                          TLI.getPointerTy());
660
661   const Type *RetTy = RetVT.getTypeForMVT();
662   std::pair<SDValue,SDValue> CallInfo =
663     TLI.LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
664                     false, CallingConv::C, false, Callee, Args, DAG);
665   return CallInfo.first;
666 }
667
668 /// LibCallify - Convert the node into a libcall with the same prototype.
669 SDValue DAGTypeLegalizer::LibCallify(RTLIB::Libcall LC, SDNode *N,
670                                      bool isSigned) {
671   unsigned NumOps = N->getNumOperands();
672   if (NumOps == 0) {
673     return MakeLibCall(LC, N->getValueType(0), 0, 0, isSigned);
674   } else if (NumOps == 1) {
675     SDValue Op = N->getOperand(0);
676     return MakeLibCall(LC, N->getValueType(0), &Op, 1, isSigned);
677   } else if (NumOps == 2) {
678     SDValue Ops[2] = { N->getOperand(0), N->getOperand(1) };
679     return MakeLibCall(LC, N->getValueType(0), Ops, 2, isSigned);
680   }
681   SmallVector<SDValue, 8> Ops(NumOps);
682   for (unsigned i = 0; i < NumOps; ++i)
683     Ops[i] = N->getOperand(i);
684
685   return MakeLibCall(LC, N->getValueType(0), &Ops[0], NumOps, isSigned);
686 }
687
688 SDValue DAGTypeLegalizer::GetVectorElementPointer(SDValue VecPtr, MVT EltVT,
689                                                   SDValue Index) {
690   // Make sure the index type is big enough to compute in.
691   if (Index.getValueType().bitsGT(TLI.getPointerTy()))
692     Index = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Index);
693   else
694     Index = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Index);
695
696   // Calculate the element offset and add it to the pointer.
697   unsigned EltSize = EltVT.getSizeInBits() / 8; // FIXME: should be ABI size.
698
699   Index = DAG.getNode(ISD::MUL, Index.getValueType(), Index,
700                       DAG.getConstant(EltSize, Index.getValueType()));
701   return DAG.getNode(ISD::ADD, Index.getValueType(), Index, VecPtr);
702 }
703
704 /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
705 /// which is split into two not necessarily identical pieces.
706 void DAGTypeLegalizer::GetSplitDestVTs(MVT InVT, MVT &LoVT, MVT &HiVT) {
707   if (!InVT.isVector()) {
708     LoVT = HiVT = TLI.getTypeToTransformTo(InVT);
709   } else {
710     MVT NewEltVT = InVT.getVectorElementType();
711     unsigned NumElements = InVT.getVectorNumElements();
712     if ((NumElements & (NumElements-1)) == 0) {  // Simple power of two vector.
713       NumElements >>= 1;
714       LoVT = HiVT =  MVT::getVectorVT(NewEltVT, NumElements);
715     } else {                                     // Non-power-of-two vectors.
716       unsigned NewNumElts_Lo = 1 << Log2_32(NumElements);
717       unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
718       LoVT = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
719       HiVT = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
720     }
721   }
722 }
723
724
725 //===----------------------------------------------------------------------===//
726 //  Entry Point
727 //===----------------------------------------------------------------------===//
728
729 /// LegalizeTypes - This transforms the SelectionDAG into a SelectionDAG that
730 /// only uses types natively supported by the target.  Returns "true" if it made
731 /// any changes.
732 ///
733 /// Note that this is an involved process that may invalidate pointers into
734 /// the graph.
735 bool SelectionDAG::LegalizeTypes() {
736   return DAGTypeLegalizer(*this).run();
737 }