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