For PR950:
[oota-llvm.git] / lib / Target / Alpha / AlphaISelDAGToDAG.cpp
1 //===-- AlphaISelDAGToDAG.cpp - Alpha pattern matching inst selector ------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Andrew Lenharth and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a pattern matching instruction selector for Alpha,
11 // converting from a legalized dag to a Alpha dag.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "Alpha.h"
16 #include "AlphaTargetMachine.h"
17 #include "AlphaISelLowering.h"
18 #include "llvm/CodeGen/MachineInstrBuilder.h"
19 #include "llvm/CodeGen/MachineFrameInfo.h"
20 #include "llvm/CodeGen/MachineFunction.h"
21 #include "llvm/CodeGen/SSARegMap.h"
22 #include "llvm/CodeGen/SelectionDAG.h"
23 #include "llvm/CodeGen/SelectionDAGISel.h"
24 #include "llvm/Target/TargetOptions.h"
25 #include "llvm/ADT/Statistic.h"
26 #include "llvm/Constants.h"
27 #include "llvm/GlobalValue.h"
28 #include "llvm/Intrinsics.h"
29 #include "llvm/Support/Debug.h"
30 #include "llvm/Support/MathExtras.h"
31 #include <algorithm>
32 #include <iostream>
33 #include <queue>
34 #include <set>
35 using namespace llvm;
36
37 namespace {
38
39   //===--------------------------------------------------------------------===//
40   /// AlphaDAGToDAGISel - Alpha specific code to select Alpha machine
41   /// instructions for SelectionDAG operations.
42   class AlphaDAGToDAGISel : public SelectionDAGISel {
43     AlphaTargetLowering AlphaLowering;
44
45     static const int64_t IMM_LOW  = -32768;
46     static const int64_t IMM_HIGH = 32767;
47     static const int64_t IMM_MULT = 65536;
48     static const int64_t IMM_FULLHIGH = IMM_HIGH + IMM_HIGH * IMM_MULT;
49     static const int64_t IMM_FULLLOW = IMM_LOW + IMM_LOW  * IMM_MULT;
50
51     static int64_t get_ldah16(int64_t x) {
52       int64_t y = x / IMM_MULT;
53       if (x % IMM_MULT > IMM_HIGH)
54         ++y;
55       return y;
56     }
57
58     static int64_t get_lda16(int64_t x) {
59       return x - get_ldah16(x) * IMM_MULT;
60     }
61
62     /// get_zapImm - Return a zap mask if X is a valid immediate for a zapnot
63     /// instruction (if not, return 0).  Note that this code accepts partial
64     /// zap masks.  For example (and LHS, 1) is a valid zap, as long we know
65     /// that the bits 1-7 of LHS are already zero.  If LHS is non-null, we are
66     /// in checking mode.  If LHS is null, we assume that the mask has already
67     /// been validated before.
68     uint64_t get_zapImm(SDOperand LHS, uint64_t Constant) {
69       uint64_t BitsToCheck = 0;
70       unsigned Result = 0;
71       for (unsigned i = 0; i != 8; ++i) {
72         if (((Constant >> 8*i) & 0xFF) == 0) {
73           // nothing to do.
74         } else {
75           Result |= 1 << i;
76           if (((Constant >> 8*i) & 0xFF) == 0xFF) {
77             // If the entire byte is set, zapnot the byte.
78           } else if (LHS.Val == 0) {
79             // Otherwise, if the mask was previously validated, we know its okay
80             // to zapnot this entire byte even though all the bits aren't set.
81           } else {
82             // Otherwise we don't know that the it's okay to zapnot this entire
83             // byte.  Only do this iff we can prove that the missing bits are
84             // already null, so the bytezap doesn't need to really null them.
85             BitsToCheck |= ~Constant & (0xFF << 8*i);
86           }
87         }
88       }
89       
90       // If there are missing bits in a byte (for example, X & 0xEF00), check to
91       // see if the missing bits (0x1000) are already known zero if not, the zap
92       // isn't okay to do, as it won't clear all the required bits.
93       if (BitsToCheck &&
94           !getTargetLowering().MaskedValueIsZero(LHS, BitsToCheck))
95         return 0;
96       
97       return Result;
98     }
99     
100     static uint64_t get_zapImm(uint64_t x) {
101       unsigned build = 0;
102       for(int i = 0; i != 8; ++i) {
103         if ((x & 0x00FF) == 0x00FF)
104           build |= 1 << i;
105         else if ((x & 0x00FF) != 0)
106           return 0;
107         x >>= 8;
108       }
109       return build;
110     }
111       
112     
113     static uint64_t getNearPower2(uint64_t x) {
114       if (!x) return 0;
115       unsigned at = CountLeadingZeros_64(x);
116       uint64_t complow = 1 << (63 - at);
117       uint64_t comphigh = 1 << (64 - at);
118       //std::cerr << x << ":" << complow << ":" << comphigh << "\n";
119       if (abs(complow - x) <= abs(comphigh - x))
120         return complow;
121       else
122         return comphigh;
123     }
124
125     static bool isFPZ(SDOperand N) {
126       ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
127       return (CN && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)));
128     }
129     static bool isFPZn(SDOperand N) {
130       ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
131       return (CN && CN->isExactlyValue(-0.0));
132     }
133     static bool isFPZp(SDOperand N) {
134       ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
135       return (CN && CN->isExactlyValue(+0.0));
136     }
137
138   public:
139     AlphaDAGToDAGISel(TargetMachine &TM)
140       : SelectionDAGISel(AlphaLowering), 
141         AlphaLowering(*(AlphaTargetLowering*)(TM.getTargetLowering())) 
142     {}
143
144     /// getI64Imm - Return a target constant with the specified value, of type
145     /// i64.
146     inline SDOperand getI64Imm(int64_t Imm) {
147       return CurDAG->getTargetConstant(Imm, MVT::i64);
148     }
149
150     // Select - Convert the specified operand from a target-independent to a
151     // target-specific node if it hasn't already been changed.
152     SDNode *Select(SDOperand Op);
153     
154     /// InstructionSelectBasicBlock - This callback is invoked by
155     /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
156     virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
157     
158     virtual const char *getPassName() const {
159       return "Alpha DAG->DAG Pattern Instruction Selection";
160     } 
161
162     /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
163     /// inline asm expressions.
164     virtual bool SelectInlineAsmMemoryOperand(const SDOperand &Op,
165                                               char ConstraintCode,
166                                               std::vector<SDOperand> &OutOps,
167                                               SelectionDAG &DAG) {
168       SDOperand Op0;
169       switch (ConstraintCode) {
170       default: return true;
171       case 'm':   // memory
172         Op0 = Op;
173         AddToISelQueue(Op0);
174         break;
175       }
176       
177       OutOps.push_back(Op0);
178       return false;
179     }
180     
181 // Include the pieces autogenerated from the target description.
182 #include "AlphaGenDAGISel.inc"
183     
184 private:
185     SDOperand getGlobalBaseReg();
186     SDOperand getGlobalRetAddr();
187     void SelectCALL(SDOperand Op);
188
189   };
190 }
191
192 /// getGlobalBaseReg - Output the instructions required to put the
193 /// GOT address into a register.
194 ///
195 SDOperand AlphaDAGToDAGISel::getGlobalBaseReg() {
196   MachineFunction* MF = BB->getParent();
197   unsigned GP = 0;
198   for(MachineFunction::livein_iterator ii = MF->livein_begin(), 
199         ee = MF->livein_end(); ii != ee; ++ii)
200     if (ii->first == Alpha::R29) {
201       GP = ii->second;
202       break;
203     }
204   assert(GP && "GOT PTR not in liveins");
205   return CurDAG->getCopyFromReg(CurDAG->getEntryNode(), 
206                                 GP, MVT::i64);
207 }
208
209 /// getRASaveReg - Grab the return address
210 ///
211 SDOperand AlphaDAGToDAGISel::getGlobalRetAddr() {
212   MachineFunction* MF = BB->getParent();
213   unsigned RA = 0;
214   for(MachineFunction::livein_iterator ii = MF->livein_begin(), 
215         ee = MF->livein_end(); ii != ee; ++ii)
216     if (ii->first == Alpha::R26) {
217       RA = ii->second;
218       break;
219     }
220   assert(RA && "RA PTR not in liveins");
221   return CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
222                                 RA, MVT::i64);
223 }
224
225 /// InstructionSelectBasicBlock - This callback is invoked by
226 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
227 void AlphaDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
228   DEBUG(BB->dump());
229   
230   // Select target instructions for the DAG.
231   DAG.setRoot(SelectRoot(DAG.getRoot()));
232   DAG.RemoveDeadNodes();
233   
234   // Emit machine code to BB. 
235   ScheduleAndEmitDAG(DAG);
236 }
237
238 // Select - Convert the specified operand from a target-independent to a
239 // target-specific node if it hasn't already been changed.
240 SDNode *AlphaDAGToDAGISel::Select(SDOperand Op) {
241   SDNode *N = Op.Val;
242   if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
243       N->getOpcode() < AlphaISD::FIRST_NUMBER) {
244     return NULL;   // Already selected.
245   }
246
247   switch (N->getOpcode()) {
248   default: break;
249   case AlphaISD::CALL:
250     SelectCALL(Op);
251     return NULL;
252
253   case ISD::FrameIndex: {
254     int FI = cast<FrameIndexSDNode>(N)->getIndex();
255     return CurDAG->SelectNodeTo(N, Alpha::LDA, MVT::i64,
256                                 CurDAG->getTargetFrameIndex(FI, MVT::i32),
257                                 getI64Imm(0));
258   }
259   case ISD::GLOBAL_OFFSET_TABLE: {
260     SDOperand Result = getGlobalBaseReg();
261     ReplaceUses(Op, Result);
262     return NULL;
263   }
264   case AlphaISD::GlobalRetAddr: {
265     SDOperand Result = getGlobalRetAddr();
266     ReplaceUses(Op, Result);
267     return NULL;
268   }
269   
270   case AlphaISD::DivCall: {
271     SDOperand Chain = CurDAG->getEntryNode();
272     SDOperand N0 = Op.getOperand(0);
273     SDOperand N1 = Op.getOperand(1);
274     SDOperand N2 = Op.getOperand(2);
275     AddToISelQueue(N0);
276     AddToISelQueue(N1);
277     AddToISelQueue(N2);
278     Chain = CurDAG->getCopyToReg(Chain, Alpha::R24, N1, 
279                                  SDOperand(0,0));
280     Chain = CurDAG->getCopyToReg(Chain, Alpha::R25, N2, 
281                                  Chain.getValue(1));
282     Chain = CurDAG->getCopyToReg(Chain, Alpha::R27, N0, 
283                                  Chain.getValue(1));
284     SDNode *CNode =
285       CurDAG->getTargetNode(Alpha::JSRs, MVT::Other, MVT::Flag, 
286                             Chain, Chain.getValue(1));
287     Chain = CurDAG->getCopyFromReg(Chain, Alpha::R27, MVT::i64, 
288                                   SDOperand(CNode, 1));
289     return CurDAG->SelectNodeTo(N, Alpha::BIS, MVT::i64, Chain, Chain);
290   }
291
292   case ISD::READCYCLECOUNTER: {
293     SDOperand Chain = N->getOperand(0);
294     AddToISelQueue(Chain); //Select chain
295     return CurDAG->getTargetNode(Alpha::RPCC, MVT::i64, MVT::Other,
296                                  Chain);
297   }
298
299   case ISD::Constant: {
300     uint64_t uval = cast<ConstantSDNode>(N)->getValue();
301     
302     if (uval == 0) {
303       SDOperand Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
304                                                 Alpha::R31, MVT::i64);
305       ReplaceUses(Op, Result);
306       return NULL;
307     }
308
309     int64_t val = (int64_t)uval;
310     int32_t val32 = (int32_t)val;
311     if (val <= IMM_HIGH + IMM_HIGH * IMM_MULT &&
312         val >= IMM_LOW  + IMM_LOW  * IMM_MULT)
313       break; //(LDAH (LDA))
314     if ((uval >> 32) == 0 && //empty upper bits
315         val32 <= IMM_HIGH + IMM_HIGH * IMM_MULT)
316       //        val32 >= IMM_LOW  + IMM_LOW  * IMM_MULT) //always true
317       break; //(zext (LDAH (LDA)))
318     //Else use the constant pool
319     MachineConstantPool *CP = BB->getParent()->getConstantPool();
320     ConstantInt *C = ConstantInt::get(Type::ULongTy, uval);
321     SDOperand CPI = CurDAG->getTargetConstantPool(C, MVT::i64);
322     SDNode *Tmp = CurDAG->getTargetNode(Alpha::LDAHr, MVT::i64, CPI,
323                                         getGlobalBaseReg());
324     return CurDAG->SelectNodeTo(N, Alpha::LDQr, MVT::i64, MVT::Other, 
325                             CPI, SDOperand(Tmp, 0), CurDAG->getEntryNode());
326   }
327   case ISD::TargetConstantFP: {
328     ConstantFPSDNode *CN = cast<ConstantFPSDNode>(N);
329     bool isDouble = N->getValueType(0) == MVT::f64;
330     MVT::ValueType T = isDouble ? MVT::f64 : MVT::f32;
331     if (CN->isExactlyValue(+0.0)) {
332       return CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYST : Alpha::CPYSS,
333                                   T, CurDAG->getRegister(Alpha::F31, T),
334                                   CurDAG->getRegister(Alpha::F31, T));
335     } else if ( CN->isExactlyValue(-0.0)) {
336       return CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYSNT : Alpha::CPYSNS,
337                                   T, CurDAG->getRegister(Alpha::F31, T),
338                                   CurDAG->getRegister(Alpha::F31, T));
339     } else {
340       abort();
341     }
342     break;
343   }
344
345   case ISD::SETCC:
346     if (MVT::isFloatingPoint(N->getOperand(0).Val->getValueType(0))) {
347       unsigned Opc = Alpha::WTF;
348       ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
349       bool rev = false;
350       bool isNE = false;
351       switch(CC) {
352       default: DEBUG(N->dump()); assert(0 && "Unknown FP comparison!");
353       case ISD::SETEQ: case ISD::SETOEQ: case ISD::SETUEQ: Opc = Alpha::CMPTEQ; break;
354       case ISD::SETLT: case ISD::SETOLT: case ISD::SETULT: Opc = Alpha::CMPTLT; break;
355       case ISD::SETLE: case ISD::SETOLE: case ISD::SETULE: Opc = Alpha::CMPTLE; break;
356       case ISD::SETGT: case ISD::SETOGT: case ISD::SETUGT: Opc = Alpha::CMPTLT; rev = true; break;
357       case ISD::SETGE: case ISD::SETOGE: case ISD::SETUGE: Opc = Alpha::CMPTLE; rev = true; break;
358       case ISD::SETNE: case ISD::SETONE: case ISD::SETUNE: Opc = Alpha::CMPTEQ; isNE = true; break;
359       };
360       SDOperand tmp1 = N->getOperand(0);
361       SDOperand tmp2 = N->getOperand(1);
362       AddToISelQueue(tmp1);
363       AddToISelQueue(tmp2);
364       SDNode *cmp = CurDAG->getTargetNode(Opc, MVT::f64, 
365                                           rev?tmp2:tmp1,
366                                           rev?tmp1:tmp2);
367       if (isNE) 
368         cmp = CurDAG->getTargetNode(Alpha::CMPTEQ, MVT::f64, SDOperand(cmp, 0), 
369                                     CurDAG->getRegister(Alpha::F31, MVT::f64));
370       
371       SDOperand LD;
372       if (AlphaLowering.hasITOF()) {
373         LD = CurDAG->getNode(AlphaISD::FTOIT_, MVT::i64, SDOperand(cmp, 0));
374       } else {
375         int FrameIdx =
376           CurDAG->getMachineFunction().getFrameInfo()->CreateStackObject(8, 8);
377         SDOperand FI = CurDAG->getFrameIndex(FrameIdx, MVT::i64);
378         SDOperand ST =
379           SDOperand(CurDAG->getTargetNode(Alpha::STT, MVT::Other, 
380                                           SDOperand(cmp, 0), FI,
381                                           CurDAG->getRegister(Alpha::R31, MVT::i64)), 0);
382         LD = SDOperand(CurDAG->getTargetNode(Alpha::LDQ, MVT::i64, FI, 
383                                              CurDAG->getRegister(Alpha::R31, MVT::i64),
384                                              ST), 0);
385       }
386       return CurDAG->getTargetNode(Alpha::CMPULT, MVT::i64, 
387                                    CurDAG->getRegister(Alpha::R31, MVT::i64),
388                                    LD);
389     }
390     break;
391
392   case ISD::SELECT:
393     if (MVT::isFloatingPoint(N->getValueType(0)) &&
394         (N->getOperand(0).getOpcode() != ISD::SETCC ||
395          !MVT::isFloatingPoint(N->getOperand(0).getOperand(1).getValueType()))) {
396       //This should be the condition not covered by the Patterns
397       //FIXME: Don't have SelectCode die, but rather return something testable
398       // so that things like this can be caught in fall though code
399       //move int to fp
400       bool isDouble = N->getValueType(0) == MVT::f64;
401       SDOperand LD;
402       SDOperand cond = N->getOperand(0);
403       SDOperand TV = N->getOperand(1);
404       SDOperand FV = N->getOperand(2);
405       AddToISelQueue(cond);
406       AddToISelQueue(TV);
407       AddToISelQueue(FV);
408       
409       if (AlphaLowering.hasITOF()) {
410         LD = CurDAG->getNode(AlphaISD::ITOFT_, MVT::f64, cond);
411       } else {
412         int FrameIdx =
413           CurDAG->getMachineFunction().getFrameInfo()->CreateStackObject(8, 8);
414         SDOperand FI = CurDAG->getFrameIndex(FrameIdx, MVT::i64);
415         SDOperand ST =
416           SDOperand(CurDAG->getTargetNode(Alpha::STQ, MVT::Other,
417                                           cond, FI, CurDAG->getRegister(Alpha::R31, MVT::i64)), 0);
418         LD = SDOperand(CurDAG->getTargetNode(Alpha::LDT, MVT::f64, FI,
419                                              CurDAG->getRegister(Alpha::R31, MVT::i64),
420                                              ST), 0);
421       }
422       return CurDAG->getTargetNode(isDouble?Alpha::FCMOVNET:Alpha::FCMOVNES,
423                                    MVT::f64, FV, TV, LD);
424     }
425     break;
426
427   case ISD::AND: {
428     ConstantSDNode* SC = NULL;
429     ConstantSDNode* MC = NULL;
430     if (N->getOperand(0).getOpcode() == ISD::SRL &&
431         (MC = dyn_cast<ConstantSDNode>(N->getOperand(1))) &&
432         (SC = dyn_cast<ConstantSDNode>(N->getOperand(0).getOperand(1))))
433       {
434         uint64_t sval = SC->getValue();
435         uint64_t mval = MC->getValue();
436         // If the result is a zap, let the autogened stuff handle it.
437         if (get_zapImm(N->getOperand(0), mval))
438           break;
439         // given mask X, and shift S, we want to see if there is any zap in the
440         // mask if we play around with the botton S bits
441         uint64_t dontcare = (~0ULL) >> (64 - sval);
442         uint64_t mask = mval << sval;
443
444         if (get_zapImm(mask | dontcare))
445           mask = mask | dontcare;
446
447         if (get_zapImm(mask)) {
448           AddToISelQueue(N->getOperand(0).getOperand(0));
449           SDOperand Z = 
450             SDOperand(CurDAG->getTargetNode(Alpha::ZAPNOTi, MVT::i64,
451                                             N->getOperand(0).getOperand(0),
452                                             getI64Imm(get_zapImm(mask))), 0);
453           return CurDAG->getTargetNode(Alpha::SRL, MVT::i64, Z, 
454                                        getI64Imm(sval));
455         }
456       }
457     break;
458   }
459
460   }
461
462   return SelectCode(Op);
463 }
464
465 void AlphaDAGToDAGISel::SelectCALL(SDOperand Op) {
466   //TODO: add flag stuff to prevent nondeturministic breakage!
467
468   SDNode *N = Op.Val;
469   SDOperand Chain = N->getOperand(0);
470   SDOperand Addr = N->getOperand(1);
471   SDOperand InFlag(0,0);  // Null incoming flag value.
472   AddToISelQueue(Chain);
473
474    std::vector<SDOperand> CallOperands;
475    std::vector<MVT::ValueType> TypeOperands;
476   
477    //grab the arguments
478    for(int i = 2, e = N->getNumOperands(); i < e; ++i) {
479      TypeOperands.push_back(N->getOperand(i).getValueType());
480      AddToISelQueue(N->getOperand(i));
481      CallOperands.push_back(N->getOperand(i));
482    }
483    int count = N->getNumOperands() - 2;
484
485    static const unsigned args_int[] = {Alpha::R16, Alpha::R17, Alpha::R18,
486                                        Alpha::R19, Alpha::R20, Alpha::R21};
487    static const unsigned args_float[] = {Alpha::F16, Alpha::F17, Alpha::F18,
488                                          Alpha::F19, Alpha::F20, Alpha::F21};
489    
490    for (int i = 6; i < count; ++i) {
491      unsigned Opc = Alpha::WTF;
492      if (MVT::isInteger(TypeOperands[i])) {
493        Opc = Alpha::STQ;
494      } else if (TypeOperands[i] == MVT::f32) {
495        Opc = Alpha::STS;
496      } else if (TypeOperands[i] == MVT::f64) {
497        Opc = Alpha::STT;
498      } else
499        assert(0 && "Unknown operand"); 
500
501      SDOperand Ops[] = { CallOperands[i],  getI64Imm((i - 6) * 8), 
502                          CurDAG->getCopyFromReg(Chain, Alpha::R30, MVT::i64),
503                          Chain };
504      Chain = SDOperand(CurDAG->getTargetNode(Opc, MVT::Other, Ops, 4), 0);
505    }
506    for (int i = 0; i < std::min(6, count); ++i) {
507      if (MVT::isInteger(TypeOperands[i])) {
508        Chain = CurDAG->getCopyToReg(Chain, args_int[i], CallOperands[i], InFlag);
509        InFlag = Chain.getValue(1);
510      } else if (TypeOperands[i] == MVT::f32 || TypeOperands[i] == MVT::f64) {
511        Chain = CurDAG->getCopyToReg(Chain, args_float[i], CallOperands[i], InFlag);
512        InFlag = Chain.getValue(1);
513      } else
514        assert(0 && "Unknown operand"); 
515    }
516
517    // Finally, once everything is in registers to pass to the call, emit the
518    // call itself.
519    if (Addr.getOpcode() == AlphaISD::GPRelLo) {
520      SDOperand GOT = getGlobalBaseReg();
521      Chain = CurDAG->getCopyToReg(Chain, Alpha::R29, GOT, InFlag);
522      InFlag = Chain.getValue(1);
523      Chain = SDOperand(CurDAG->getTargetNode(Alpha::BSR, MVT::Other, MVT::Flag, 
524                                              Addr.getOperand(0), Chain, InFlag), 0);
525    } else {
526      AddToISelQueue(Addr);
527      Chain = CurDAG->getCopyToReg(Chain, Alpha::R27, Addr, InFlag);
528      InFlag = Chain.getValue(1);
529      Chain = SDOperand(CurDAG->getTargetNode(Alpha::JSR, MVT::Other, MVT::Flag, 
530                                              Chain, InFlag), 0);
531    }
532    InFlag = Chain.getValue(1);
533
534    std::vector<SDOperand> CallResults;
535   
536    switch (N->getValueType(0)) {
537    default: assert(0 && "Unexpected ret value!");
538      case MVT::Other: break;
539    case MVT::i64:
540      Chain = CurDAG->getCopyFromReg(Chain, Alpha::R0, MVT::i64, InFlag).getValue(1);
541      CallResults.push_back(Chain.getValue(0));
542      break;
543    case MVT::f32:
544      Chain = CurDAG->getCopyFromReg(Chain, Alpha::F0, MVT::f32, InFlag).getValue(1);
545      CallResults.push_back(Chain.getValue(0));
546      break;
547    case MVT::f64:
548      Chain = CurDAG->getCopyFromReg(Chain, Alpha::F0, MVT::f64, InFlag).getValue(1);
549      CallResults.push_back(Chain.getValue(0));
550      break;
551    }
552
553    CallResults.push_back(Chain);
554    for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
555      ReplaceUses(Op.getValue(i), CallResults[i]);
556 }
557
558
559 /// createAlphaISelDag - This pass converts a legalized DAG into a 
560 /// Alpha-specific DAG, ready for instruction scheduling.
561 ///
562 FunctionPass *llvm::createAlphaISelDag(TargetMachine &TM) {
563   return new AlphaDAGToDAGISel(TM);
564 }