blob: 3ced61de3f4fe7bc90152531a825475d16ddbc19 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- MSP430ISelLowering.h - MSP430 DAG Lowering Interface ----*- C++ -*-===//
Anton Korobeynikov10138002009-05-03 12:57:15 +00002//
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
22namespace llvm {
Anton Korobeynikov7bfc3ea2009-05-03 12:59:50 +000023 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 Korobeynikov15a515b2009-05-03 13:03:33 +000028 RET_FLAG,
29
Anton Korobeynikovb4be8ce2009-12-07 02:27:53 +000030 /// Same as RET_FLAG, but used for returning from ISRs.
31 RETI_FLAG,
32
Anton Korobeynikova3f7a832009-05-03 13:13:17 +000033 /// Y = R{R,L}A X, rotate right (left) arithmetically
34 RRA, RLA,
Anton Korobeynikov56135102009-05-03 13:07:31 +000035
Anton Korobeynikov61763b52009-05-03 13:16:17 +000036 /// Y = RRC X, rotate right via carry
37 RRC,
38
Dan Gohmanf9bbcd12009-08-05 01:29:28 +000039 /// CALL - These operations represent an abstract call
Anton Korobeynikov56135102009-05-03 13:07:31 +000040 /// instruction, which includes a bunch of information.
Anton Korobeynikovcfc97052009-05-03 13:08:33 +000041 CALL,
42
43 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
44 /// and TargetGlobalAddress.
Anton Korobeynikov96272012009-05-03 13:12:06 +000045 Wrapper,
46
47 /// CMP - Compare instruction.
48 CMP,
49
Anton Korobeynikovd8f32092009-12-12 18:55:37 +000050 /// SetCC - Operand 0 is condition code, and operand 1 is the flag
Anton Korobeynikov96272012009-05-03 13:12:06 +000051 /// 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 Korobeynikov47fcd722009-05-03 13:19:09 +000058 BR_CC,
Anton Korobeynikovb6321e152009-05-03 13:12:23 +000059
Anton Korobeynikovd8f32092009-12-12 18:55:37 +000060 /// SELECT_CC - Operand 0 and operand 1 are selection variable, operand 3
Anton Korobeynikov47fcd722009-05-03 13:19:09 +000061 /// is condition code and operand 4 is flag operand.
Anton Korobeynikovd8f32092009-12-12 18:55:37 +000062 SELECT_CC,
63
64 /// SHL, SRA, SRL - Non-constant shifts.
65 SHL, SRA, SRL
Anton Korobeynikov7bfc3ea2009-05-03 12:59:50 +000066 };
67 }
Anton Korobeynikov10138002009-05-03 12:57:15 +000068
69 class MSP430Subtarget;
70 class MSP430TargetMachine;
71
72 class MSP430TargetLowering : public TargetLowering {
73 public:
74 explicit MSP430TargetLowering(MSP430TargetMachine &TM);
75
Craig Topper6f9e59e2014-04-29 07:58:09 +000076 MVT getScalarShiftAmountTy(EVT LHSTy) const override { return MVT::i8; }
Owen Andersonb2c80da2011-02-25 21:41:48 +000077
Anton Korobeynikov10138002009-05-03 12:57:15 +000078 /// LowerOperation - Provide custom lowering hooks for some operations.
Craig Topper6f9e59e2014-04-29 07:58:09 +000079 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
Anton Korobeynikov7bfc3ea2009-05-03 12:59:50 +000080
81 /// getTargetNodeName - This method returns the name of a target specific
82 /// DAG node.
Craig Topper6f9e59e2014-04-29 07:58:09 +000083 const char *getTargetNodeName(unsigned Opcode) const override;
Anton Korobeynikov7bfc3ea2009-05-03 12:59:50 +000084
Dan Gohman21cea8a2010-04-17 15:26:15 +000085 SDValue LowerShifts(SDValue Op, SelectionDAG &DAG) const;
86 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikovebbdfef2010-05-01 12:04:32 +000087 SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
Dan Gohman21cea8a2010-04-17 15:26:15 +000088 SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const;
89 SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) const;
90 SDValue LowerSETCC(SDValue Op, SelectionDAG &DAG) const;
91 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const;
92 SDValue LowerSIGN_EXTEND(SDValue Op, SelectionDAG &DAG) const;
93 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const;
94 SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikov568afeb2012-11-21 17:28:27 +000095 SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikov82bedb12013-07-01 19:44:44 +000096 SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
Dan Gohman21cea8a2010-04-17 15:26:15 +000097 SDValue getReturnAddressFrameIndex(SelectionDAG &DAG) const;
Anton Korobeynikov56135102009-05-03 13:07:31 +000098
Anton Korobeynikova0e01be2009-08-26 13:44:29 +000099 TargetLowering::ConstraintType
Craig Topper6f9e59e2014-04-29 07:58:09 +0000100 getConstraintType(const std::string &Constraint) const override;
Anton Korobeynikova0e01be2009-08-26 13:44:29 +0000101 std::pair<unsigned, const TargetRegisterClass*>
Craig Topper6f9e59e2014-04-29 07:58:09 +0000102 getRegForInlineAsmConstraint(const std::string &Constraint,
103 MVT VT) const override;
Anton Korobeynikova0e01be2009-08-26 13:44:29 +0000104
Anton Korobeynikova6450df2010-01-15 21:19:43 +0000105 /// isTruncateFree - Return true if it's free to truncate a value of type
106 /// Ty1 to type Ty2. e.g. On msp430 it's free to truncate a i16 value in
107 /// register R15W to i8 by referencing its sub-register R15B.
Craig Topper6f9e59e2014-04-29 07:58:09 +0000108 bool isTruncateFree(Type *Ty1, Type *Ty2) const override;
109 bool isTruncateFree(EVT VT1, EVT VT2) const override;
Anton Korobeynikova6450df2010-01-15 21:19:43 +0000110
111 /// isZExtFree - Return true if any actual instruction that defines a value
112 /// of type Ty1 implicit zero-extends the value to Ty2 in the result
113 /// register. This does not necessarily include registers defined in unknown
114 /// ways, such as incoming arguments, or copies from unknown virtual
115 /// registers. Also, if isTruncateFree(Ty2, Ty1) is true, this does not
116 /// necessarily apply to truncate instructions. e.g. on msp430, all
117 /// instructions that define 8-bit values implicit zero-extend the result
118 /// out to 16 bits.
Craig Topper6f9e59e2014-04-29 07:58:09 +0000119 bool isZExtFree(Type *Ty1, Type *Ty2) const override;
120 bool isZExtFree(EVT VT1, EVT VT2) const override;
121 bool isZExtFree(SDValue Val, EVT VT2) const override;
Anton Korobeynikova6450df2010-01-15 21:19:43 +0000122
Anton Korobeynikovb6321e152009-05-03 13:12:23 +0000123 MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
Craig Topper6f9e59e2014-04-29 07:58:09 +0000124 MachineBasicBlock *BB) const override;
Anton Korobeynikovd8f32092009-12-12 18:55:37 +0000125 MachineBasicBlock* EmitShiftInstr(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +0000126 MachineBasicBlock *BB) const;
Anton Korobeynikov56135102009-05-03 13:07:31 +0000127
Anton Korobeynikov10138002009-05-03 12:57:15 +0000128 private:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000129 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000130 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000131 bool isTailCall,
132 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +0000133 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000134 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000135 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000136 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000137
138 SDValue LowerCCCArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000139 CallingConv::ID CallConv,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000140 bool isVarArg,
141 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000142 SDLoc dl,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000143 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000144 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000145
146 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000147 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000148 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000149 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +0000150 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000151
Craig Topper6f9e59e2014-04-29 07:58:09 +0000152 SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000153 LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +0000154 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000155 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000156 SDLoc dl, SelectionDAG &DAG,
Craig Topper6f9e59e2014-04-29 07:58:09 +0000157 SmallVectorImpl<SDValue> &InVals) const override;
158 SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +0000159 LowerCall(TargetLowering::CallLoweringInfo &CLI,
Craig Topper6f9e59e2014-04-29 07:58:09 +0000160 SmallVectorImpl<SDValue> &InVals) const override;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000161
Craig Topper6f9e59e2014-04-29 07:58:09 +0000162 SDValue LowerReturn(SDValue Chain,
163 CallingConv::ID CallConv, bool isVarArg,
164 const SmallVectorImpl<ISD::OutputArg> &Outs,
165 const SmallVectorImpl<SDValue> &OutVals,
166 SDLoc dl, SelectionDAG &DAG) const override;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +0000167
Craig Topper6f9e59e2014-04-29 07:58:09 +0000168 bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
169 SDValue &Base,
170 SDValue &Offset,
171 ISD::MemIndexedMode &AM,
172 SelectionDAG &DAG) const override;
Anton Korobeynikovd3c83192009-11-07 17:15:06 +0000173
Anton Korobeynikov10138002009-05-03 12:57:15 +0000174 const MSP430Subtarget &Subtarget;
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000175 const DataLayout *TD;
Anton Korobeynikov10138002009-05-03 12:57:15 +0000176 };
177} // namespace llvm
178
179#endif // LLVM_TARGET_MSP430_ISELLOWERING_H