Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 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 | |
Andrew Lenharth | 4907d22 | 2005-10-20 00:28:31 +0000 | [diff] [blame] | 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, |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 28 | //These corrospond to the identical Instruction |
Andrew Lenharth | cd80496 | 2005-11-30 16:10:29 +0000 | [diff] [blame] | 29 | ITOFT_, FTOIT_, CVTQT_, CVTQS_, CVTTQ_, |
Andrew Lenharth | 4e62951 | 2005-12-24 05:36:33 +0000 | [diff] [blame] | 30 | |
| 31 | /// GPRelHi/GPRelLo - These represent the high and low 16-bit |
Andrew Lenharth | c687b48 | 2005-12-24 08:29:32 +0000 | [diff] [blame] | 32 | /// parts of a global address respectively. |
| 33 | GPRelHi, GPRelLo, |
| 34 | |
| 35 | /// RetLit - Literal Relocation of a Global |
| 36 | RelLit, |
Andrew Lenharth | 4e62951 | 2005-12-24 05:36:33 +0000 | [diff] [blame] | 37 | |
| 38 | /// GlobalBaseReg, used to restore the GOT ptr |
| 39 | GlobalBaseReg, |
| 40 | |
Andrew Lenharth | 4907d22 | 2005-10-20 00:28:31 +0000 | [diff] [blame] | 41 | }; |
| 42 | } |
| 43 | |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 44 | class AlphaTargetLowering : public TargetLowering { |
| 45 | int VarArgsOffset; // What is the offset to the first vaarg |
| 46 | int VarArgsBase; // What is the base FrameIndex |
| 47 | unsigned GP; //GOT vreg |
| 48 | unsigned RA; //Return Address |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 49 | bool useITOF; |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 50 | public: |
| 51 | AlphaTargetLowering(TargetMachine &TM); |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 52 | |
| 53 | /// LowerOperation - Provide custom lowering hooks for some operations. |
| 54 | /// |
| 55 | virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG); |
| 56 | |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 57 | /// LowerArguments - This hook must be implemented to indicate how we should |
| 58 | /// lower the arguments for the specified function, into the specified DAG. |
| 59 | virtual std::vector<SDOperand> |
| 60 | LowerArguments(Function &F, SelectionDAG &DAG); |
| 61 | |
| 62 | /// LowerCallTo - This hook lowers an abstract call to a function into an |
| 63 | /// actual call. |
| 64 | virtual std::pair<SDOperand, SDOperand> |
| 65 | LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC, |
| 66 | bool isTailCall, SDOperand Callee, ArgListTy &Args, |
| 67 | SelectionDAG &DAG); |
| 68 | |
| 69 | virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP, |
| 70 | Value *VAListV, SelectionDAG &DAG); |
| 71 | virtual SDOperand LowerVACopy(SDOperand Chain, SDOperand SrcP, Value *SrcV, |
| 72 | SDOperand DestP, Value *DestV, |
| 73 | SelectionDAG &DAG); |
| 74 | virtual std::pair<SDOperand,SDOperand> |
| 75 | LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV, |
| 76 | const Type *ArgTy, SelectionDAG &DAG); |
| 77 | |
| 78 | void restoreGP(MachineBasicBlock* BB); |
| 79 | void restoreRA(MachineBasicBlock* BB); |
Andrew Lenharth | 756fbeb | 2005-10-22 22:06:58 +0000 | [diff] [blame] | 80 | unsigned getVRegGP() { return GP; } |
| 81 | unsigned getVRegRA() { return RA; } |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 82 | bool hasITOF() { return useITOF; } |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 83 | }; |
| 84 | } |
| 85 | |
| 86 | #endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H |