inline asm, at least for floats
[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/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       ITOFT_, FTOIT_, 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       /// GlobalBaseReg - used to restore the GOT ptr
40       GlobalBaseReg,
41
42       /// GlobalRetAddr - used to restore the return address
43       GlobalRetAddr,
44       
45       /// CALL - Normal call.
46       CALL,
47
48       /// DIVCALL - used for special library calls for div and rem
49       DivCall,
50       
51       /// return flag operand
52       RET_FLAG
53
54     };
55   }
56
57   class AlphaTargetLowering : public TargetLowering {
58     int VarArgsOffset;  // What is the offset to the first vaarg
59     int VarArgsBase;    // What is the base FrameIndex
60     unsigned GP; //GOT vreg
61     unsigned RA; //Return Address
62     bool useITOF;
63   public:
64     AlphaTargetLowering(TargetMachine &TM);
65     
66     /// LowerOperation - Provide custom lowering hooks for some operations.
67     ///
68     virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
69     virtual SDOperand CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG);
70
71     //Friendly names for dumps
72     const char *getTargetNodeName(unsigned Opcode) const;
73
74     /// LowerCallTo - This hook lowers an abstract call to a function into an
75     /// actual call.
76     virtual std::pair<SDOperand, SDOperand>
77     LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
78                 bool isTailCall, SDOperand Callee, ArgListTy &Args,
79                 SelectionDAG &DAG);
80
81     ConstraintType getConstraintType(char ConstraintLetter) const;
82
83     std::vector<unsigned> 
84       getRegClassForInlineAsmConstraint(const std::string &Constraint,
85                                         MVT::ValueType VT) const;
86
87     void restoreGP(MachineBasicBlock* BB);
88     void restoreRA(MachineBasicBlock* BB);
89     unsigned getVRegGP() { return GP; }
90     unsigned getVRegRA() { return RA; }
91     bool hasITOF() { return useITOF; }
92   };
93 }
94
95 #endif   // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H