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 | // |
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. |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 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 | |
Andrew Lenharth | 1725599 | 2006-06-21 13:37:27 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/VectorExtras.h" |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetLowering.h" |
| 20 | #include "llvm/CodeGen/SelectionDAG.h" |
| 21 | #include "Alpha.h" |
| 22 | |
| 23 | namespace llvm { |
| 24 | |
Andrew Lenharth | 4907d22 | 2005-10-20 00:28:31 +0000 | [diff] [blame] | 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, |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 29 | //These corrospond to the identical Instruction |
Andrew Lenharth | 3553d86 | 2007-01-24 21:09:16 +0000 | [diff] [blame] | 30 | CVTQT_, CVTQS_, CVTTQ_, |
Andrew Lenharth | 4e62951 | 2005-12-24 05:36:33 +0000 | [diff] [blame] | 31 | |
| 32 | /// GPRelHi/GPRelLo - These represent the high and low 16-bit |
Andrew Lenharth | c687b48 | 2005-12-24 08:29:32 +0000 | [diff] [blame] | 33 | /// parts of a global address respectively. |
| 34 | GPRelHi, GPRelLo, |
| 35 | |
| 36 | /// RetLit - Literal Relocation of a Global |
| 37 | RelLit, |
Andrew Lenharth | 4e62951 | 2005-12-24 05:36:33 +0000 | [diff] [blame] | 38 | |
Andrew Lenharth | 0e4dd01 | 2006-06-13 18:27:39 +0000 | [diff] [blame] | 39 | /// GlobalRetAddr - used to restore the return address |
| 40 | GlobalRetAddr, |
Chris Lattner | 2d90bd5 | 2006-01-27 23:39:00 +0000 | [diff] [blame] | 41 | |
| 42 | /// CALL - Normal call. |
| 43 | CALL, |
Andrew Lenharth | 4e62951 | 2005-12-24 05:36:33 +0000 | [diff] [blame] | 44 | |
Andrew Lenharth | 53d8970 | 2005-12-25 01:34:27 +0000 | [diff] [blame] | 45 | /// DIVCALL - used for special library calls for div and rem |
Andrew Lenharth | f2b806a | 2006-06-12 18:09:24 +0000 | [diff] [blame] | 46 | DivCall, |
| 47 | |
| 48 | /// return flag operand |
Andrew Lenharth | f81173f | 2006-10-31 16:49:55 +0000 | [diff] [blame] | 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 |
Andrew Lenharth | 53d8970 | 2005-12-25 01:34:27 +0000 | [diff] [blame] | 58 | |
Andrew Lenharth | 4907d22 | 2005-10-20 00:28:31 +0000 | [diff] [blame] | 59 | }; |
| 60 | } |
| 61 | |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 62 | class AlphaTargetLowering : public TargetLowering { |
| 63 | int VarArgsOffset; // What is the offset to the first vaarg |
| 64 | int VarArgsBase; // What is the base FrameIndex |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 65 | bool useITOF; |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 66 | public: |
Dan Gohman | 61e729e | 2007-08-02 21:21:54 +0000 | [diff] [blame] | 67 | explicit AlphaTargetLowering(TargetMachine &TM); |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 68 | |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame^] | 69 | /// getSetCCResultType - Get the SETCC result ValueType |
| 70 | virtual MVT::ValueType getSetCCResultType(const SDOperand &) const; |
| 71 | |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 72 | /// LowerOperation - Provide custom lowering hooks for some operations. |
| 73 | /// |
| 74 | virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 75 | virtual SDOperand CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG); |
Andrew Lenharth | 84a0605 | 2006-01-16 19:53:25 +0000 | [diff] [blame] | 76 | |
| 77 | //Friendly names for dumps |
| 78 | const char *getTargetNodeName(unsigned Opcode) const; |
| 79 | |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 80 | /// LowerCallTo - This hook lowers an abstract call to a function into an |
| 81 | /// actual call. |
| 82 | virtual std::pair<SDOperand, SDOperand> |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 83 | LowerCallTo(SDOperand Chain, const Type *RetTy, bool RetSExt, bool RetZExt, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 84 | bool isVarArg, unsigned CC, bool isTailCall, SDOperand Callee, |
| 85 | ArgListTy &Args, SelectionDAG &DAG); |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 86 | |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 87 | ConstraintType getConstraintType(const std::string &Constraint) const; |
Andrew Lenharth | 1725599 | 2006-06-21 13:37:27 +0000 | [diff] [blame] | 88 | |
| 89 | std::vector<unsigned> |
| 90 | getRegClassForInlineAsmConstraint(const std::string &Constraint, |
| 91 | MVT::ValueType VT) const; |
| 92 | |
Andrew Lenharth | 7f0db91 | 2005-11-30 07:19:56 +0000 | [diff] [blame] | 93 | bool hasITOF() { return useITOF; } |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 94 | |
| 95 | MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI, |
| 96 | MachineBasicBlock *BB); |
Andrew Lenharth | aa38ce4 | 2005-09-02 18:46:02 +0000 | [diff] [blame] | 97 | }; |
| 98 | } |
| 99 | |
| 100 | #endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H |