blob: 0eac0938338c5ba6a3db1f7ab41963ffccd94ea9 [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//==-- 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
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
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 Korobeynikov1bb8cd72009-05-03 13:19:09 +000058 BR_CC,
Anton Korobeynikov8b528e52009-05-03 13:12:23 +000059
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +000060 /// 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 Korobeynikovfd1b7c72009-05-03 12:59:50 +000063 };
64 }
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000065
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 Korobeynikovfd1b7c72009-05-03 12:59:50 +000075
76 /// getTargetNodeName - This method returns the name of a target specific
77 /// DAG node.
78 virtual const char *getTargetNodeName(unsigned Opcode) const;
79
Bill Wendlingb4202b82009-07-01 18:50:55 +000080 /// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +000081 virtual unsigned getFunctionAlignment(const Function *F) const;
82
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000083 SDValue LowerShifts(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +000084 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov5d59f682009-05-03 13:14:46 +000085 SDValue LowerExternalSymbol(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +000086 SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG);
87 SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikovb78e2142009-05-03 13:17:49 +000088 SDValue LowerSIGN_EXTEND(SDValue Op, SelectionDAG &DAG);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +000089 SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG);
90 SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG);
91 SDValue getReturnAddressFrameIndex(SelectionDAG &DAG);
Anton Korobeynikov44288852009-05-03 13:07:31 +000092
Anton Korobeynikovcd761282009-08-26 13:44:29 +000093 TargetLowering::ConstraintType
94 getConstraintType(const std::string &Constraint) const;
95 std::pair<unsigned, const TargetRegisterClass*>
96 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const;
97
Anton Korobeynikov8b528e52009-05-03 13:12:23 +000098 MachineBasicBlock* EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chengfb2e7522009-09-18 21:02:19 +000099 MachineBasicBlock *BB,
100 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000101
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000102 private:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000103 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000104 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000105 bool isTailCall,
106 const SmallVectorImpl<ISD::OutputArg> &Outs,
107 const SmallVectorImpl<ISD::InputArg> &Ins,
108 DebugLoc dl, SelectionDAG &DAG,
109 SmallVectorImpl<SDValue> &InVals);
110
111 SDValue LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000112 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000113 bool isVarArg,
114 const SmallVectorImpl<ISD::InputArg> &Ins,
115 DebugLoc dl,
116 SelectionDAG &DAG,
117 SmallVectorImpl<SDValue> &InVals);
118
119 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000120 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000121 const SmallVectorImpl<ISD::InputArg> &Ins,
122 DebugLoc dl, SelectionDAG &DAG,
123 SmallVectorImpl<SDValue> &InVals);
124
125 virtual SDValue
126 LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000127 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000128 const SmallVectorImpl<ISD::InputArg> &Ins,
129 DebugLoc dl, SelectionDAG &DAG,
130 SmallVectorImpl<SDValue> &InVals);
131 virtual SDValue
132 LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000133 CallingConv::ID CallConv, bool isVarArg, bool isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000134 const SmallVectorImpl<ISD::OutputArg> &Outs,
135 const SmallVectorImpl<ISD::InputArg> &Ins,
136 DebugLoc dl, SelectionDAG &DAG,
137 SmallVectorImpl<SDValue> &InVals);
138
139 virtual SDValue
140 LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000141 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000142 const SmallVectorImpl<ISD::OutputArg> &Outs,
143 DebugLoc dl, SelectionDAG &DAG);
144
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000145 virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
146 SDValue &Base,
147 SDValue &Offset,
148 ISD::MemIndexedMode &AM,
149 SelectionDAG &DAG) const;
150
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000151 const MSP430Subtarget &Subtarget;
152 const MSP430TargetMachine &TM;
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000153 const TargetData *TD;
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000154 };
155} // namespace llvm
156
157#endif // LLVM_TARGET_MSP430_ISELLOWERING_H