Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 1 | //===-- IA64ISelLowering.h - IA64 DAG Lowering Interface --------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Duraid Madina 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 IA64 uses to lower LLVM code into a |
| 11 | // selection DAG. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_TARGET_IA64_IA64ISELLOWERING_H |
| 16 | #define LLVM_TARGET_IA64_IA64ISELLOWERING_H |
| 17 | |
| 18 | #include "llvm/Target/TargetLowering.h" |
| 19 | #include "llvm/CodeGen/SelectionDAG.h" |
| 20 | #include "IA64.h" |
| 21 | |
| 22 | namespace llvm { |
| 23 | namespace IA64ISD { |
| 24 | enum NodeType { |
| 25 | // Start the numbering where the builting ops and target ops leave off. |
| 26 | FIRST_NUMBER = ISD::BUILTIN_OP_END+IA64::INSTRUCTION_LIST_END, |
| 27 | |
Duraid Madina | a6ec3cb | 2005-12-22 06:41:39 +0000 | [diff] [blame] | 28 | /// GETFD - the getf.d instruction takes a floating point operand and |
| 29 | /// returns its 64-bit memory representation as an i64 |
Duraid Madina | 64aa0ea | 2005-12-22 13:29:14 +0000 | [diff] [blame] | 30 | GETFD, |
| 31 | |
| 32 | // TODO: explain this hack |
Duraid Madina | bea9947 | 2006-01-20 20:24:31 +0000 | [diff] [blame] | 33 | BRCALL, |
| 34 | |
| 35 | // RET_FLAG - Return with a flag operand |
| 36 | RET_FLAG |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 37 | }; |
| 38 | } |
| 39 | |
| 40 | class IA64TargetLowering : public TargetLowering { |
| 41 | int VarArgsFrameIndex; // FrameIndex for start of varargs area. |
| 42 | //int ReturnAddrIndex; // FrameIndex for return slot. |
| 43 | unsigned GP, SP, RP; // FIXME - clean this mess up |
| 44 | |
| 45 | public: |
| 46 | IA64TargetLowering(TargetMachine &TM); |
| 47 | |
| 48 | unsigned VirtGPR; // this is public so it can be accessed in the selector |
| 49 | // for ISD::RET. add an accessor instead? FIXME |
| 50 | |
Chris Lattner | bc0f460 | 2006-01-14 22:27:21 +0000 | [diff] [blame] | 51 | const char *getTargetNodeName(unsigned Opcode) const; |
| 52 | |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 53 | /// LowerArguments - This hook must be implemented to indicate how we should |
| 54 | /// lower the arguments for the specified function, into the specified DAG. |
| 55 | virtual std::vector<SDOperand> |
| 56 | LowerArguments(Function &F, SelectionDAG &DAG); |
| 57 | |
| 58 | /// LowerCallTo - This hook lowers an abstract call to a function into an |
| 59 | /// actual call. |
| 60 | virtual std::pair<SDOperand, SDOperand> |
| 61 | LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, |
| 62 | unsigned CC, |
| 63 | bool isTailCall, SDOperand Callee, ArgListTy &Args, |
| 64 | SelectionDAG &DAG); |
| 65 | |
Duraid Madina | bea9947 | 2006-01-20 20:24:31 +0000 | [diff] [blame] | 66 | /// LowerOperation - for custom lowering specific ops |
| 67 | /// (currently, only "ret void") |
| 68 | virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG); |
| 69 | |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 70 | virtual std::pair<SDOperand, SDOperand> |
| 71 | LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth, |
| 72 | SelectionDAG &DAG); |
| 73 | |
| 74 | // XXX virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI, |
| 75 | // XXX MachineBasicBlock *MBB); |
| 76 | }; |
| 77 | } |
| 78 | |
| 79 | #endif // LLVM_TARGET_IA64_IA64ISELLOWERING_H |