- Change "ExternalSymbolSDNode" to "SymbolSDNode".
[oota-llvm.git] / lib / Target / IA64 / IA64ISelDAGToDAG.cpp
1 //===---- IA64ISelDAGToDAG.cpp - IA64 pattern matching inst selector ------===//
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 defines a pattern matching instruction selector for IA64,
11 // converting a legalized dag to an IA64 dag.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "ia64-codegen"
16 #include "IA64.h"
17 #include "IA64TargetMachine.h"
18 #include "IA64ISelLowering.h"
19 #include "llvm/CodeGen/MachineInstrBuilder.h"
20 #include "llvm/CodeGen/MachineFunction.h"
21 #include "llvm/CodeGen/SelectionDAG.h"
22 #include "llvm/CodeGen/SelectionDAGISel.h"
23 #include "llvm/Target/TargetOptions.h"
24 #include "llvm/Constants.h"
25 #include "llvm/GlobalValue.h"
26 #include "llvm/Intrinsics.h"
27 #include "llvm/Support/Compiler.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/MathExtras.h"
30 #include <queue>
31 #include <set>
32 using namespace llvm;
33
34 namespace {
35   //===--------------------------------------------------------------------===//
36   /// IA64DAGToDAGISel - IA64 specific code to select IA64 machine
37   /// instructions for SelectionDAG operations.
38   ///
39   class IA64DAGToDAGISel : public SelectionDAGISel {
40     IA64TargetLowering IA64Lowering;
41     unsigned GlobalBaseReg;
42   public:
43     explicit IA64DAGToDAGISel(IA64TargetMachine &TM)
44       : SelectionDAGISel(IA64Lowering), IA64Lowering(*TM.getTargetLowering()) {}
45     
46     virtual bool runOnFunction(Function &Fn) {
47       // Make sure we re-emit a set of the global base reg if necessary
48       GlobalBaseReg = 0;
49       return SelectionDAGISel::runOnFunction(Fn);
50     }
51  
52     /// getI64Imm - Return a target constant with the specified value, of type
53     /// i64.
54     inline SDValue getI64Imm(uint64_t Imm) {
55       return CurDAG->getTargetConstant(Imm, MVT::i64);
56     }
57
58     /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
59     /// base register.  Return the virtual register that holds this value.
60     // SDValue getGlobalBaseReg(); TODO: hmm
61     
62     // Select - Convert the specified operand from a target-independent to a
63     // target-specific node if it hasn't already been changed.
64     SDNode *Select(SDValue N);
65     
66     SDNode *SelectIntImmediateExpr(SDValue LHS, SDValue RHS,
67                                    unsigned OCHi, unsigned OCLo,
68                                    bool IsArithmetic = false,
69                                    bool Negate = false);
70     SDNode *SelectBitfieldInsert(SDNode *N);
71
72     /// SelectCC - Select a comparison of the specified values with the
73     /// specified condition code, returning the CR# of the expression.
74     SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC);
75
76     /// SelectAddr - Given the specified address, return the two operands for a
77     /// load/store instruction, and return true if it should be an indexed [r+r]
78     /// operation.
79     bool SelectAddr(SDValue Addr, SDValue &Op1, SDValue &Op2);
80
81     /// InstructionSelect - This callback is invoked by
82     /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
83     virtual void InstructionSelect();
84     
85     virtual const char *getPassName() const {
86       return "IA64 (Itanium) DAG->DAG Instruction Selector";
87     } 
88
89 // Include the pieces autogenerated from the target description.
90 #include "IA64GenDAGISel.inc"
91     
92 private:
93     SDNode *SelectDIV(SDValue Op);
94   };
95 }
96
97 /// InstructionSelect - This callback is invoked by
98 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
99 void IA64DAGToDAGISel::InstructionSelect() {
100   DEBUG(BB->dump());
101
102   // Select target instructions for the DAG.
103   SelectRoot();
104   CurDAG->RemoveDeadNodes();
105 }
106
107 SDNode *IA64DAGToDAGISel::SelectDIV(SDValue Op) {
108   SDNode *N = Op.getNode();
109   SDValue Chain = N->getOperand(0);
110   SDValue Tmp1 = N->getOperand(0);
111   SDValue Tmp2 = N->getOperand(1);
112   AddToISelQueue(Chain);
113
114   AddToISelQueue(Tmp1);
115   AddToISelQueue(Tmp2);
116
117   bool isFP=false;
118
119   if(Tmp1.getValueType().isFloatingPoint())
120     isFP=true;
121     
122   bool isModulus=false; // is it a division or a modulus?
123   bool isSigned=false;
124
125   switch(N->getOpcode()) {
126     case ISD::FDIV:
127     case ISD::SDIV:  isModulus=false; isSigned=true;  break;
128     case ISD::UDIV:  isModulus=false; isSigned=false; break;
129     case ISD::FREM:
130     case ISD::SREM:  isModulus=true;  isSigned=true;  break;
131     case ISD::UREM:  isModulus=true;  isSigned=false; break;
132   }
133
134   // TODO: check for integer divides by powers of 2 (or other simple patterns?)
135
136     SDValue TmpPR, TmpPR2;
137     SDValue TmpF1, TmpF2, TmpF3, TmpF4, TmpF5, TmpF6, TmpF7, TmpF8;
138     SDValue TmpF9, TmpF10,TmpF11,TmpF12,TmpF13,TmpF14,TmpF15;
139     SDNode *Result;
140
141     // we'll need copies of F0 and F1
142     SDValue F0 = CurDAG->getRegister(IA64::F0, MVT::f64);
143     SDValue F1 = CurDAG->getRegister(IA64::F1, MVT::f64);
144     
145     // OK, emit some code:
146
147     if(!isFP) {
148       // first, load the inputs into FP regs.
149       TmpF1 =
150         SDValue(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, Tmp1), 0);
151       Chain = TmpF1.getValue(1);
152       TmpF2 =
153         SDValue(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, Tmp2), 0);
154       Chain = TmpF2.getValue(1);
155       
156       // next, convert the inputs to FP
157       if(isSigned) {
158         TmpF3 =
159           SDValue(CurDAG->getTargetNode(IA64::FCVTXF, MVT::f64, TmpF1), 0);
160         Chain = TmpF3.getValue(1);
161         TmpF4 =
162           SDValue(CurDAG->getTargetNode(IA64::FCVTXF, MVT::f64, TmpF2), 0);
163         Chain = TmpF4.getValue(1);
164       } else { // is unsigned
165         TmpF3 =
166           SDValue(CurDAG->getTargetNode(IA64::FCVTXUFS1, MVT::f64, TmpF1), 0);
167         Chain = TmpF3.getValue(1);
168         TmpF4 =
169           SDValue(CurDAG->getTargetNode(IA64::FCVTXUFS1, MVT::f64, TmpF2), 0);
170         Chain = TmpF4.getValue(1);
171       }
172
173     } else { // this is an FP divide/remainder, so we 'leak' some temp
174              // regs and assign TmpF3=Tmp1, TmpF4=Tmp2
175       TmpF3=Tmp1;
176       TmpF4=Tmp2;
177     }
178
179     // we start by computing an approximate reciprocal (good to 9 bits?)
180     // note, this instruction writes _both_ TmpF5 (answer) and TmpPR (predicate)
181     if(isFP)
182       TmpF5 = SDValue(CurDAG->getTargetNode(IA64::FRCPAS0, MVT::f64, MVT::i1,
183                                               TmpF3, TmpF4), 0);
184     else
185       TmpF5 = SDValue(CurDAG->getTargetNode(IA64::FRCPAS1, MVT::f64, MVT::i1,
186                                               TmpF3, TmpF4), 0);
187                                   
188     TmpPR = TmpF5.getValue(1);
189     Chain = TmpF5.getValue(2);
190
191     SDValue minusB;
192     if(isModulus) { // for remainders, it'll be handy to have
193                              // copies of -input_b
194       minusB = SDValue(CurDAG->getTargetNode(IA64::SUB, MVT::i64,
195                   CurDAG->getRegister(IA64::r0, MVT::i64), Tmp2), 0);
196       Chain = minusB.getValue(1);
197     }
198     
199     SDValue TmpE0, TmpY1, TmpE1, TmpY2;
200
201     SDValue OpsE0[] = { TmpF4, TmpF5, F1, TmpPR };
202     TmpE0 = SDValue(CurDAG->getTargetNode(IA64::CFNMAS1, MVT::f64,
203                                             OpsE0, 4), 0);
204     Chain = TmpE0.getValue(1);
205     SDValue OpsY1[] = { TmpF5, TmpE0, TmpF5, TmpPR };
206     TmpY1 = SDValue(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
207                                             OpsY1, 4), 0);
208     Chain = TmpY1.getValue(1);
209     SDValue OpsE1[] = { TmpE0, TmpE0, F0, TmpPR };
210     TmpE1 = SDValue(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
211                                             OpsE1, 4), 0);
212     Chain = TmpE1.getValue(1);
213     SDValue OpsY2[] = { TmpY1, TmpE1, TmpY1, TmpPR };
214     TmpY2 = SDValue(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
215                                             OpsY2, 4), 0);
216     Chain = TmpY2.getValue(1);
217     
218     if(isFP) { // if this is an FP divide, we finish up here and exit early
219       if(isModulus)
220         assert(0 && "Sorry, try another FORTRAN compiler.");
221  
222       SDValue TmpE2, TmpY3, TmpQ0, TmpR0;
223
224       SDValue OpsE2[] = { TmpE1, TmpE1, F0, TmpPR };
225       TmpE2 = SDValue(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
226                                               OpsE2, 4), 0);
227       Chain = TmpE2.getValue(1);
228       SDValue OpsY3[] = { TmpY2, TmpE2, TmpY2, TmpPR };
229       TmpY3 = SDValue(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
230                                               OpsY3, 4), 0);
231       Chain = TmpY3.getValue(1);
232       SDValue OpsQ0[] = { Tmp1, TmpY3, F0, TmpPR };
233       TmpQ0 =
234         SDValue(CurDAG->getTargetNode(IA64::CFMADS1, MVT::f64, // double prec!
235                                         OpsQ0, 4), 0);
236       Chain = TmpQ0.getValue(1);
237       SDValue OpsR0[] = { Tmp2, TmpQ0, Tmp1, TmpPR };
238       TmpR0 =
239         SDValue(CurDAG->getTargetNode(IA64::CFNMADS1, MVT::f64, // double prec!
240                                         OpsR0, 4), 0);
241       Chain = TmpR0.getValue(1);
242
243 // we want Result to have the same target register as the frcpa, so
244 // we two-address hack it. See the comment "for this to work..." on
245 // page 48 of Intel application note #245415
246       SDValue Ops[] = { TmpF5, TmpY3, TmpR0, TmpQ0, TmpPR };
247       Result = CurDAG->getTargetNode(IA64::TCFMADS0, MVT::f64, // d.p. s0 rndg!
248                                      Ops, 5);
249       Chain = SDValue(Result, 1);
250       return Result; // XXX: early exit!
251     } else { // this is *not* an FP divide, so there's a bit left to do:
252     
253       SDValue TmpQ2, TmpR2, TmpQ3, TmpQ;
254
255       SDValue OpsQ2[] = { TmpF3, TmpY2, F0, TmpPR };
256       TmpQ2 = SDValue(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
257                                               OpsQ2, 4), 0);
258       Chain = TmpQ2.getValue(1);
259       SDValue OpsR2[] = { TmpF4, TmpQ2, TmpF3, TmpPR };
260       TmpR2 = SDValue(CurDAG->getTargetNode(IA64::CFNMAS1, MVT::f64,
261                                               OpsR2, 4), 0);
262       Chain = TmpR2.getValue(1);
263       
264 // we want TmpQ3 to have the same target register as the frcpa? maybe we
265 // should two-address hack it. See the comment "for this to work..." on page
266 // 48 of Intel application note #245415
267       SDValue OpsQ3[] = { TmpF5, TmpR2, TmpY2, TmpQ2, TmpPR };
268       TmpQ3 = SDValue(CurDAG->getTargetNode(IA64::TCFMAS1, MVT::f64,
269                                          OpsQ3, 5), 0);
270       Chain = TmpQ3.getValue(1);
271
272       // STORY: without these two-address instructions (TCFMAS1 and TCFMADS0)
273       // the FPSWA won't be able to help out in the case of large/tiny
274       // arguments. Other fun bugs may also appear, e.g. 0/x = x, not 0.
275       
276       if(isSigned)
277         TmpQ = SDValue(CurDAG->getTargetNode(IA64::FCVTFXTRUNCS1,
278                                                MVT::f64, TmpQ3), 0);
279       else
280         TmpQ = SDValue(CurDAG->getTargetNode(IA64::FCVTFXUTRUNCS1,
281                                                MVT::f64, TmpQ3), 0);
282       
283       Chain = TmpQ.getValue(1);
284
285       if(isModulus) {
286         SDValue FPminusB =
287           SDValue(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, minusB), 0);
288         Chain = FPminusB.getValue(1);
289         SDValue Remainder =
290           SDValue(CurDAG->getTargetNode(IA64::XMAL, MVT::f64,
291                                           TmpQ, FPminusB, TmpF1), 0);
292         Chain = Remainder.getValue(1);
293         Result = CurDAG->getTargetNode(IA64::GETFSIG, MVT::i64, Remainder);
294         Chain = SDValue(Result, 1);
295       } else { // just an integer divide
296         Result = CurDAG->getTargetNode(IA64::GETFSIG, MVT::i64, TmpQ);
297         Chain = SDValue(Result, 1);
298       }
299
300       return Result;
301     } // wasn't an FP divide
302 }
303
304 // Select - Convert the specified operand from a target-independent to a
305 // target-specific node if it hasn't already been changed.
306 SDNode *IA64DAGToDAGISel::Select(SDValue Op) {
307   SDNode *N = Op.getNode();
308   if (N->isMachineOpcode())
309     return NULL;   // Already selected.
310
311   switch (N->getOpcode()) {
312   default: break;
313
314   case IA64ISD::BRCALL: { // XXX: this is also a hack!
315     SDValue Chain = N->getOperand(0);
316     SDValue InFlag;  // Null incoming flag value.
317
318     AddToISelQueue(Chain);
319     if(N->getNumOperands()==3) { // we have an incoming chain, callee and flag
320       InFlag = N->getOperand(2);
321       AddToISelQueue(InFlag);
322     }
323
324     unsigned CallOpcode;
325     SDValue CallOperand;
326     
327     // if we can call directly, do so
328     if (GlobalAddressSDNode *GASD =
329       dyn_cast<GlobalAddressSDNode>(N->getOperand(1))) {
330       CallOpcode = IA64::BRCALL_IPREL_GA;
331       CallOperand = CurDAG->getTargetGlobalAddress(GASD->getGlobal(), MVT::i64);
332     } else if (isa<SymbolSDNode>(N->getOperand(1))) {
333       // FIXME: we currently NEED this case for correctness, to avoid
334       // "non-pic code with imm reloc.n against dynamic symbol" errors
335     CallOpcode = IA64::BRCALL_IPREL_ES;
336     CallOperand = N->getOperand(1);
337   } else {
338     // otherwise we need to load the function descriptor,
339     // load the branch target (function)'s entry point and GP,
340     // branch (call) then restore the GP
341     SDValue FnDescriptor = N->getOperand(1);
342     AddToISelQueue(FnDescriptor);
343    
344     // load the branch target's entry point [mem] and 
345     // GP value [mem+8]
346     SDValue targetEntryPoint=
347       SDValue(CurDAG->getTargetNode(IA64::LD8, MVT::i64, MVT::Other,
348                                       FnDescriptor, CurDAG->getEntryNode()), 0);
349     Chain = targetEntryPoint.getValue(1);
350     SDValue targetGPAddr=
351       SDValue(CurDAG->getTargetNode(IA64::ADDS, MVT::i64, 
352                                       FnDescriptor,
353                                       CurDAG->getConstant(8, MVT::i64)), 0);
354     Chain = targetGPAddr.getValue(1);
355     SDValue targetGP =
356       SDValue(CurDAG->getTargetNode(IA64::LD8, MVT::i64,MVT::Other,
357                                       targetGPAddr, CurDAG->getEntryNode()), 0);
358     Chain = targetGP.getValue(1);
359
360     Chain = CurDAG->getCopyToReg(Chain, IA64::r1, targetGP, InFlag);
361     InFlag = Chain.getValue(1);
362     Chain = CurDAG->getCopyToReg(Chain, IA64::B6,
363                                  targetEntryPoint, InFlag); // FLAG these?
364     InFlag = Chain.getValue(1);
365     
366     CallOperand = CurDAG->getRegister(IA64::B6, MVT::i64);
367     CallOpcode = IA64::BRCALL_INDIRECT;
368   }
369  
370    // Finally, once everything is setup, emit the call itself
371    if (InFlag.getNode())
372      Chain = SDValue(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
373                                              CallOperand, InFlag), 0);
374    else // there might be no arguments
375      Chain = SDValue(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
376                                              CallOperand, Chain), 0);
377    InFlag = Chain.getValue(1);
378
379    std::vector<SDValue> CallResults;
380
381    CallResults.push_back(Chain);
382    CallResults.push_back(InFlag);
383
384    for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
385      ReplaceUses(Op.getValue(i), CallResults[i]);
386    return NULL;
387   }
388   
389   case IA64ISD::GETFD: {
390     SDValue Input = N->getOperand(0);
391     AddToISelQueue(Input);
392     return CurDAG->getTargetNode(IA64::GETFD, MVT::i64, Input);
393   } 
394   
395   case ISD::FDIV:
396   case ISD::SDIV:
397   case ISD::UDIV:
398   case ISD::SREM:
399   case ISD::UREM:
400     return SelectDIV(Op);
401  
402   case ISD::TargetConstantFP: {
403     SDValue Chain = CurDAG->getEntryNode(); // this is a constant, so..
404
405     SDValue V;
406     ConstantFPSDNode* N2 = cast<ConstantFPSDNode>(N);
407     if (N2->getValueAPF().isPosZero()) {
408       V = CurDAG->getCopyFromReg(Chain, IA64::F0, MVT::f64);
409     } else if (N2->isExactlyValue(N2->getValueType(0) == MVT::f32 ? 
410                                   APFloat(+1.0f) : APFloat(+1.0))) {
411       V = CurDAG->getCopyFromReg(Chain, IA64::F1, MVT::f64);
412     } else
413       assert(0 && "Unexpected FP constant!");
414     
415     ReplaceUses(SDValue(N, 0), V);
416     return 0;
417   }
418
419   case ISD::FrameIndex: { // TODO: reduce creepyness
420     int FI = cast<FrameIndexSDNode>(N)->getIndex();
421     if (N->hasOneUse())
422       return CurDAG->SelectNodeTo(N, IA64::MOV, MVT::i64,
423                                   CurDAG->getTargetFrameIndex(FI, MVT::i64));
424     else
425       return CurDAG->getTargetNode(IA64::MOV, MVT::i64,
426                                    CurDAG->getTargetFrameIndex(FI, MVT::i64));
427   }
428
429   case ISD::ConstantPool: { // TODO: nuke the constant pool
430     // (ia64 doesn't need one)
431     ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
432     Constant *C = CP->getConstVal();
433     SDValue CPI = CurDAG->getTargetConstantPool(C, MVT::i64,
434                                                   CP->getAlignment());
435     return CurDAG->getTargetNode(IA64::ADDL_GA, MVT::i64, // ?
436                                  CurDAG->getRegister(IA64::r1, MVT::i64), CPI);
437   }
438
439   case ISD::GlobalAddress: {
440     GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
441     SDValue GA = CurDAG->getTargetGlobalAddress(GV, MVT::i64);
442     SDValue Tmp =
443       SDValue(CurDAG->getTargetNode(IA64::ADDL_GA, MVT::i64, 
444                                       CurDAG->getRegister(IA64::r1,
445                                                           MVT::i64), GA), 0);
446     return CurDAG->getTargetNode(IA64::LD8, MVT::i64, MVT::Other, Tmp,
447                                  CurDAG->getEntryNode());
448   }
449   
450 /* XXX
451    case ISD::Symbol: {
452      SDValue EA = CurDAG->getTargetSymbol(
453        cast<SymbolSDNode>(N)->getSymbol(),
454        MVT::i64);
455      SDValue Tmp = CurDAG->getTargetNode(IA64::ADDL_EA, MVT::i64, 
456                                            CurDAG->getRegister(IA64::r1,
457                                                                MVT::i64),
458                                            EA);
459      return CurDAG->getTargetNode(IA64::LD8, MVT::i64, Tmp);
460    }
461 */
462
463   case ISD::LOAD: { // FIXME: load -1, not 1, for bools?
464     LoadSDNode *LD = cast<LoadSDNode>(N);
465     SDValue Chain = LD->getChain();
466     SDValue Address = LD->getBasePtr();
467     AddToISelQueue(Chain);
468     AddToISelQueue(Address);
469
470     MVT TypeBeingLoaded = LD->getMemoryVT();
471     unsigned Opc;
472     switch (TypeBeingLoaded.getSimpleVT()) {
473     default:
474 #ifndef NDEBUG
475       N->dump(CurDAG);
476 #endif
477       assert(0 && "Cannot load this type!");
478     case MVT::i1: { // this is a bool
479       Opc = IA64::LD1; // first we load a byte, then compare for != 0
480       if(N->getValueType(0) == MVT::i1) { // XXX: early exit!
481         return CurDAG->SelectNodeTo(N, IA64::CMPNE, MVT::i1, MVT::Other, 
482                     SDValue(CurDAG->getTargetNode(Opc, MVT::i64, Address), 0),
483                                     CurDAG->getRegister(IA64::r0, MVT::i64), 
484                                     Chain);
485       }
486       /* otherwise, we want to load a bool into something bigger: LD1
487          will do that for us, so we just fall through */
488     }
489     case MVT::i8:  Opc = IA64::LD1; break;
490     case MVT::i16: Opc = IA64::LD2; break;
491     case MVT::i32: Opc = IA64::LD4; break;
492     case MVT::i64: Opc = IA64::LD8; break;
493     
494     case MVT::f32: Opc = IA64::LDF4; break;
495     case MVT::f64: Opc = IA64::LDF8; break;
496     }
497
498     // TODO: comment this
499     return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), MVT::Other,
500                                 Address, Chain);
501   }
502   
503   case ISD::STORE: {
504     StoreSDNode *ST = cast<StoreSDNode>(N);
505     SDValue Address = ST->getBasePtr();
506     SDValue Chain = ST->getChain();
507     AddToISelQueue(Address);
508     AddToISelQueue(Chain);
509    
510     unsigned Opc;
511     if (ISD::isNON_TRUNCStore(N)) {
512       switch (N->getOperand(1).getValueType().getSimpleVT()) {
513       default: assert(0 && "unknown type in store");
514       case MVT::i1: { // this is a bool
515         Opc = IA64::ST1; // we store either 0 or 1 as a byte 
516         // first load zero!
517         SDValue Initial = CurDAG->getCopyFromReg(Chain, IA64::r0, MVT::i64);
518         Chain = Initial.getValue(1);
519         // then load 1 into the same reg iff the predicate to store is 1
520         SDValue Tmp = ST->getValue();
521         AddToISelQueue(Tmp);
522         Tmp =
523           SDValue(CurDAG->getTargetNode(IA64::TPCADDS, MVT::i64, Initial,
524                                           CurDAG->getTargetConstant(1,
525                                                                     MVT::i64),
526                                           Tmp), 0);
527         return CurDAG->SelectNodeTo(N, Opc, MVT::Other, Address, Tmp, Chain);
528       }
529       case MVT::i64: Opc = IA64::ST8;  break;
530       case MVT::f64: Opc = IA64::STF8; break;
531       }
532     } else { // Truncating store
533       switch(ST->getMemoryVT().getSimpleVT()) {
534       default: assert(0 && "unknown type in truncstore");
535       case MVT::i8:  Opc = IA64::ST1;  break;
536       case MVT::i16: Opc = IA64::ST2;  break;
537       case MVT::i32: Opc = IA64::ST4;  break;
538       case MVT::f32: Opc = IA64::STF4; break;
539       }
540     }
541     
542     SDValue N1 = N->getOperand(1);
543     SDValue N2 = N->getOperand(2);
544     AddToISelQueue(N1);
545     AddToISelQueue(N2);
546     return CurDAG->SelectNodeTo(N, Opc, MVT::Other, N2, N1, Chain);
547   }
548
549   case ISD::BRCOND: {
550     SDValue Chain = N->getOperand(0);
551     SDValue CC = N->getOperand(1);
552     AddToISelQueue(Chain);
553     AddToISelQueue(CC);
554     MachineBasicBlock *Dest =
555       cast<BasicBlockSDNode>(N->getOperand(2))->getBasicBlock();
556     //FIXME - we do NOT need long branches all the time
557     return CurDAG->SelectNodeTo(N, IA64::BRLCOND_NOTCALL, MVT::Other, CC, 
558                                 CurDAG->getBasicBlock(Dest), Chain);
559   }
560
561   case ISD::CALLSEQ_START:
562   case ISD::CALLSEQ_END: {
563     int64_t Amt = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
564     unsigned Opc = N->getOpcode() == ISD::CALLSEQ_START ?
565       IA64::ADJUSTCALLSTACKDOWN : IA64::ADJUSTCALLSTACKUP;
566     SDValue N0 = N->getOperand(0);
567     AddToISelQueue(N0);
568     return CurDAG->SelectNodeTo(N, Opc, MVT::Other, getI64Imm(Amt), N0);
569   }
570
571   case ISD::BR:
572     // FIXME: we don't need long branches all the time!
573     SDValue N0 = N->getOperand(0);
574     AddToISelQueue(N0);
575     return CurDAG->SelectNodeTo(N, IA64::BRL_NOTCALL, MVT::Other, 
576                                 N->getOperand(1), N0);
577   }
578   
579   return SelectCode(Op);
580 }
581
582
583 /// createIA64DAGToDAGInstructionSelector - This pass converts a legalized DAG
584 /// into an IA64-specific DAG, ready for instruction scheduling.
585 ///
586 FunctionPass
587 *llvm::createIA64DAGToDAGInstructionSelector(IA64TargetMachine &TM) {
588   return new IA64DAGToDAGISel(TM);
589 }
590