Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 1 | //==-- MSP430ISelLowering.h - MSP430 DAG Lowering Interface ------*- C++ -*-==// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the interfaces that MSP430 uses to lower LLVM code into a |
| 11 | // selection DAG. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_TARGET_MSP430_ISELLOWERING_H |
| 16 | #define LLVM_TARGET_MSP430_ISELLOWERING_H |
| 17 | |
| 18 | #include "MSP430.h" |
| 19 | #include "llvm/CodeGen/SelectionDAG.h" |
| 20 | #include "llvm/Target/TargetLowering.h" |
| 21 | |
| 22 | namespace llvm { |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 23 | namespace MSP430ISD { |
| 24 | enum { |
| 25 | FIRST_NUMBER = ISD::BUILTIN_OP_END, |
| 26 | |
| 27 | /// Return with a flag operand. Operand 0 is the chain operand. |
Anton Korobeynikov | d2c94ae | 2009-05-03 13:03:33 +0000 | [diff] [blame] | 28 | RET_FLAG, |
| 29 | |
Anton Korobeynikov | e662f7a | 2009-12-07 02:27:53 +0000 | [diff] [blame] | 30 | /// Same as RET_FLAG, but used for returning from ISRs. |
| 31 | RETI_FLAG, |
| 32 | |
Anton Korobeynikov | ea54c98 | 2009-05-03 13:13:17 +0000 | [diff] [blame] | 33 | /// Y = R{R,L}A X, rotate right (left) arithmetically |
| 34 | RRA, RLA, |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 35 | |
Anton Korobeynikov | e699d0f | 2009-05-03 13:16:17 +0000 | [diff] [blame] | 36 | /// Y = RRC X, rotate right via carry |
| 37 | RRC, |
| 38 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 39 | /// CALL - These operations represent an abstract call |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 40 | /// instruction, which includes a bunch of information. |
Anton Korobeynikov | 3513ca8 | 2009-05-03 13:08:33 +0000 | [diff] [blame] | 41 | CALL, |
| 42 | |
| 43 | /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol, |
| 44 | /// and TargetGlobalAddress. |
Anton Korobeynikov | ed1a51a | 2009-05-03 13:12:06 +0000 | [diff] [blame] | 45 | Wrapper, |
| 46 | |
| 47 | /// CMP - Compare instruction. |
| 48 | CMP, |
| 49 | |
| 50 | /// SetCC. Operand 0 is condition code, and operand 1 is the flag |
| 51 | /// operand produced by a CMP instruction. |
| 52 | SETCC, |
| 53 | |
| 54 | /// MSP430 conditional branches. Operand 0 is the chain operand, operand 1 |
| 55 | /// is the block to branch if condition is true, operand 2 is the |
| 56 | /// condition code, and operand 3 is the flag operand produced by a CMP |
| 57 | /// instruction. |
Anton Korobeynikov | 1bb8cd7 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 58 | BR_CC, |
Anton Korobeynikov | 8b528e5 | 2009-05-03 13:12:23 +0000 | [diff] [blame] | 59 | |
Anton Korobeynikov | 1bb8cd7 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 60 | /// SELECT_CC. Operand 0 and operand 1 are selection variable, operand 3 |
| 61 | /// is condition code and operand 4 is flag operand. |
| 62 | SELECT_CC |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 63 | }; |
| 64 | } |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 65 | |
| 66 | class MSP430Subtarget; |
| 67 | class MSP430TargetMachine; |
| 68 | |
| 69 | class MSP430TargetLowering : public TargetLowering { |
| 70 | public: |
| 71 | explicit MSP430TargetLowering(MSP430TargetMachine &TM); |
| 72 | |
| 73 | /// LowerOperation - Provide custom lowering hooks for some operations. |
| 74 | virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 75 | |
| 76 | /// getTargetNodeName - This method returns the name of a target specific |
| 77 | /// DAG node. |
| 78 | virtual const char *getTargetNodeName(unsigned Opcode) const; |
| 79 | |
Bill Wendling | b4202b8 | 2009-07-01 18:50:55 +0000 | [diff] [blame] | 80 | /// getFunctionAlignment - Return the Log2 alignment of this function. |
Bill Wendling | 20c568f | 2009-06-30 22:38:32 +0000 | [diff] [blame] | 81 | virtual unsigned getFunctionAlignment(const Function *F) const; |
| 82 | |
Anton Korobeynikov | d2c94ae | 2009-05-03 13:03:33 +0000 | [diff] [blame] | 83 | SDValue LowerShifts(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 3513ca8 | 2009-05-03 13:08:33 +0000 | [diff] [blame] | 84 | SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 5d59f68 | 2009-05-03 13:14:46 +0000 | [diff] [blame] | 85 | SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 1bb8cd7 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 86 | SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 8d1ffbd | 2009-12-11 23:01:29 +0000 | [diff] [blame] | 87 | SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 1bb8cd7 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 88 | SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | b78e214 | 2009-05-03 13:17:49 +0000 | [diff] [blame] | 89 | SDValue LowerSIGN_EXTEND(SDValue Op, SelectionDAG &DAG); |
Anton Korobeynikov | 06ccca5 | 2009-12-07 02:28:10 +0000 | [diff] [blame] | 90 | SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG); |
| 91 | SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG); |
| 92 | SDValue getReturnAddressFrameIndex(SelectionDAG &DAG); |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 93 | |
Anton Korobeynikov | cd76128 | 2009-08-26 13:44:29 +0000 | [diff] [blame] | 94 | TargetLowering::ConstraintType |
| 95 | getConstraintType(const std::string &Constraint) const; |
| 96 | std::pair<unsigned, const TargetRegisterClass*> |
| 97 | getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const; |
| 98 | |
Anton Korobeynikov | 8b528e5 | 2009-05-03 13:12:23 +0000 | [diff] [blame] | 99 | MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI, |
Evan Cheng | fb2e752 | 2009-09-18 21:02:19 +0000 | [diff] [blame] | 100 | MachineBasicBlock *BB, |
| 101 | DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const; |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 102 | |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 103 | private: |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 104 | SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 105 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 106 | bool isTailCall, |
| 107 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
| 108 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 109 | DebugLoc dl, SelectionDAG &DAG, |
| 110 | SmallVectorImpl<SDValue> &InVals); |
| 111 | |
| 112 | SDValue LowerCCCArguments(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 113 | CallingConv::ID CallConv, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 114 | bool isVarArg, |
| 115 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 116 | DebugLoc dl, |
| 117 | SelectionDAG &DAG, |
| 118 | SmallVectorImpl<SDValue> &InVals); |
| 119 | |
| 120 | SDValue LowerCallResult(SDValue Chain, SDValue InFlag, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 121 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 122 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 123 | DebugLoc dl, SelectionDAG &DAG, |
| 124 | SmallVectorImpl<SDValue> &InVals); |
| 125 | |
| 126 | virtual SDValue |
| 127 | LowerFormalArguments(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 128 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 129 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 130 | DebugLoc dl, SelectionDAG &DAG, |
| 131 | SmallVectorImpl<SDValue> &InVals); |
| 132 | virtual SDValue |
| 133 | LowerCall(SDValue Chain, SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 134 | CallingConv::ID CallConv, bool isVarArg, bool isTailCall, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 135 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
| 136 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 137 | DebugLoc dl, SelectionDAG &DAG, |
| 138 | SmallVectorImpl<SDValue> &InVals); |
| 139 | |
| 140 | virtual SDValue |
| 141 | LowerReturn(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 142 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 143 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
| 144 | DebugLoc dl, SelectionDAG &DAG); |
| 145 | |
Anton Korobeynikov | 6534f83 | 2009-11-07 17:15:06 +0000 | [diff] [blame] | 146 | virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op, |
| 147 | SDValue &Base, |
| 148 | SDValue &Offset, |
| 149 | ISD::MemIndexedMode &AM, |
| 150 | SelectionDAG &DAG) const; |
| 151 | |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 152 | const MSP430Subtarget &Subtarget; |
| 153 | const MSP430TargetMachine &TM; |
Anton Korobeynikov | 06ccca5 | 2009-12-07 02:28:10 +0000 | [diff] [blame] | 154 | const TargetData *TD; |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 155 | }; |
| 156 | } // namespace llvm |
| 157 | |
| 158 | #endif // LLVM_TARGET_MSP430_ISELLOWERING_H |