e9d9b91dc02ba00827a62d31cefa2fe6dfe66e90
[oota-llvm.git] / lib / Target / Alpha / AlphaISelLowering.h
1 //===-- AlphaISelLowering.h - Alpha DAG Lowering Interface ------*- C++ -*-===//
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 the interfaces that Alpha uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
16 #define LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
17
18 #include "llvm/Target/TargetLowering.h"
19 #include "llvm/CodeGen/SelectionDAG.h"
20 #include "Alpha.h"
21
22 namespace llvm {
23
24   namespace AlphaISD {
25     enum NodeType {
26       // Start the numbering where the builting ops and target ops leave off.
27       FIRST_NUMBER = ISD::BUILTIN_OP_END+Alpha::INSTRUCTION_LIST_END,
28       //These corrospond to the identical Instruction
29       ITOFT_, FTOIT_, CVTQT_, CVTQS_, CVTTQ_,
30
31       /// GPRelHi/GPRelLo - These represent the high and low 16-bit
32       /// parts of a global address respectively.
33       GPRelHi, GPRelLo, 
34
35       /// RetLit - Literal Relocation of a Global
36       RelLit,
37
38       /// GlobalBaseReg - used to restore the GOT ptr
39       GlobalBaseReg,
40
41       /// DIVCALL - used for special library calls for div and rem
42       DivCall,
43
44     };
45   }
46
47   class AlphaTargetLowering : public TargetLowering {
48     int VarArgsOffset;  // What is the offset to the first vaarg
49     int VarArgsBase;    // What is the base FrameIndex
50     unsigned GP; //GOT vreg
51     unsigned RA; //Return Address
52     bool useITOF;
53   public:
54     AlphaTargetLowering(TargetMachine &TM);
55     
56     /// LowerOperation - Provide custom lowering hooks for some operations.
57     ///
58     virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
59
60     //Friendly names for dumps
61     const char *getTargetNodeName(unsigned Opcode) const;
62
63     /// LowerArguments - This hook must be implemented to indicate how we should
64     /// lower the arguments for the specified function, into the specified DAG.
65     virtual std::vector<SDOperand>
66     LowerArguments(Function &F, SelectionDAG &DAG);
67
68     /// LowerCallTo - This hook lowers an abstract call to a function into an
69     /// actual call.
70     virtual std::pair<SDOperand, SDOperand>
71     LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
72                 bool isTailCall, SDOperand Callee, ArgListTy &Args,
73                 SelectionDAG &DAG);
74
75     virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
76                                    Value *VAListV, SelectionDAG &DAG);
77     virtual SDOperand LowerVACopy(SDOperand Chain, SDOperand SrcP, Value *SrcV,
78                                   SDOperand DestP, Value *DestV,
79                                   SelectionDAG &DAG);
80     virtual std::pair<SDOperand,SDOperand>
81       LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
82                  const Type *ArgTy, SelectionDAG &DAG);
83
84     void restoreGP(MachineBasicBlock* BB);
85     void restoreRA(MachineBasicBlock* BB);
86     unsigned getVRegGP() { return GP; }
87     unsigned getVRegRA() { return RA; }
88     bool hasITOF() { return useITOF; }
89   };
90 }
91
92 #endif   // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H