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 | |
Anton Korobeynikov | 2625de3 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 50 | /// SetCC - Operand 0 is condition code, and operand 1 is the flag |
Anton Korobeynikov | ed1a51a | 2009-05-03 13:12:06 +0000 | [diff] [blame] | 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 | 2625de3 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 60 | /// SELECT_CC - Operand 0 and operand 1 are selection variable, operand 3 |
Anton Korobeynikov | 1bb8cd7 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 61 | /// is condition code and operand 4 is flag operand. |
Anton Korobeynikov | 2625de3 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 62 | SELECT_CC, |
| 63 | |
| 64 | /// SHL, SRA, SRL - Non-constant shifts. |
| 65 | SHL, SRA, SRL |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 66 | }; |
| 67 | } |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 68 | |
| 69 | class MSP430Subtarget; |
| 70 | class MSP430TargetMachine; |
| 71 | |
| 72 | class MSP430TargetLowering : public TargetLowering { |
| 73 | public: |
| 74 | explicit MSP430TargetLowering(MSP430TargetMachine &TM); |
| 75 | |
| 76 | /// LowerOperation - Provide custom lowering hooks for some operations. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 77 | virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const; |
Anton Korobeynikov | fd1b7c7 | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 78 | |
| 79 | /// getTargetNodeName - This method returns the name of a target specific |
| 80 | /// DAG node. |
| 81 | virtual const char *getTargetNodeName(unsigned Opcode) const; |
| 82 | |
Bill Wendling | b4202b8 | 2009-07-01 18:50:55 +0000 | [diff] [blame] | 83 | /// getFunctionAlignment - Return the Log2 alignment of this function. |
Bill Wendling | 20c568f | 2009-06-30 22:38:32 +0000 | [diff] [blame] | 84 | virtual unsigned getFunctionAlignment(const Function *F) const; |
| 85 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 86 | SDValue LowerShifts(SDValue Op, SelectionDAG &DAG) const; |
| 87 | SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const; |
Anton Korobeynikov | 69d5b48 | 2010-05-01 12:04:32 +0000 | [diff] [blame] | 88 | SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const; |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 89 | SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const; |
| 90 | SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const; |
| 91 | SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const; |
| 92 | SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const; |
| 93 | SDValue LowerSIGN_EXTEND(SDValue Op, SelectionDAG &DAG) const; |
| 94 | SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const; |
| 95 | SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const; |
| 96 | SDValue getReturnAddressFrameIndex(SelectionDAG &DAG) const; |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 97 | |
Anton Korobeynikov | cd76128 | 2009-08-26 13:44:29 +0000 | [diff] [blame] | 98 | TargetLowering::ConstraintType |
| 99 | getConstraintType(const std::string &Constraint) const; |
| 100 | std::pair<unsigned, const TargetRegisterClass*> |
| 101 | getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const; |
| 102 | |
Anton Korobeynikov | 9afb7c5 | 2010-01-15 21:19:43 +0000 | [diff] [blame] | 103 | /// isTruncateFree - Return true if it's free to truncate a value of type |
| 104 | /// Ty1 to type Ty2. e.g. On msp430 it's free to truncate a i16 value in |
| 105 | /// register R15W to i8 by referencing its sub-register R15B. |
| 106 | virtual bool isTruncateFree(const Type *Ty1, const Type *Ty2) const; |
| 107 | virtual bool isTruncateFree(EVT VT1, EVT VT2) const; |
| 108 | |
| 109 | /// isZExtFree - Return true if any actual instruction that defines a value |
| 110 | /// of type Ty1 implicit zero-extends the value to Ty2 in the result |
| 111 | /// register. This does not necessarily include registers defined in unknown |
| 112 | /// ways, such as incoming arguments, or copies from unknown virtual |
| 113 | /// registers. Also, if isTruncateFree(Ty2, Ty1) is true, this does not |
| 114 | /// necessarily apply to truncate instructions. e.g. on msp430, all |
| 115 | /// instructions that define 8-bit values implicit zero-extend the result |
| 116 | /// out to 16 bits. |
| 117 | virtual bool isZExtFree(const Type *Ty1, const Type *Ty2) const; |
| 118 | virtual bool isZExtFree(EVT VT1, EVT VT2) const; |
| 119 | |
Anton Korobeynikov | 8b528e5 | 2009-05-03 13:12:23 +0000 | [diff] [blame] | 120 | MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 121 | MachineBasicBlock *BB) const; |
Anton Korobeynikov | 2625de3 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 122 | MachineBasicBlock* EmitShiftInstr(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 123 | MachineBasicBlock *BB) const; |
Anton Korobeynikov | 4428885 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 124 | |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 125 | private: |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 126 | SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 127 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 128 | bool isTailCall, |
| 129 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame^] | 130 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 131 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 132 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 133 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 134 | |
| 135 | SDValue LowerCCCArguments(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 136 | CallingConv::ID CallConv, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 137 | bool isVarArg, |
| 138 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 139 | DebugLoc dl, |
| 140 | SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 141 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 142 | |
| 143 | SDValue LowerCallResult(SDValue Chain, SDValue InFlag, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 144 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 145 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 146 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 147 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 148 | |
| 149 | virtual SDValue |
| 150 | LowerFormalArguments(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 151 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 152 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 153 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 154 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 155 | virtual SDValue |
Evan Cheng | 022d9e1 | 2010-02-02 23:55:14 +0000 | [diff] [blame] | 156 | LowerCall(SDValue Chain, SDValue Callee, |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 157 | CallingConv::ID CallConv, bool isVarArg, bool &isTailCall, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 158 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame^] | 159 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 160 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 161 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 162 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 163 | |
| 164 | virtual SDValue |
| 165 | LowerReturn(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 166 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 167 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame^] | 168 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 169 | DebugLoc dl, SelectionDAG &DAG) const; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 170 | |
Anton Korobeynikov | 6534f83 | 2009-11-07 17:15:06 +0000 | [diff] [blame] | 171 | virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op, |
| 172 | SDValue &Base, |
| 173 | SDValue &Offset, |
| 174 | ISD::MemIndexedMode &AM, |
| 175 | SelectionDAG &DAG) const; |
| 176 | |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 177 | const MSP430Subtarget &Subtarget; |
| 178 | const MSP430TargetMachine &TM; |
Anton Korobeynikov | 06ccca5 | 2009-12-07 02:28:10 +0000 | [diff] [blame] | 179 | const TargetData *TD; |
Anton Korobeynikov | f2c3e17 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 180 | }; |
| 181 | } // namespace llvm |
| 182 | |
| 183 | #endif // LLVM_TARGET_MSP430_ISELLOWERING_H |