d913ce611cedcdec5fc8924d5fb734a1f1150e0f
[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 void DAGTypeLegalizer::AnalyzeNewNode(SDValue &Val) {
225   SDNode * const N(Val.getNode());
226   // If this was an existing node that is already done, we're done.
227   if (N->getNodeId() != NewNode)
228     return;
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     Val.setNode(DAG.UpdateNodeOperands(SDValue(N, 0),
272                                        &NewOps[0],
273                                        NewOps.size()).getNode());
274
275   SDNode * const Nu(Val.getNode());
276   Nu->setNodeId(Nu->getNumOperands()-NumProcessed);
277   if (Nu->getNodeId() == ReadyToProcess)
278     Worklist.push_back(Nu);
279 }
280
281 namespace {
282   /// NodeUpdateListener - This class is a DAGUpdateListener that listens for
283   /// updates to nodes and recomputes their ready state.
284   class VISIBILITY_HIDDEN NodeUpdateListener :
285     public SelectionDAG::DAGUpdateListener {
286     DAGTypeLegalizer &DTL;
287   public:
288     explicit NodeUpdateListener(DAGTypeLegalizer &dtl) : DTL(dtl) {}
289
290     virtual void NodeDeleted(SDNode *N, SDNode *E) {
291       assert(N->getNodeId() != DAGTypeLegalizer::Processed &&
292              N->getNodeId() != DAGTypeLegalizer::ReadyToProcess &&
293              "RAUW deleted processed node!");
294       // It is possible, though rare, for the deleted node N to occur as a
295       // target in a map, so note the replacement N -> E in ReplacedNodes.
296       assert(E && "Node not replaced?");
297       DTL.NoteDeletion(N, E);
298     }
299
300     virtual void NodeUpdated(SDNode *N) {
301       // Node updates can mean pretty much anything.  It is possible that an
302       // operand was set to something already processed (f.e.) in which case
303       // this node could become ready.  Recompute its flags.
304       assert(N->getNodeId() != DAGTypeLegalizer::Processed &&
305              N->getNodeId() != DAGTypeLegalizer::ReadyToProcess &&
306              "RAUW updated processed node!");
307       DTL.ReanalyzeNode(N);
308     }
309   };
310 }
311
312
313 /// ReplaceValueWith - The specified value was legalized to the specified other
314 /// value.  If they are different, update the DAG and NodeIDs replacing any uses
315 /// of From to use To instead.
316 void DAGTypeLegalizer::ReplaceValueWith(SDValue From, SDValue To) {
317   if (From == To) return;
318
319   // If expansion produced new nodes, make sure they are properly marked.
320   ExpungeNode(From.getNode());
321   AnalyzeNewNode(To); // Expunges To.
322
323   // Anything that used the old node should now use the new one.  Note that this
324   // can potentially cause recursive merging.
325   NodeUpdateListener NUL(*this);
326   DAG.ReplaceAllUsesOfValueWith(From, To, &NUL);
327
328   // The old node may still be present in a map like ExpandedIntegers or
329   // PromotedIntegers.  Inform maps about the replacement.
330   ReplacedNodes[From] = To;
331 }
332
333 /// ReplaceNodeWith - Replace uses of the 'from' node's results with the 'to'
334 /// node's results.  The from and to node must define identical result types.
335 void DAGTypeLegalizer::ReplaceNodeWith(SDNode *From, SDNode *To) {
336   if (From == To) return;
337
338   // If expansion produced new nodes, make sure they are properly marked.
339   ExpungeNode(From);
340
341   SDValue ToNode(To, 0);
342   AnalyzeNewNode(ToNode); // Expunges To.
343   To = ToNode.getNode();
344
345   assert(From->getNumValues() == To->getNumValues() &&
346          "Node results don't match");
347
348   // Anything that used the old node should now use the new one.  Note that this
349   // can potentially cause recursive merging.
350   NodeUpdateListener NUL(*this);
351   DAG.ReplaceAllUsesWith(From, To, &NUL);
352
353   // The old node may still be present in a map like ExpandedIntegers or
354   // PromotedIntegers.  Inform maps about the replacement.
355   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i) {
356     assert(From->getValueType(i) == To->getValueType(i) &&
357            "Node results don't match");
358     ReplacedNodes[SDValue(From, i)] = SDValue(To, i);
359   }
360 }
361
362 /// RemapNode - If the specified value was already legalized to another value,
363 /// replace it by that value.
364 void DAGTypeLegalizer::RemapNode(SDValue &N) {
365   DenseMap<SDValue, SDValue>::iterator I = ReplacedNodes.find(N);
366   if (I != ReplacedNodes.end()) {
367     // Use path compression to speed up future lookups if values get multiply
368     // replaced with other values.
369     RemapNode(I->second);
370     N = I->second;
371   }
372 }
373
374 /// ExpungeNode - If N has a bogus mapping in ReplacedNodes, eliminate it.
375 /// This can occur when a node is deleted then reallocated as a new node -
376 /// the mapping in ReplacedNodes applies to the deleted node, not the new
377 /// one.
378 /// The only map that can have a deleted node as a source is ReplacedNodes.
379 /// Other maps can have deleted nodes as targets, but since their looked-up
380 /// values are always immediately remapped using RemapNode, resulting in a
381 /// not-deleted node, this is harmless as long as ReplacedNodes/RemapNode
382 /// always performs correct mappings.  In order to keep the mapping correct,
383 /// ExpungeNode should be called on any new nodes *before* adding them as
384 /// either source or target to ReplacedNodes (which typically means calling
385 /// Expunge when a new node is first seen, since it may no longer be marked
386 /// NewNode by the time it is added to ReplacedNodes).
387 void DAGTypeLegalizer::ExpungeNode(SDNode *N) {
388   if (N->getNodeId() != NewNode)
389     return;
390
391   // If N is not remapped by ReplacedNodes then there is nothing to do.
392   unsigned i, e;
393   for (i = 0, e = N->getNumValues(); i != e; ++i)
394     if (ReplacedNodes.find(SDValue(N, i)) != ReplacedNodes.end())
395       break;
396
397   if (i == e)
398     return;
399
400   // Remove N from all maps - this is expensive but rare.
401
402   for (DenseMap<SDValue, SDValue>::iterator I = PromotedIntegers.begin(),
403        E = PromotedIntegers.end(); I != E; ++I) {
404     assert(I->first.getNode() != N);
405     RemapNode(I->second);
406   }
407
408   for (DenseMap<SDValue, SDValue>::iterator I = SoftenedFloats.begin(),
409        E = SoftenedFloats.end(); I != E; ++I) {
410     assert(I->first.getNode() != N);
411     RemapNode(I->second);
412   }
413
414   for (DenseMap<SDValue, SDValue>::iterator I = ScalarizedVectors.begin(),
415        E = ScalarizedVectors.end(); I != E; ++I) {
416     assert(I->first.getNode() != N);
417     RemapNode(I->second);
418   }
419
420   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
421        I = ExpandedIntegers.begin(), E = ExpandedIntegers.end(); I != E; ++I){
422     assert(I->first.getNode() != N);
423     RemapNode(I->second.first);
424     RemapNode(I->second.second);
425   }
426
427   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
428        I = ExpandedFloats.begin(), E = ExpandedFloats.end(); I != E; ++I) {
429     assert(I->first.getNode() != N);
430     RemapNode(I->second.first);
431     RemapNode(I->second.second);
432   }
433
434   for (DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator
435        I = SplitVectors.begin(), E = SplitVectors.end(); I != E; ++I) {
436     assert(I->first.getNode() != N);
437     RemapNode(I->second.first);
438     RemapNode(I->second.second);
439   }
440
441   for (DenseMap<SDValue, SDValue>::iterator I = ReplacedNodes.begin(),
442        E = ReplacedNodes.end(); I != E; ++I)
443     RemapNode(I->second);
444
445   for (unsigned i = 0, e = N->getNumValues(); i != e; ++i)
446     ReplacedNodes.erase(SDValue(N, i));
447 }
448
449 void DAGTypeLegalizer::SetPromotedInteger(SDValue Op, SDValue Result) {
450   AnalyzeNewNode(Result);
451
452   SDValue &OpEntry = PromotedIntegers[Op];
453   assert(OpEntry.getNode() == 0 && "Node is already promoted!");
454   OpEntry = Result;
455 }
456
457 void DAGTypeLegalizer::SetSoftenedFloat(SDValue Op, SDValue Result) {
458   AnalyzeNewNode(Result);
459
460   SDValue &OpEntry = SoftenedFloats[Op];
461   assert(OpEntry.getNode() == 0 && "Node is already converted to integer!");
462   OpEntry = Result;
463 }
464
465 void DAGTypeLegalizer::SetScalarizedVector(SDValue Op, SDValue Result) {
466   AnalyzeNewNode(Result);
467
468   SDValue &OpEntry = ScalarizedVectors[Op];
469   assert(OpEntry.getNode() == 0 && "Node is already scalarized!");
470   OpEntry = Result;
471 }
472
473 void DAGTypeLegalizer::GetExpandedInteger(SDValue Op, SDValue &Lo,
474                                           SDValue &Hi) {
475   std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
476   RemapNode(Entry.first);
477   RemapNode(Entry.second);
478   assert(Entry.first.getNode() && "Operand isn't expanded");
479   Lo = Entry.first;
480   Hi = Entry.second;
481 }
482
483 void DAGTypeLegalizer::SetExpandedInteger(SDValue Op, SDValue Lo,
484                                           SDValue Hi) {
485   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
486   AnalyzeNewNode(Lo);
487   AnalyzeNewNode(Hi);
488
489   // Remember that this is the result of the node.
490   std::pair<SDValue, SDValue> &Entry = ExpandedIntegers[Op];
491   assert(Entry.first.getNode() == 0 && "Node already expanded");
492   Entry.first = Lo;
493   Entry.second = Hi;
494 }
495
496 void DAGTypeLegalizer::GetExpandedFloat(SDValue Op, SDValue &Lo,
497                                         SDValue &Hi) {
498   std::pair<SDValue, SDValue> &Entry = ExpandedFloats[Op];
499   RemapNode(Entry.first);
500   RemapNode(Entry.second);
501   assert(Entry.first.getNode() && "Operand isn't expanded");
502   Lo = Entry.first;
503   Hi = Entry.second;
504 }
505
506 void DAGTypeLegalizer::SetExpandedFloat(SDValue Op, SDValue Lo,
507                                         SDValue Hi) {
508   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
509   AnalyzeNewNode(Lo);
510   AnalyzeNewNode(Hi);
511
512   // Remember that this is the result of the node.
513   std::pair<SDValue, SDValue> &Entry = ExpandedFloats[Op];
514   assert(Entry.first.getNode() == 0 && "Node already expanded");
515   Entry.first = Lo;
516   Entry.second = Hi;
517 }
518
519 void DAGTypeLegalizer::GetSplitVector(SDValue Op, SDValue &Lo,
520                                       SDValue &Hi) {
521   std::pair<SDValue, SDValue> &Entry = SplitVectors[Op];
522   RemapNode(Entry.first);
523   RemapNode(Entry.second);
524   assert(Entry.first.getNode() && "Operand isn't split");
525   Lo = Entry.first;
526   Hi = Entry.second;
527 }
528
529 void DAGTypeLegalizer::SetSplitVector(SDValue Op, SDValue Lo,
530                                       SDValue Hi) {
531   // Lo/Hi may have been newly allocated, if so, add nodeid's as relevant.
532   AnalyzeNewNode(Lo);
533   AnalyzeNewNode(Hi);
534
535   // Remember that this is the result of the node.
536   std::pair<SDValue, SDValue> &Entry = SplitVectors[Op];
537   assert(Entry.first.getNode() == 0 && "Node already split");
538   Entry.first = Lo;
539   Entry.second = Hi;
540 }
541
542
543 //===----------------------------------------------------------------------===//
544 // Utilities.
545 //===----------------------------------------------------------------------===//
546
547 /// BitConvertToInteger - Convert to an integer of the same size.
548 SDValue DAGTypeLegalizer::BitConvertToInteger(SDValue Op) {
549   unsigned BitWidth = Op.getValueType().getSizeInBits();
550   return DAG.getNode(ISD::BIT_CONVERT, MVT::getIntegerVT(BitWidth), Op);
551 }
552
553 SDValue DAGTypeLegalizer::CreateStackStoreLoad(SDValue Op,
554                                                MVT DestVT) {
555   // Create the stack frame object.  Make sure it is aligned for both
556   // the source and destination types.
557   unsigned SrcAlign =
558    TLI.getTargetData()->getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
559   SDValue FIPtr = DAG.CreateStackTemporary(DestVT, SrcAlign);
560
561   // Emit a store to the stack slot.
562   SDValue Store = DAG.getStore(DAG.getEntryNode(), Op, FIPtr, NULL, 0);
563   // Result is a load from the stack slot.
564   return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
565 }
566
567 /// JoinIntegers - Build an integer with low bits Lo and high bits Hi.
568 SDValue DAGTypeLegalizer::JoinIntegers(SDValue Lo, SDValue Hi) {
569   MVT LVT = Lo.getValueType();
570   MVT HVT = Hi.getValueType();
571   MVT NVT = MVT::getIntegerVT(LVT.getSizeInBits() + HVT.getSizeInBits());
572
573   Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Lo);
574   Hi = DAG.getNode(ISD::ANY_EXTEND, NVT, Hi);
575   Hi = DAG.getNode(ISD::SHL, NVT, Hi, DAG.getConstant(LVT.getSizeInBits(),
576                                                       TLI.getShiftAmountTy()));
577   return DAG.getNode(ISD::OR, NVT, Lo, Hi);
578 }
579
580 /// SplitInteger - Return the lower LoVT bits of Op in Lo and the upper HiVT
581 /// bits in Hi.
582 void DAGTypeLegalizer::SplitInteger(SDValue Op,
583                                     MVT LoVT, MVT HiVT,
584                                     SDValue &Lo, SDValue &Hi) {
585   assert(LoVT.getSizeInBits() + HiVT.getSizeInBits() ==
586          Op.getValueType().getSizeInBits() && "Invalid integer splitting!");
587   Lo = DAG.getNode(ISD::TRUNCATE, LoVT, Op);
588   Hi = DAG.getNode(ISD::SRL, Op.getValueType(), Op,
589                    DAG.getConstant(LoVT.getSizeInBits(),
590                                    TLI.getShiftAmountTy()));
591   Hi = DAG.getNode(ISD::TRUNCATE, HiVT, Hi);
592 }
593
594 /// SplitInteger - Return the lower and upper halves of Op's bits in a value type
595 /// half the size of Op's.
596 void DAGTypeLegalizer::SplitInteger(SDValue Op,
597                                     SDValue &Lo, SDValue &Hi) {
598   MVT HalfVT = MVT::getIntegerVT(Op.getValueType().getSizeInBits()/2);
599   SplitInteger(Op, HalfVT, HalfVT, Lo, Hi);
600 }
601
602 /// MakeLibCall - Generate a libcall taking the given operands as arguments and
603 /// returning a result of type RetVT.
604 SDValue DAGTypeLegalizer::MakeLibCall(RTLIB::Libcall LC, MVT RetVT,
605                                       const SDValue *Ops, unsigned NumOps,
606                                       bool isSigned) {
607   TargetLowering::ArgListTy Args;
608   Args.reserve(NumOps);
609
610   TargetLowering::ArgListEntry Entry;
611   for (unsigned i = 0; i != NumOps; ++i) {
612     Entry.Node = Ops[i];
613     Entry.Ty = Entry.Node.getValueType().getTypeForMVT();
614     Entry.isSExt = isSigned;
615     Entry.isZExt = !isSigned;
616     Args.push_back(Entry);
617   }
618   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
619                                            TLI.getPointerTy());
620
621   const Type *RetTy = RetVT.getTypeForMVT();
622   std::pair<SDValue,SDValue> CallInfo =
623     TLI.LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
624                     CallingConv::C, false, Callee, Args, DAG);
625   return CallInfo.first;
626 }
627
628 SDValue DAGTypeLegalizer::GetVectorElementPointer(SDValue VecPtr, MVT EltVT,
629                                                   SDValue Index) {
630   // Make sure the index type is big enough to compute in.
631   if (Index.getValueType().bitsGT(TLI.getPointerTy()))
632     Index = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Index);
633   else
634     Index = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Index);
635
636   // Calculate the element offset and add it to the pointer.
637   unsigned EltSize = EltVT.getSizeInBits() / 8; // FIXME: should be ABI size.
638
639   Index = DAG.getNode(ISD::MUL, Index.getValueType(), Index,
640                       DAG.getConstant(EltSize, Index.getValueType()));
641   return DAG.getNode(ISD::ADD, Index.getValueType(), Index, VecPtr);
642 }
643
644 /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
645 /// which is split into two not necessarily identical pieces.
646 void DAGTypeLegalizer::GetSplitDestVTs(MVT InVT, MVT &LoVT, MVT &HiVT) {
647   if (!InVT.isVector()) {
648     LoVT = HiVT = TLI.getTypeToTransformTo(InVT);
649   } else {
650     MVT NewEltVT = InVT.getVectorElementType();
651     unsigned NumElements = InVT.getVectorNumElements();
652     if ((NumElements & (NumElements-1)) == 0) {  // Simple power of two vector.
653       NumElements >>= 1;
654       LoVT = HiVT =  MVT::getVectorVT(NewEltVT, NumElements);
655     } else {                                     // Non-power-of-two vectors.
656       unsigned NewNumElts_Lo = 1 << Log2_32(NumElements);
657       unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
658       LoVT = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
659       HiVT = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
660     }
661   }
662 }
663
664
665 //===----------------------------------------------------------------------===//
666 //  Entry Point
667 //===----------------------------------------------------------------------===//
668
669 /// LegalizeTypes - This transforms the SelectionDAG into a SelectionDAG that
670 /// only uses types natively supported by the target.
671 ///
672 /// Note that this is an involved process that may invalidate pointers into
673 /// the graph.
674 void SelectionDAG::LegalizeTypes() {
675   DAGTypeLegalizer(*this).run();
676 }