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 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 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. |
Dan Gohman | 0ba2bcf | 2008-09-23 18:42:32 +0000 | [diff] [blame] | 26 | FIRST_NUMBER = ISD::BUILTIN_OP_END, |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 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 |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 44 | public: |
Dan Gohman | 61e729e | 2007-08-02 21:21:54 +0000 | [diff] [blame] | 45 | explicit IA64TargetLowering(TargetMachine &TM); |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 46 | |
| 47 | unsigned VirtGPR; // this is public so it can be accessed in the selector |
| 48 | // for ISD::RET. add an accessor instead? FIXME |
Chris Lattner | bc0f460 | 2006-01-14 22:27:21 +0000 | [diff] [blame] | 49 | const char *getTargetNodeName(unsigned Opcode) const; |
Scott Michel | 405fba1 | 2008-03-10 23:49:09 +0000 | [diff] [blame] | 50 | |
| 51 | /// getSetCCResultType: return ISD::SETCC's result type. |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 52 | virtual MVT getSetCCResultType(MVT VT) const; |
Chris Lattner | bc0f460 | 2006-01-14 22:27:21 +0000 | [diff] [blame] | 53 | |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 54 | /// LowerArguments - This hook must be implemented to indicate how we should |
| 55 | /// lower the arguments for the specified function, into the specified DAG. |
Dan Gohman | a44b674 | 2008-06-30 20:31:15 +0000 | [diff] [blame] | 56 | virtual void LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 57 | SmallVectorImpl<SDValue> &ArgValues, |
| 58 | DebugLoc dl); |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 59 | |
| 60 | /// LowerCallTo - This hook lowers an abstract call to a function into an |
| 61 | /// actual call. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 62 | virtual std::pair<SDValue, SDValue> |
| 63 | LowerCallTo(SDValue Chain, const Type *RetTy, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 64 | bool RetSExt, bool RetZExt, bool isVarArg, bool isInreg, |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 65 | unsigned CC, bool isTailCall, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 66 | SDValue Callee, ArgListTy &Args, SelectionDAG &DAG, |
| 67 | DebugLoc dl); |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 68 | |
Duraid Madina | bea9947 | 2006-01-20 20:24:31 +0000 | [diff] [blame] | 69 | /// LowerOperation - for custom lowering specific ops |
| 70 | /// (currently, only "ret void") |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 71 | virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG); |
Duraid Madina | bea9947 | 2006-01-20 20:24:31 +0000 | [diff] [blame] | 72 | |
Duraid Madina | f2db9b8 | 2005-10-28 17:46:35 +0000 | [diff] [blame] | 73 | }; |
| 74 | } |
| 75 | |
| 76 | #endif // LLVM_TARGET_IA64_IA64ISELLOWERING_H |