a118d99462f73239e587a2f28a72e14e62e67f05
[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 is distributed under the University of Illinois Open Source
6 // 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/ADT/VectorExtras.h"
19 #include "llvm/Target/TargetLowering.h"
20 #include "llvm/CodeGen/SelectionDAG.h"
21 #include "Alpha.h"
22
23 namespace llvm {
24
25   namespace AlphaISD {
26     enum NodeType {
27       // Start the numbering where the builting ops and target ops leave off.
28       FIRST_NUMBER = ISD::BUILTIN_OP_END+Alpha::INSTRUCTION_LIST_END,
29       //These corrospond to the identical Instruction
30       CVTQT_, CVTQS_, CVTTQ_,
31
32       /// GPRelHi/GPRelLo - These represent the high and low 16-bit
33       /// parts of a global address respectively.
34       GPRelHi, GPRelLo, 
35
36       /// RetLit - Literal Relocation of a Global
37       RelLit,
38
39       /// GlobalRetAddr - used to restore the return address
40       GlobalRetAddr,
41       
42       /// CALL - Normal call.
43       CALL,
44
45       /// DIVCALL - used for special library calls for div and rem
46       DivCall,
47       
48       /// return flag operand
49       RET_FLAG,
50
51       /// CHAIN = COND_BRANCH CHAIN, OPC, (G|F)PRC, DESTBB [, INFLAG] - This
52       /// corresponds to the COND_BRANCH pseudo instruction.  
53       /// *PRC is the input register to compare to zero,
54       /// OPC is the branch opcode to use (e.g. Alpha::BEQ),
55       /// DESTBB is the destination block to branch to, and INFLAG is
56       /// an optional input flag argument.
57       COND_BRANCH_I, COND_BRANCH_F
58
59     };
60   }
61
62   class AlphaTargetLowering : public TargetLowering {
63     int VarArgsOffset;  // What is the offset to the first vaarg
64     int VarArgsBase;    // What is the base FrameIndex
65     bool useITOF;
66   public:
67     explicit AlphaTargetLowering(TargetMachine &TM);
68     
69     /// LowerOperation - Provide custom lowering hooks for some operations.
70     ///
71     virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
72     virtual SDOperand CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG);
73
74     //Friendly names for dumps
75     const char *getTargetNodeName(unsigned Opcode) const;
76
77     /// LowerCallTo - This hook lowers an abstract call to a function into an
78     /// actual call.
79     virtual std::pair<SDOperand, SDOperand>
80     LowerCallTo(SDOperand Chain, const Type *RetTy, bool RetSExt, bool RetZExt,
81                 bool isVarArg, unsigned CC, bool isTailCall, SDOperand Callee, 
82                 ArgListTy &Args, SelectionDAG &DAG);
83
84     ConstraintType getConstraintType(const std::string &Constraint) const;
85
86     std::vector<unsigned> 
87       getRegClassForInlineAsmConstraint(const std::string &Constraint,
88                                         MVT::ValueType VT) const;
89
90     bool hasITOF() { return useITOF; }
91   };
92 }
93
94 #endif   // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H