blob: d8ad02fca40394c6e30f054a103ac05bde97866e [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- MSP430ISelLowering.h - MSP430 DAG Lowering Interface ----*- C++ -*-===//
Anton Korobeynikovf2c3e172009-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 Korobeynikovfd1b7c72009-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 Korobeynikovd2c94ae2009-05-03 13:03:33 +000028 RET_FLAG,
29
Anton Korobeynikove662f7a2009-12-07 02:27:53 +000030 /// Same as RET_FLAG, but used for returning from ISRs.
31 RETI_FLAG,
32
Anton Korobeynikovea54c982009-05-03 13:13:17 +000033 /// Y = R{R,L}A X, rotate right (left) arithmetically
34 RRA, RLA,
Anton Korobeynikov44288852009-05-03 13:07:31 +000035
Anton Korobeynikove699d0f2009-05-03 13:16:17 +000036 /// Y = RRC X, rotate right via carry
37 RRC,
38
Dan Gohman98ca4f22009-08-05 01:29:28 +000039 /// CALL - These operations represent an abstract call
Anton Korobeynikov44288852009-05-03 13:07:31 +000040 /// instruction, which includes a bunch of information.
Anton Korobeynikov3513ca82009-05-03 13:08:33 +000041 CALL,
42
43 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
44 /// and TargetGlobalAddress.
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +000045 Wrapper,
46
47 /// CMP - Compare instruction.
48 CMP,
49
Anton Korobeynikov2625de32009-12-12 18:55:37 +000050 /// SetCC - Operand 0 is condition code, and operand 1 is the flag
Anton Korobeynikoved1a51a2009-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 Korobeynikov1bb8cd72009-05-03 13:19:09 +000058 BR_CC,
Anton Korobeynikov8b528e52009-05-03 13:12:23 +000059
Anton Korobeynikov2625de32009-12-12 18:55:37 +000060 /// SELECT_CC - Operand 0 and operand 1 are selection variable, operand 3
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +000061 /// is condition code and operand 4 is flag operand.
Anton Korobeynikov2625de32009-12-12 18:55:37 +000062 SELECT_CC,
63
64 /// SHL, SRA, SRL - Non-constant shifts.
65 SHL, SRA, SRL
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000066 };
67 }
Anton Korobeynikovf2c3e172009-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
Owen Anderson95771af2011-02-25 21:41:48 +000076 virtual MVT getShiftAmountTy(EVT LHSTy) const { return MVT::i8; }
77
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000078 /// LowerOperation - Provide custom lowering hooks for some operations.
Dan Gohmand858e902010-04-17 15:26:15 +000079 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000080
81 /// getTargetNodeName - This method returns the name of a target specific
82 /// DAG node.
83 virtual const char *getTargetNodeName(unsigned Opcode) const;
84
Dan Gohmand858e902010-04-17 15:26:15 +000085 SDValue LowerShifts(SDValue Op, SelectionDAG &DAG) const;
86 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
Anton Korobeynikov69d5b482010-05-01 12:04:32 +000087 SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
Dan Gohmand858e902010-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;
95 SDValue getReturnAddressFrameIndex(SelectionDAG &DAG) const;
Anton Korobeynikov44288852009-05-03 13:07:31 +000096
Anton Korobeynikovcd761282009-08-26 13:44:29 +000097 TargetLowering::ConstraintType
98 getConstraintType(const std::string &Constraint) const;
99 std::pair<unsigned, const TargetRegisterClass*>
100 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
101
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000102 /// 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.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000105 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const;
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000106 virtual bool isTruncateFree(EVT VT1, EVT VT2) const;
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.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000116 virtual bool isZExtFree(Type *Ty1, Type *Ty2) const;
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000117 virtual bool isZExtFree(EVT VT1, EVT VT2) const;
118
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000119 MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000120 MachineBasicBlock *BB) const;
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000121 MachineBasicBlock* EmitShiftInstr(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000122 MachineBasicBlock *BB) const;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000123
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000124 private:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000125 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000126 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000127 bool isTailCall,
128 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000129 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000130 const SmallVectorImpl<ISD::InputArg> &Ins,
131 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000132 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000133
134 SDValue LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000135 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000136 bool isVarArg,
137 const SmallVectorImpl<ISD::InputArg> &Ins,
138 DebugLoc dl,
139 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000140 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000141
142 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000143 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000144 const SmallVectorImpl<ISD::InputArg> &Ins,
145 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000146 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000147
148 virtual SDValue
149 LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000150 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000151 const SmallVectorImpl<ISD::InputArg> &Ins,
152 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000153 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000154 virtual SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +0000155 LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +0000156 SmallVectorImpl<SDValue> &InVals) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000157
158 virtual SDValue
159 LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000160 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000161 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000162 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000163 DebugLoc dl, SelectionDAG &DAG) const;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000164
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000165 virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
166 SDValue &Base,
167 SDValue &Offset,
168 ISD::MemIndexedMode &AM,
169 SelectionDAG &DAG) const;
170
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000171 const MSP430Subtarget &Subtarget;
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000172 const TargetData *TD;
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000173 };
174} // namespace llvm
175
176#endif // LLVM_TARGET_MSP430_ISELLOWERING_H