Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- MSP430ISelLowering.h - MSP430 DAG Lowering Interface ----*- C++ -*-===// |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 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 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 15 | #ifndef LLVM_LIB_TARGET_MSP430_MSP430ISELLOWERING_H |
| 16 | #define LLVM_LIB_TARGET_MSP430_MSP430ISELLOWERING_H |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 17 | |
| 18 | #include "MSP430.h" |
| 19 | #include "llvm/CodeGen/SelectionDAG.h" |
| 20 | #include "llvm/Target/TargetLowering.h" |
| 21 | |
| 22 | namespace llvm { |
Anton Korobeynikov | 7bfc3ea | 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 | 15a515b | 2009-05-03 13:03:33 +0000 | [diff] [blame] | 28 | RET_FLAG, |
| 29 | |
Anton Korobeynikov | b4be8ce | 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 | a3f7a83 | 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 | 5613510 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 35 | |
Anton Korobeynikov | 61763b5 | 2009-05-03 13:16:17 +0000 | [diff] [blame] | 36 | /// Y = RRC X, rotate right via carry |
| 37 | RRC, |
| 38 | |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 39 | /// CALL - These operations represent an abstract call |
Anton Korobeynikov | 5613510 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 40 | /// instruction, which includes a bunch of information. |
Anton Korobeynikov | cfc9705 | 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 | 9627201 | 2009-05-03 13:12:06 +0000 | [diff] [blame] | 45 | Wrapper, |
| 46 | |
| 47 | /// CMP - Compare instruction. |
| 48 | CMP, |
| 49 | |
Anton Korobeynikov | d8f3209 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 50 | /// SetCC - Operand 0 is condition code, and operand 1 is the flag |
Anton Korobeynikov | 9627201 | 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 | 47fcd72 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 58 | BR_CC, |
Anton Korobeynikov | b6321e15 | 2009-05-03 13:12:23 +0000 | [diff] [blame] | 59 | |
Anton Korobeynikov | d8f3209 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 60 | /// SELECT_CC - Operand 0 and operand 1 are selection variable, operand 3 |
Anton Korobeynikov | 47fcd72 | 2009-05-03 13:19:09 +0000 | [diff] [blame] | 61 | /// is condition code and operand 4 is flag operand. |
Anton Korobeynikov | d8f3209 | 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 | 7bfc3ea | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 66 | }; |
| 67 | } |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 68 | |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 69 | class MSP430TargetLowering : public TargetLowering { |
| 70 | public: |
Eric Christopher | dc13b21 | 2014-06-27 00:37:59 +0000 | [diff] [blame] | 71 | explicit MSP430TargetLowering(const TargetMachine &TM); |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 72 | |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 73 | MVT getScalarShiftAmountTy(EVT LHSTy) const override { return MVT::i8; } |
Owen Anderson | b2c80da | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 74 | |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 75 | /// LowerOperation - Provide custom lowering hooks for some operations. |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 76 | SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override; |
Anton Korobeynikov | 7bfc3ea | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 77 | |
| 78 | /// getTargetNodeName - This method returns the name of a target specific |
| 79 | /// DAG node. |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 80 | const char *getTargetNodeName(unsigned Opcode) const override; |
Anton Korobeynikov | 7bfc3ea | 2009-05-03 12:59:50 +0000 | [diff] [blame] | 81 | |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 82 | SDValue LowerShifts(SDValue Op, SelectionDAG &DAG) const; |
| 83 | SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const; |
Anton Korobeynikov | ebbdfef | 2010-05-01 12:04:32 +0000 | [diff] [blame] | 84 | SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const; |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 85 | SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const; |
| 86 | SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const; |
| 87 | SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const; |
| 88 | SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const; |
| 89 | SDValue LowerSIGN_EXTEND(SDValue Op, SelectionDAG &DAG) const; |
| 90 | SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const; |
| 91 | SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const; |
Anton Korobeynikov | 568afeb | 2012-11-21 17:28:27 +0000 | [diff] [blame] | 92 | SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const; |
Anton Korobeynikov | 82bedb1 | 2013-07-01 19:44:44 +0000 | [diff] [blame] | 93 | SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const; |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 94 | SDValue getReturnAddressFrameIndex(SelectionDAG &DAG) const; |
Anton Korobeynikov | 5613510 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 95 | |
Anton Korobeynikov | a0e01be | 2009-08-26 13:44:29 +0000 | [diff] [blame] | 96 | TargetLowering::ConstraintType |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 97 | getConstraintType(const std::string &Constraint) const override; |
Anton Korobeynikov | a0e01be | 2009-08-26 13:44:29 +0000 | [diff] [blame] | 98 | std::pair<unsigned, const TargetRegisterClass*> |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 99 | getRegForInlineAsmConstraint(const std::string &Constraint, |
| 100 | MVT VT) const override; |
Anton Korobeynikov | a0e01be | 2009-08-26 13:44:29 +0000 | [diff] [blame] | 101 | |
Anton Korobeynikov | a6450df | 2010-01-15 21:19:43 +0000 | [diff] [blame] | 102 | /// isTruncateFree - Return true if it's free to truncate a value of type |
| 103 | /// Ty1 to type Ty2. e.g. On msp430 it's free to truncate a i16 value in |
| 104 | /// register R15W to i8 by referencing its sub-register R15B. |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 105 | bool isTruncateFree(Type *Ty1, Type *Ty2) const override; |
| 106 | bool isTruncateFree(EVT VT1, EVT VT2) const override; |
Anton Korobeynikov | a6450df | 2010-01-15 21:19:43 +0000 | [diff] [blame] | 107 | |
| 108 | /// isZExtFree - Return true if any actual instruction that defines a value |
| 109 | /// of type Ty1 implicit zero-extends the value to Ty2 in the result |
| 110 | /// register. This does not necessarily include registers defined in unknown |
| 111 | /// ways, such as incoming arguments, or copies from unknown virtual |
| 112 | /// registers. Also, if isTruncateFree(Ty2, Ty1) is true, this does not |
| 113 | /// necessarily apply to truncate instructions. e.g. on msp430, all |
| 114 | /// instructions that define 8-bit values implicit zero-extend the result |
| 115 | /// out to 16 bits. |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 116 | bool isZExtFree(Type *Ty1, Type *Ty2) const override; |
| 117 | bool isZExtFree(EVT VT1, EVT VT2) const override; |
| 118 | bool isZExtFree(SDValue Val, EVT VT2) const override; |
Anton Korobeynikov | a6450df | 2010-01-15 21:19:43 +0000 | [diff] [blame] | 119 | |
Anton Korobeynikov | b6321e15 | 2009-05-03 13:12:23 +0000 | [diff] [blame] | 120 | MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI, |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 121 | MachineBasicBlock *BB) const override; |
Anton Korobeynikov | d8f3209 | 2009-12-12 18:55:37 +0000 | [diff] [blame] | 122 | MachineBasicBlock* EmitShiftInstr(MachineInstr *MI, |
Dan Gohman | 25c1653 | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 123 | MachineBasicBlock *BB) const; |
Anton Korobeynikov | 5613510 | 2009-05-03 13:07:31 +0000 | [diff] [blame] | 124 | |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 125 | private: |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 126 | SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee, |
Sandeep Patel | 68c5f47 | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 127 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 128 | bool isTailCall, |
| 129 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | fe7532a | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 130 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 131 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 132 | SDLoc dl, SelectionDAG &DAG, |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 133 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 134 | |
| 135 | SDValue LowerCCCArguments(SDValue Chain, |
Sandeep Patel | 68c5f47 | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 136 | CallingConv::ID CallConv, |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 137 | bool isVarArg, |
| 138 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 139 | SDLoc dl, |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 140 | SelectionDAG &DAG, |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 141 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 142 | |
| 143 | SDValue LowerCallResult(SDValue Chain, SDValue InFlag, |
Sandeep Patel | 68c5f47 | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 144 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 145 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 146 | SDLoc dl, SelectionDAG &DAG, |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 147 | SmallVectorImpl<SDValue> &InVals) const; |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 148 | |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 149 | SDValue |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 150 | LowerFormalArguments(SDValue Chain, |
Sandeep Patel | 68c5f47 | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 151 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 152 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 153 | SDLoc dl, SelectionDAG &DAG, |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 154 | SmallVectorImpl<SDValue> &InVals) const override; |
| 155 | SDValue |
Justin Holewinski | aa58397 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 156 | LowerCall(TargetLowering::CallLoweringInfo &CLI, |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 157 | SmallVectorImpl<SDValue> &InVals) const override; |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 158 | |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 159 | SDValue LowerReturn(SDValue Chain, |
| 160 | CallingConv::ID CallConv, bool isVarArg, |
| 161 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
| 162 | const SmallVectorImpl<SDValue> &OutVals, |
| 163 | SDLoc dl, SelectionDAG &DAG) const override; |
Dan Gohman | f9bbcd1 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 164 | |
Craig Topper | 6f9e59e | 2014-04-29 07:58:09 +0000 | [diff] [blame] | 165 | bool getPostIndexedAddressParts(SDNode *N, SDNode *Op, |
| 166 | SDValue &Base, |
| 167 | SDValue &Offset, |
| 168 | ISD::MemIndexedMode &AM, |
| 169 | SelectionDAG &DAG) const override; |
Anton Korobeynikov | 1013800 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 170 | }; |
| 171 | } // namespace llvm |
| 172 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 173 | #endif |