blob: f0d3774e3bad3cb246a710ca29d769ea4a4a884c [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//===-- MSP430ISelLowering.cpp - MSP430 DAG Lowering Implementation ------===//
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 implements the MSP430TargetLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "msp430-lower"
15
16#include "MSP430ISelLowering.h"
17#include "MSP430.h"
Anton Korobeynikov06ccca52009-12-07 02:28:10 +000018#include "MSP430MachineFunctionInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000019#include "MSP430TargetMachine.h"
20#include "MSP430Subtarget.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/Intrinsics.h"
24#include "llvm/CallingConv.h"
25#include "llvm/GlobalVariable.h"
26#include "llvm/GlobalAlias.h"
27#include "llvm/CodeGen/CallingConvLower.h"
28#include "llvm/CodeGen/MachineFrameInfo.h"
29#include "llvm/CodeGen/MachineFunction.h"
30#include "llvm/CodeGen/MachineInstrBuilder.h"
31#include "llvm/CodeGen/MachineRegisterInfo.h"
32#include "llvm/CodeGen/SelectionDAGISel.h"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000033#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000034#include "llvm/CodeGen/ValueTypes.h"
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +000035#include "llvm/Support/CommandLine.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000036#include "llvm/Support/Debug.h"
Torok Edwin804e0fe2009-07-08 19:04:27 +000037#include "llvm/Support/ErrorHandling.h"
Chris Lattner4437ae22009-08-23 07:05:07 +000038#include "llvm/Support/raw_ostream.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000039using namespace llvm;
40
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +000041typedef enum {
42 NoHWMult,
43 HWMultIntr,
44 HWMultNoIntr
45} HWMultUseMode;
46
47static cl::opt<HWMultUseMode>
48HWMultMode("msp430-hwmult-mode",
49 cl::desc("Hardware multiplier use mode"),
50 cl::init(HWMultNoIntr),
51 cl::values(
52 clEnumValN(NoHWMult, "no",
53 "Do not use hardware multiplier"),
54 clEnumValN(HWMultIntr, "interrupts",
55 "Assume hardware multiplier can be used inside interrupts"),
56 clEnumValN(HWMultNoIntr, "use",
57 "Assume hardware multiplier cannot be used inside interrupts"),
58 clEnumValEnd));
59
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000060MSP430TargetLowering::MSP430TargetLowering(MSP430TargetMachine &tm) :
Chris Lattnerf0144122009-07-28 03:13:23 +000061 TargetLowering(tm, new TargetLoweringObjectFileELF()),
62 Subtarget(*tm.getSubtargetImpl()), TM(tm) {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000063
Anton Korobeynikov06ccca52009-12-07 02:28:10 +000064 TD = getTargetData();
65
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000066 // Set up the register classes.
Craig Topper420761a2012-04-20 07:30:17 +000067 addRegisterClass(MVT::i8, &MSP430::GR8RegClass);
68 addRegisterClass(MVT::i16, &MSP430::GR16RegClass);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000069
70 // Compute derived properties from the register classes
71 computeRegisterProperties();
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000072
Anton Korobeynikov1476d972009-05-03 13:03:14 +000073 // Provide all sorts of operation actions
74
75 // Division is expensive
76 setIntDivIsCheap(false);
77
Anton Korobeynikovc08163e2009-05-03 13:11:35 +000078 setStackPointerRegisterToSaveRestore(MSP430::SPW);
79 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +000080 setBooleanVectorContents(ZeroOrOneBooleanContent); // FIXME: Is this correct?
Anton Korobeynikovc08163e2009-05-03 13:11:35 +000081
Anton Korobeynikov06ac0822009-11-07 17:15:25 +000082 // We have post-incremented loads / stores.
Anton Korobeynikov6534f832009-11-07 17:15:06 +000083 setIndexedLoadAction(ISD::POST_INC, MVT::i8, Legal);
84 setIndexedLoadAction(ISD::POST_INC, MVT::i16, Legal);
85
86 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
87 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
88 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
89 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +000090 setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Expand);
Anton Korobeynikov36b6e532009-05-03 13:06:03 +000091
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000092 // We don't have any truncstores
Owen Anderson825b72b2009-08-11 20:47:22 +000093 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000094
Owen Anderson825b72b2009-08-11 20:47:22 +000095 setOperationAction(ISD::SRA, MVT::i8, Custom);
96 setOperationAction(ISD::SHL, MVT::i8, Custom);
97 setOperationAction(ISD::SRL, MVT::i8, Custom);
98 setOperationAction(ISD::SRA, MVT::i16, Custom);
99 setOperationAction(ISD::SHL, MVT::i16, Custom);
100 setOperationAction(ISD::SRL, MVT::i16, Custom);
101 setOperationAction(ISD::ROTL, MVT::i8, Expand);
102 setOperationAction(ISD::ROTR, MVT::i8, Expand);
103 setOperationAction(ISD::ROTL, MVT::i16, Expand);
104 setOperationAction(ISD::ROTR, MVT::i16, Expand);
105 setOperationAction(ISD::GlobalAddress, MVT::i16, Custom);
106 setOperationAction(ISD::ExternalSymbol, MVT::i16, Custom);
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000107 setOperationAction(ISD::BlockAddress, MVT::i16, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000108 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000109 setOperationAction(ISD::BR_CC, MVT::i8, Custom);
110 setOperationAction(ISD::BR_CC, MVT::i16, Custom);
111 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000112 setOperationAction(ISD::SETCC, MVT::i8, Custom);
113 setOperationAction(ISD::SETCC, MVT::i16, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000114 setOperationAction(ISD::SELECT, MVT::i8, Expand);
115 setOperationAction(ISD::SELECT, MVT::i16, Expand);
116 setOperationAction(ISD::SELECT_CC, MVT::i8, Custom);
117 setOperationAction(ISD::SELECT_CC, MVT::i16, Custom);
118 setOperationAction(ISD::SIGN_EXTEND, MVT::i16, Custom);
Anton Korobeynikov379a0872009-08-25 17:00:23 +0000119 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i8, Expand);
120 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i16, Expand);
Anton Korobeynikov8725bd22009-05-03 13:14:25 +0000121
Owen Anderson825b72b2009-08-11 20:47:22 +0000122 setOperationAction(ISD::CTTZ, MVT::i8, Expand);
123 setOperationAction(ISD::CTTZ, MVT::i16, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000124 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i8, Expand);
125 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000126 setOperationAction(ISD::CTLZ, MVT::i8, Expand);
127 setOperationAction(ISD::CTLZ, MVT::i16, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000128 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8, Expand);
129 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000130 setOperationAction(ISD::CTPOP, MVT::i8, Expand);
131 setOperationAction(ISD::CTPOP, MVT::i16, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000132
Owen Anderson825b72b2009-08-11 20:47:22 +0000133 setOperationAction(ISD::SHL_PARTS, MVT::i8, Expand);
134 setOperationAction(ISD::SHL_PARTS, MVT::i16, Expand);
135 setOperationAction(ISD::SRL_PARTS, MVT::i8, Expand);
136 setOperationAction(ISD::SRL_PARTS, MVT::i16, Expand);
137 setOperationAction(ISD::SRA_PARTS, MVT::i8, Expand);
138 setOperationAction(ISD::SRA_PARTS, MVT::i16, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000139
Owen Anderson825b72b2009-08-11 20:47:22 +0000140 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000141
Anton Korobeynikov8725bd22009-05-03 13:14:25 +0000142 // FIXME: Implement efficiently multiplication by a constant
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000143 setOperationAction(ISD::MUL, MVT::i8, Expand);
144 setOperationAction(ISD::MULHS, MVT::i8, Expand);
145 setOperationAction(ISD::MULHU, MVT::i8, Expand);
146 setOperationAction(ISD::SMUL_LOHI, MVT::i8, Expand);
147 setOperationAction(ISD::UMUL_LOHI, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000148 setOperationAction(ISD::MUL, MVT::i16, Expand);
149 setOperationAction(ISD::MULHS, MVT::i16, Expand);
150 setOperationAction(ISD::MULHU, MVT::i16, Expand);
151 setOperationAction(ISD::SMUL_LOHI, MVT::i16, Expand);
152 setOperationAction(ISD::UMUL_LOHI, MVT::i16, Expand);
Anton Korobeynikovf2f54022009-05-03 13:18:33 +0000153
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000154 setOperationAction(ISD::UDIV, MVT::i8, Expand);
155 setOperationAction(ISD::UDIVREM, MVT::i8, Expand);
156 setOperationAction(ISD::UREM, MVT::i8, Expand);
157 setOperationAction(ISD::SDIV, MVT::i8, Expand);
158 setOperationAction(ISD::SDIVREM, MVT::i8, Expand);
159 setOperationAction(ISD::SREM, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000160 setOperationAction(ISD::UDIV, MVT::i16, Expand);
161 setOperationAction(ISD::UDIVREM, MVT::i16, Expand);
162 setOperationAction(ISD::UREM, MVT::i16, Expand);
163 setOperationAction(ISD::SDIV, MVT::i16, Expand);
164 setOperationAction(ISD::SDIVREM, MVT::i16, Expand);
165 setOperationAction(ISD::SREM, MVT::i16, Expand);
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +0000166
167 // Libcalls names.
168 if (HWMultMode == HWMultIntr) {
169 setLibcallName(RTLIB::MUL_I8, "__mulqi3hw");
170 setLibcallName(RTLIB::MUL_I16, "__mulhi3hw");
171 } else if (HWMultMode == HWMultNoIntr) {
172 setLibcallName(RTLIB::MUL_I8, "__mulqi3hw_noint");
173 setLibcallName(RTLIB::MUL_I16, "__mulhi3hw_noint");
174 }
Eli Friedmanfc5d3052011-05-06 20:34:06 +0000175
176 setMinFunctionAlignment(1);
177 setPrefFunctionAlignment(2);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000178}
179
Dan Gohmand858e902010-04-17 15:26:15 +0000180SDValue MSP430TargetLowering::LowerOperation(SDValue Op,
181 SelectionDAG &DAG) const {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000182 switch (Op.getOpcode()) {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000183 case ISD::SHL: // FALLTHROUGH
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000184 case ISD::SRL:
Anton Korobeynikov44288852009-05-03 13:07:31 +0000185 case ISD::SRA: return LowerShifts(Op, DAG);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000186 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000187 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000188 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000189 case ISD::SETCC: return LowerSETCC(Op, DAG);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000190 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
191 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000192 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000193 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
194 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000195 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000196 llvm_unreachable("unimplemented operand");
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000197 }
198}
199
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000200//===----------------------------------------------------------------------===//
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000201// MSP430 Inline Assembly Support
202//===----------------------------------------------------------------------===//
203
204/// getConstraintType - Given a constraint letter, return the type of
205/// constraint it is for this target.
206TargetLowering::ConstraintType
207MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
208 if (Constraint.size() == 1) {
209 switch (Constraint[0]) {
210 case 'r':
211 return C_RegisterClass;
212 default:
213 break;
214 }
215 }
216 return TargetLowering::getConstraintType(Constraint);
217}
218
219std::pair<unsigned, const TargetRegisterClass*>
220MSP430TargetLowering::
221getRegForInlineAsmConstraint(const std::string &Constraint,
222 EVT VT) const {
223 if (Constraint.size() == 1) {
224 // GCC Constraint Letters
225 switch (Constraint[0]) {
226 default: break;
227 case 'r': // GENERAL_REGS
228 if (VT == MVT::i8)
Craig Topper420761a2012-04-20 07:30:17 +0000229 return std::make_pair(0U, &MSP430::GR8RegClass);
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000230
Craig Topper420761a2012-04-20 07:30:17 +0000231 return std::make_pair(0U, &MSP430::GR16RegClass);
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000232 }
233 }
234
235 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
236}
237
238//===----------------------------------------------------------------------===//
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000239// Calling Convention Implementation
240//===----------------------------------------------------------------------===//
241
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000242#include "MSP430GenCallingConv.inc"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000243
Dan Gohman98ca4f22009-08-05 01:29:28 +0000244SDValue
245MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000246 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000247 bool isVarArg,
248 const SmallVectorImpl<ISD::InputArg>
249 &Ins,
250 DebugLoc dl,
251 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000252 SmallVectorImpl<SDValue> &InVals)
253 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000254
255 switch (CallConv) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000256 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000257 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000258 case CallingConv::C:
259 case CallingConv::Fast:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000260 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000261 case CallingConv::MSP430_INTR:
David Blaikie4d6ccb52012-01-20 21:51:11 +0000262 if (Ins.empty())
263 return Chain;
Chris Lattner75361b62010-04-07 22:58:41 +0000264 report_fatal_error("ISRs cannot have arguments");
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000265 }
266}
267
Dan Gohman98ca4f22009-08-05 01:29:28 +0000268SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000269MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000270 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +0000271 bool doesNotRet, bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000272 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000273 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000274 const SmallVectorImpl<ISD::InputArg> &Ins,
275 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000276 SmallVectorImpl<SDValue> &InVals) const {
Evan Cheng0c439eb2010-01-27 00:07:07 +0000277 // MSP430 target does not yet support tail call optimization.
278 isTailCall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000279
280 switch (CallConv) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000281 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000282 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000283 case CallingConv::Fast:
284 case CallingConv::C:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000285 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
Dan Gohmanc9403652010-07-07 15:54:55 +0000286 Outs, OutVals, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000287 case CallingConv::MSP430_INTR:
Chris Lattner75361b62010-04-07 22:58:41 +0000288 report_fatal_error("ISRs cannot be called directly");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000289 }
290}
291
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000292/// LowerCCCArguments - transform physical registers into virtual registers and
293/// generate load operations for arguments places on the stack.
294// FIXME: struct return stuff
295// FIXME: varargs
Dan Gohman98ca4f22009-08-05 01:29:28 +0000296SDValue
297MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000298 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000299 bool isVarArg,
300 const SmallVectorImpl<ISD::InputArg>
301 &Ins,
302 DebugLoc dl,
303 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000304 SmallVectorImpl<SDValue> &InVals)
305 const {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000306 MachineFunction &MF = DAG.getMachineFunction();
307 MachineFrameInfo *MFI = MF.getFrameInfo();
308 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000309
310 // Assign locations to all of the incoming arguments.
311 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +0000312 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
313 getTargetMachine(), ArgLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +0000314 CCInfo.AnalyzeFormalArguments(Ins, CC_MSP430);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000315
316 assert(!isVarArg && "Varargs not supported yet");
317
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000318 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
319 CCValAssign &VA = ArgLocs[i];
320 if (VA.isRegLoc()) {
321 // Arguments passed in registers
Owen Andersone50ed302009-08-10 22:56:29 +0000322 EVT RegVT = VA.getLocVT();
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 switch (RegVT.getSimpleVT().SimpleTy) {
Owen Anderson95771af2011-02-25 21:41:48 +0000324 default:
Torok Edwin804e0fe2009-07-08 19:04:27 +0000325 {
Torok Edwindac237e2009-07-08 20:53:28 +0000326#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000327 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 << RegVT.getSimpleVT().SimpleTy << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000329#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000330 llvm_unreachable(0);
Torok Edwin804e0fe2009-07-08 19:04:27 +0000331 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000332 case MVT::i16:
Craig Topper420761a2012-04-20 07:30:17 +0000333 unsigned VReg = RegInfo.createVirtualRegister(&MSP430::GR16RegClass);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000334 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000335 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000336
337 // If this is an 8-bit value, it is really passed promoted to 16
338 // bits. Insert an assert[sz]ext to capture this, then truncate to the
339 // right size.
340 if (VA.getLocInfo() == CCValAssign::SExt)
341 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
342 DAG.getValueType(VA.getValVT()));
343 else if (VA.getLocInfo() == CCValAssign::ZExt)
344 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
345 DAG.getValueType(VA.getValVT()));
346
347 if (VA.getLocInfo() != CCValAssign::Full)
348 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
349
Dan Gohman98ca4f22009-08-05 01:29:28 +0000350 InVals.push_back(ArgValue);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000351 }
352 } else {
353 // Sanity check
354 assert(VA.isMemLoc());
355 // Load the argument to a virtual register
356 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
357 if (ObjSize > 2) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000358 errs() << "LowerFormalArguments Unhandled argument type: "
Duncan Sands1440e8b2010-11-03 11:35:31 +0000359 << EVT(VA.getLocVT()).getEVTString()
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000360 << "\n";
361 }
362 // Create the frame index object for this incoming parameter...
Evan Chenged2ae132010-07-03 00:40:23 +0000363 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000364
365 // Create the SelectionDAG nodes corresponding to a load
366 //from this parameter
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 SDValue FIN = DAG.getFrameIndex(FI, MVT::i16);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000368 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000369 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000370 false, false, false, 0));
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000371 }
372 }
373
Dan Gohman98ca4f22009-08-05 01:29:28 +0000374 return Chain;
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000375}
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000376
Dan Gohman98ca4f22009-08-05 01:29:28 +0000377SDValue
378MSP430TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000379 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000380 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000381 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000382 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000383
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000384 // CCValAssign - represent the assignment of the return value to a location
385 SmallVector<CCValAssign, 16> RVLocs;
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000386
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000387 // ISRs cannot return any value.
David Blaikie4d6ccb52012-01-20 21:51:11 +0000388 if (CallConv == CallingConv::MSP430_INTR && !Outs.empty())
Chris Lattner75361b62010-04-07 22:58:41 +0000389 report_fatal_error("ISRs cannot return any value");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000390
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000391 // CCState - Info about the registers and stack slot.
Eric Christopher471e4222011-06-08 23:55:35 +0000392 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
393 getTargetMachine(), RVLocs, *DAG.getContext());
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000394
Dan Gohman98ca4f22009-08-05 01:29:28 +0000395 // Analize return values.
396 CCInfo.AnalyzeReturn(Outs, RetCC_MSP430);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000397
398 // If this is the first return lowered for this function, add the regs to the
399 // liveout set for the function.
400 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
401 for (unsigned i = 0; i != RVLocs.size(); ++i)
402 if (RVLocs[i].isRegLoc())
403 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
404 }
405
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000406 SDValue Flag;
407
408 // Copy the result values into the output registers.
409 for (unsigned i = 0; i != RVLocs.size(); ++i) {
410 CCValAssign &VA = RVLocs[i];
411 assert(VA.isRegLoc() && "Can only return in registers!");
412
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000413 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohmanc9403652010-07-07 15:54:55 +0000414 OutVals[i], Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000415
Anton Korobeynikovdcb802c2009-05-03 13:00:11 +0000416 // Guarantee that all emitted copies are stuck together,
417 // avoiding something bad.
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000418 Flag = Chain.getValue(1);
419 }
420
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000421 unsigned Opc = (CallConv == CallingConv::MSP430_INTR ?
422 MSP430ISD::RETI_FLAG : MSP430ISD::RET_FLAG);
423
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000424 if (Flag.getNode())
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000425 return DAG.getNode(Opc, dl, MVT::Other, Chain, Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000426
427 // Return Void
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000428 return DAG.getNode(Opc, dl, MVT::Other, Chain);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000429}
430
Anton Korobeynikov44288852009-05-03 13:07:31 +0000431/// LowerCCCCallTo - functions arguments are copied from virtual regs to
432/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
433/// TODO: sret.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000434SDValue
435MSP430TargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000436 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000437 bool isTailCall,
438 const SmallVectorImpl<ISD::OutputArg>
439 &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000440 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000441 const SmallVectorImpl<ISD::InputArg> &Ins,
442 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000443 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000444 // Analyze operands of the call, assigning locations to each operand.
445 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +0000446 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
447 getTargetMachine(), ArgLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000448
Dan Gohman98ca4f22009-08-05 01:29:28 +0000449 CCInfo.AnalyzeCallOperands(Outs, CC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000450
451 // Get a count of how many bytes are to be pushed on the stack.
452 unsigned NumBytes = CCInfo.getNextStackOffset();
453
454 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
455 getPointerTy(), true));
456
457 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
458 SmallVector<SDValue, 12> MemOpChains;
459 SDValue StackPtr;
460
461 // Walk the register/memloc assignments, inserting copies/loads.
462 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
463 CCValAssign &VA = ArgLocs[i];
464
Dan Gohmanc9403652010-07-07 15:54:55 +0000465 SDValue Arg = OutVals[i];
Anton Korobeynikov44288852009-05-03 13:07:31 +0000466
467 // Promote the value if needed.
468 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000469 default: llvm_unreachable("Unknown loc info!");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000470 case CCValAssign::Full: break;
471 case CCValAssign::SExt:
472 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
473 break;
474 case CCValAssign::ZExt:
475 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
476 break;
477 case CCValAssign::AExt:
478 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
479 break;
480 }
481
482 // Arguments that can be passed on register must be kept at RegsToPass
483 // vector
484 if (VA.isRegLoc()) {
485 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
486 } else {
487 assert(VA.isMemLoc());
488
489 if (StackPtr.getNode() == 0)
490 StackPtr = DAG.getCopyFromReg(Chain, dl, MSP430::SPW, getPointerTy());
491
492 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
493 StackPtr,
494 DAG.getIntPtrConstant(VA.getLocMemOffset()));
495
496
497 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000498 MachinePointerInfo(),false, false, 0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000499 }
500 }
501
502 // Transform all store nodes into one single node because all store nodes are
503 // independent of each other.
504 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Anton Korobeynikov44288852009-05-03 13:07:31 +0000506 &MemOpChains[0], MemOpChains.size());
507
508 // Build a sequence of copy-to-reg nodes chained together with token chain and
509 // flag operands which copy the outgoing args into registers. The InFlag in
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000510 // necessary since all emitted instructions must be stuck together.
Anton Korobeynikov44288852009-05-03 13:07:31 +0000511 SDValue InFlag;
512 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
513 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
514 RegsToPass[i].second, InFlag);
515 InFlag = Chain.getValue(1);
516 }
517
518 // If the callee is a GlobalAddress node (quite common, every direct call is)
519 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
520 // Likewise ExternalSymbol -> TargetExternalSymbol.
521 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Devang Patel0d881da2010-07-06 22:08:15 +0000522 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000523 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000524 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000525
526 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000527 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000528 SmallVector<SDValue, 8> Ops;
529 Ops.push_back(Chain);
530 Ops.push_back(Callee);
531
532 // Add argument registers to the end of the list so that they are
533 // known live into the call.
534 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
535 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
536 RegsToPass[i].second.getValueType()));
537
538 if (InFlag.getNode())
539 Ops.push_back(InFlag);
540
541 Chain = DAG.getNode(MSP430ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
542 InFlag = Chain.getValue(1);
543
544 // Create the CALLSEQ_END node.
545 Chain = DAG.getCALLSEQ_END(Chain,
546 DAG.getConstant(NumBytes, getPointerTy(), true),
547 DAG.getConstant(0, getPointerTy(), true),
548 InFlag);
549 InFlag = Chain.getValue(1);
550
551 // Handle result values, copying them out of physregs into vregs that we
552 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000553 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl,
554 DAG, InVals);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000555}
556
Dan Gohman98ca4f22009-08-05 01:29:28 +0000557/// LowerCallResult - Lower the result values of a call into the
558/// appropriate copies out of appropriate physical registers.
559///
560SDValue
Anton Korobeynikov44288852009-05-03 13:07:31 +0000561MSP430TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000562 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000563 const SmallVectorImpl<ISD::InputArg> &Ins,
564 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000565 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000566
567 // Assign locations to each value returned by this call.
568 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +0000569 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
570 getTargetMachine(), RVLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000571
Dan Gohman98ca4f22009-08-05 01:29:28 +0000572 CCInfo.AnalyzeCallResult(Ins, RetCC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000573
574 // Copy all of the result registers out of their specified physreg.
575 for (unsigned i = 0; i != RVLocs.size(); ++i) {
576 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
577 RVLocs[i].getValVT(), InFlag).getValue(1);
578 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000579 InVals.push_back(Chain.getValue(0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000580 }
581
Dan Gohman98ca4f22009-08-05 01:29:28 +0000582 return Chain;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000583}
584
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000585SDValue MSP430TargetLowering::LowerShifts(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000586 SelectionDAG &DAG) const {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000587 unsigned Opc = Op.getOpcode();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000588 SDNode* N = Op.getNode();
Owen Andersone50ed302009-08-10 22:56:29 +0000589 EVT VT = Op.getValueType();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000590 DebugLoc dl = N->getDebugLoc();
591
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000592 // Expand non-constant shifts to loops:
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000593 if (!isa<ConstantSDNode>(N->getOperand(1)))
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000594 switch (Opc) {
Craig Topperbc219812012-02-07 02:50:20 +0000595 default: llvm_unreachable("Invalid shift opcode!");
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000596 case ISD::SHL:
597 return DAG.getNode(MSP430ISD::SHL, dl,
598 VT, N->getOperand(0), N->getOperand(1));
599 case ISD::SRA:
600 return DAG.getNode(MSP430ISD::SRA, dl,
601 VT, N->getOperand(0), N->getOperand(1));
602 case ISD::SRL:
603 return DAG.getNode(MSP430ISD::SRL, dl,
604 VT, N->getOperand(0), N->getOperand(1));
605 }
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000606
607 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
608
609 // Expand the stuff into sequence of shifts.
610 // FIXME: for some shift amounts this might be done better!
611 // E.g.: foo >> (8 + N) => sxt(swpb(foo)) >> N
612 SDValue Victim = N->getOperand(0);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000613
614 if (Opc == ISD::SRL && ShiftAmount) {
615 // Emit a special goodness here:
616 // srl A, 1 => clrc; rrc A
Anton Korobeynikovbf8ef3f2009-05-03 13:16:37 +0000617 Victim = DAG.getNode(MSP430ISD::RRC, dl, VT, Victim);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000618 ShiftAmount -= 1;
619 }
620
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000621 while (ShiftAmount--)
Anton Korobeynikovaceb6202009-05-17 10:15:22 +0000622 Victim = DAG.getNode((Opc == ISD::SHL ? MSP430ISD::RLA : MSP430ISD::RRA),
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000623 dl, VT, Victim);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000624
625 return Victim;
626}
627
Dan Gohmand858e902010-04-17 15:26:15 +0000628SDValue MSP430TargetLowering::LowerGlobalAddress(SDValue Op,
629 SelectionDAG &DAG) const {
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000630 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
631 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
632
633 // Create the TargetGlobalAddress node, folding in the constant offset.
Devang Patel0d881da2010-07-06 22:08:15 +0000634 SDValue Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
635 getPointerTy(), Offset);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000636 return DAG.getNode(MSP430ISD::Wrapper, Op.getDebugLoc(),
637 getPointerTy(), Result);
638}
639
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000640SDValue MSP430TargetLowering::LowerExternalSymbol(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000641 SelectionDAG &DAG) const {
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000642 DebugLoc dl = Op.getDebugLoc();
643 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
644 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
645
Chad Rosier90f20042012-02-22 17:25:00 +0000646 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000647}
648
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000649SDValue MSP430TargetLowering::LowerBlockAddress(SDValue Op,
650 SelectionDAG &DAG) const {
651 DebugLoc dl = Op.getDebugLoc();
652 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
653 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), /*isTarget=*/true);
654
Chad Rosier90f20042012-02-22 17:25:00 +0000655 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000656}
657
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000658static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC,
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000659 ISD::CondCode CC,
660 DebugLoc dl, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000661 // FIXME: Handle bittests someday
662 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
663
664 // FIXME: Handle jump negative someday
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000665 MSP430CC::CondCodes TCC = MSP430CC::COND_INVALID;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000666 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000667 default: llvm_unreachable("Invalid integer condition!");
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000668 case ISD::SETEQ:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000669 TCC = MSP430CC::COND_E; // aka COND_Z
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000670 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000671 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000672 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000673 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000674 break;
675 case ISD::SETNE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000676 TCC = MSP430CC::COND_NE; // aka COND_NZ
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000677 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000678 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000679 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000680 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000681 break;
682 case ISD::SETULE:
683 std::swap(LHS, RHS); // FALLTHROUGH
684 case ISD::SETUGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000685 // Turn lhs u>= rhs with lhs constant into rhs u< lhs+1, this allows us to
686 // fold constant into instruction.
687 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
688 LHS = RHS;
689 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
690 TCC = MSP430CC::COND_LO;
691 break;
692 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000693 TCC = MSP430CC::COND_HS; // aka COND_C
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000694 break;
695 case ISD::SETUGT:
696 std::swap(LHS, RHS); // FALLTHROUGH
697 case ISD::SETULT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000698 // Turn lhs u< rhs with lhs constant into rhs u>= lhs+1, this allows us to
699 // fold constant into instruction.
700 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
701 LHS = RHS;
702 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
703 TCC = MSP430CC::COND_HS;
704 break;
705 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000706 TCC = MSP430CC::COND_LO; // aka COND_NC
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000707 break;
708 case ISD::SETLE:
709 std::swap(LHS, RHS); // FALLTHROUGH
710 case ISD::SETGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000711 // Turn lhs >= rhs with lhs constant into rhs < lhs+1, this allows us to
712 // fold constant into instruction.
713 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
714 LHS = RHS;
715 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
716 TCC = MSP430CC::COND_L;
717 break;
718 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000719 TCC = MSP430CC::COND_GE;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000720 break;
721 case ISD::SETGT:
722 std::swap(LHS, RHS); // FALLTHROUGH
723 case ISD::SETLT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000724 // Turn lhs < rhs with lhs constant into rhs >= lhs+1, this allows us to
725 // fold constant into instruction.
726 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
727 LHS = RHS;
728 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
729 TCC = MSP430CC::COND_GE;
730 break;
731 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000732 TCC = MSP430CC::COND_L;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000733 break;
734 }
735
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000736 TargetCC = DAG.getConstant(TCC, MVT::i8);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000737 return DAG.getNode(MSP430ISD::CMP, dl, MVT::Glue, LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000738}
739
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000740
Dan Gohmand858e902010-04-17 15:26:15 +0000741SDValue MSP430TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000742 SDValue Chain = Op.getOperand(0);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000743 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
744 SDValue LHS = Op.getOperand(2);
745 SDValue RHS = Op.getOperand(3);
746 SDValue Dest = Op.getOperand(4);
747 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000748
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000749 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000750 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000751
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000752 return DAG.getNode(MSP430ISD::BR_CC, dl, Op.getValueType(),
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000753 Chain, Dest, TargetCC, Flag);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000754}
755
Dan Gohmand858e902010-04-17 15:26:15 +0000756SDValue MSP430TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000757 SDValue LHS = Op.getOperand(0);
758 SDValue RHS = Op.getOperand(1);
759 DebugLoc dl = Op.getDebugLoc();
760
761 // If we are doing an AND and testing against zero, then the CMP
762 // will not be generated. The AND (or BIT) will generate the condition codes,
763 // but they are different from CMP.
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000764 // FIXME: since we're doing a post-processing, use a pseudoinstr here, so
765 // lowering & isel wouldn't diverge.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000766 bool andCC = false;
767 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
768 if (RHSC->isNullValue() && LHS.hasOneUse() &&
769 (LHS.getOpcode() == ISD::AND ||
770 (LHS.getOpcode() == ISD::TRUNCATE &&
771 LHS.getOperand(0).getOpcode() == ISD::AND))) {
772 andCC = true;
773 }
774 }
775 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
776 SDValue TargetCC;
777 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
778
779 // Get the condition codes directly from the status register, if its easy.
780 // Otherwise a branch will be generated. Note that the AND and BIT
781 // instructions generate different flags than CMP, the carry bit can be used
782 // for NE/EQ.
783 bool Invert = false;
784 bool Shift = false;
785 bool Convert = true;
786 switch (cast<ConstantSDNode>(TargetCC)->getZExtValue()) {
787 default:
788 Convert = false;
789 break;
790 case MSP430CC::COND_HS:
791 // Res = SRW & 1, no processing is required
792 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000793 case MSP430CC::COND_LO:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000794 // Res = ~(SRW & 1)
795 Invert = true;
796 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000797 case MSP430CC::COND_NE:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000798 if (andCC) {
799 // C = ~Z, thus Res = SRW & 1, no processing is required
800 } else {
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000801 // Res = ~((SRW >> 1) & 1)
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000802 Shift = true;
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000803 Invert = true;
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000804 }
805 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000806 case MSP430CC::COND_E:
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000807 Shift = true;
808 // C = ~Z for AND instruction, thus we can put Res = ~(SRW & 1), however,
809 // Res = (SRW >> 1) & 1 is 1 word shorter.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000810 break;
811 }
812 EVT VT = Op.getValueType();
813 SDValue One = DAG.getConstant(1, VT);
814 if (Convert) {
815 SDValue SR = DAG.getCopyFromReg(DAG.getEntryNode(), dl, MSP430::SRW,
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000816 MVT::i16, Flag);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000817 if (Shift)
818 // FIXME: somewhere this is turned into a SRL, lower it MSP specific?
819 SR = DAG.getNode(ISD::SRA, dl, MVT::i16, SR, One);
820 SR = DAG.getNode(ISD::AND, dl, MVT::i16, SR, One);
821 if (Invert)
822 SR = DAG.getNode(ISD::XOR, dl, MVT::i16, SR, One);
823 return SR;
824 } else {
825 SDValue Zero = DAG.getConstant(0, VT);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000826 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000827 SmallVector<SDValue, 4> Ops;
828 Ops.push_back(One);
829 Ops.push_back(Zero);
830 Ops.push_back(TargetCC);
831 Ops.push_back(Flag);
832 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
833 }
834}
835
Dan Gohmand858e902010-04-17 15:26:15 +0000836SDValue MSP430TargetLowering::LowerSELECT_CC(SDValue Op,
837 SelectionDAG &DAG) const {
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000838 SDValue LHS = Op.getOperand(0);
839 SDValue RHS = Op.getOperand(1);
840 SDValue TrueV = Op.getOperand(2);
841 SDValue FalseV = Op.getOperand(3);
842 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000843 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000844
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000845 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000846 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000847
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000848 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000849 SmallVector<SDValue, 4> Ops;
850 Ops.push_back(TrueV);
851 Ops.push_back(FalseV);
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000852 Ops.push_back(TargetCC);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000853 Ops.push_back(Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000854
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000855 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000856}
857
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000858SDValue MSP430TargetLowering::LowerSIGN_EXTEND(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000859 SelectionDAG &DAG) const {
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000860 SDValue Val = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000861 EVT VT = Op.getValueType();
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000862 DebugLoc dl = Op.getDebugLoc();
863
Owen Anderson825b72b2009-08-11 20:47:22 +0000864 assert(VT == MVT::i16 && "Only support i16 for now!");
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000865
866 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, VT,
867 DAG.getNode(ISD::ANY_EXTEND, dl, VT, Val),
868 DAG.getValueType(Val.getValueType()));
869}
870
Dan Gohmand858e902010-04-17 15:26:15 +0000871SDValue
872MSP430TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000873 MachineFunction &MF = DAG.getMachineFunction();
874 MSP430MachineFunctionInfo *FuncInfo = MF.getInfo<MSP430MachineFunctionInfo>();
875 int ReturnAddrIndex = FuncInfo->getRAIndex();
876
877 if (ReturnAddrIndex == 0) {
878 // Set up a frame object for the return address.
879 uint64_t SlotSize = TD->getPointerSize();
880 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +0000881 true);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000882 FuncInfo->setRAIndex(ReturnAddrIndex);
883 }
884
885 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
886}
887
Dan Gohmand858e902010-04-17 15:26:15 +0000888SDValue MSP430TargetLowering::LowerRETURNADDR(SDValue Op,
889 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +0000890 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
891 MFI->setReturnAddressIsTaken(true);
892
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000893 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
894 DebugLoc dl = Op.getDebugLoc();
895
896 if (Depth > 0) {
897 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
898 SDValue Offset =
899 DAG.getConstant(TD->getPointerSize(), MVT::i16);
900 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
901 DAG.getNode(ISD::ADD, dl, getPointerTy(),
902 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000903 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000904 }
905
906 // Just load the return address.
907 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
908 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000909 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000910}
911
Dan Gohmand858e902010-04-17 15:26:15 +0000912SDValue MSP430TargetLowering::LowerFRAMEADDR(SDValue Op,
913 SelectionDAG &DAG) const {
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000914 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
915 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +0000916
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000917 EVT VT = Op.getValueType();
918 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
919 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
920 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
921 MSP430::FPW, VT);
922 while (Depth--)
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000923 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
924 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000925 false, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000926 return FrameAddr;
927}
928
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000929/// getPostIndexedAddressParts - returns true by value, base pointer and
930/// offset pointer and addressing mode by reference if this node can be
931/// combined with a load / store to form a post-indexed load / store.
932bool MSP430TargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
933 SDValue &Base,
934 SDValue &Offset,
935 ISD::MemIndexedMode &AM,
936 SelectionDAG &DAG) const {
937
938 LoadSDNode *LD = cast<LoadSDNode>(N);
939 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
940 return false;
941
942 EVT VT = LD->getMemoryVT();
943 if (VT != MVT::i8 && VT != MVT::i16)
944 return false;
945
946 if (Op->getOpcode() != ISD::ADD)
947 return false;
948
949 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
950 uint64_t RHSC = RHS->getZExtValue();
951 if ((VT == MVT::i16 && RHSC != 2) ||
952 (VT == MVT::i8 && RHSC != 1))
953 return false;
954
955 Base = Op->getOperand(0);
956 Offset = DAG.getConstant(RHSC, VT);
957 AM = ISD::POST_INC;
958 return true;
959 }
960
961 return false;
962}
963
964
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000965const char *MSP430TargetLowering::getTargetNodeName(unsigned Opcode) const {
966 switch (Opcode) {
967 default: return NULL;
968 case MSP430ISD::RET_FLAG: return "MSP430ISD::RET_FLAG";
Anton Korobeynikov6bfcba72009-12-07 02:28:41 +0000969 case MSP430ISD::RETI_FLAG: return "MSP430ISD::RETI_FLAG";
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000970 case MSP430ISD::RRA: return "MSP430ISD::RRA";
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000971 case MSP430ISD::RLA: return "MSP430ISD::RLA";
972 case MSP430ISD::RRC: return "MSP430ISD::RRC";
Anton Korobeynikovb5612642009-05-03 13:07:54 +0000973 case MSP430ISD::CALL: return "MSP430ISD::CALL";
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000974 case MSP430ISD::Wrapper: return "MSP430ISD::Wrapper";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000975 case MSP430ISD::BR_CC: return "MSP430ISD::BR_CC";
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000976 case MSP430ISD::CMP: return "MSP430ISD::CMP";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000977 case MSP430ISD::SELECT_CC: return "MSP430ISD::SELECT_CC";
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000978 case MSP430ISD::SHL: return "MSP430ISD::SHL";
979 case MSP430ISD::SRA: return "MSP430ISD::SRA";
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000980 }
981}
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000982
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000983bool MSP430TargetLowering::isTruncateFree(Type *Ty1,
984 Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000985 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000986 return false;
987
988 return (Ty1->getPrimitiveSizeInBits() > Ty2->getPrimitiveSizeInBits());
989}
990
991bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
992 if (!VT1.isInteger() || !VT2.isInteger())
993 return false;
994
995 return (VT1.getSizeInBits() > VT2.getSizeInBits());
996}
997
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000998bool MSP430TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000999 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001000 return 0 && Ty1->isIntegerTy(8) && Ty2->isIntegerTy(16);
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +00001001}
1002
1003bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
1004 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
1005 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
1006}
1007
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001008//===----------------------------------------------------------------------===//
1009// Other Lowering Code
1010//===----------------------------------------------------------------------===//
1011
1012MachineBasicBlock*
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001013MSP430TargetLowering::EmitShiftInstr(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001014 MachineBasicBlock *BB) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001015 MachineFunction *F = BB->getParent();
1016 MachineRegisterInfo &RI = F->getRegInfo();
1017 DebugLoc dl = MI->getDebugLoc();
1018 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1019
1020 unsigned Opc;
1021 const TargetRegisterClass * RC;
1022 switch (MI->getOpcode()) {
Craig Topperbc219812012-02-07 02:50:20 +00001023 default: llvm_unreachable("Invalid shift opcode!");
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001024 case MSP430::Shl8:
1025 Opc = MSP430::SHL8r1;
Craig Topper420761a2012-04-20 07:30:17 +00001026 RC = &MSP430::GR8RegClass;
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001027 break;
1028 case MSP430::Shl16:
1029 Opc = MSP430::SHL16r1;
Craig Topper420761a2012-04-20 07:30:17 +00001030 RC = &MSP430::GR16RegClass;
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001031 break;
1032 case MSP430::Sra8:
1033 Opc = MSP430::SAR8r1;
Craig Topper420761a2012-04-20 07:30:17 +00001034 RC = &MSP430::GR8RegClass;
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001035 break;
1036 case MSP430::Sra16:
1037 Opc = MSP430::SAR16r1;
Craig Topper420761a2012-04-20 07:30:17 +00001038 RC = &MSP430::GR16RegClass;
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001039 break;
1040 case MSP430::Srl8:
1041 Opc = MSP430::SAR8r1c;
Craig Topper420761a2012-04-20 07:30:17 +00001042 RC = &MSP430::GR8RegClass;
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001043 break;
1044 case MSP430::Srl16:
1045 Opc = MSP430::SAR16r1c;
Craig Topper420761a2012-04-20 07:30:17 +00001046 RC = &MSP430::GR16RegClass;
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001047 break;
1048 }
1049
1050 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1051 MachineFunction::iterator I = BB;
1052 ++I;
1053
1054 // Create loop block
1055 MachineBasicBlock *LoopBB = F->CreateMachineBasicBlock(LLVM_BB);
1056 MachineBasicBlock *RemBB = F->CreateMachineBasicBlock(LLVM_BB);
1057
1058 F->insert(I, LoopBB);
1059 F->insert(I, RemBB);
1060
1061 // Update machine-CFG edges by transferring all successors of the current
1062 // block to the block containing instructions after shift.
Dan Gohman14152b42010-07-06 20:24:04 +00001063 RemBB->splice(RemBB->begin(), BB,
1064 llvm::next(MachineBasicBlock::iterator(MI)),
1065 BB->end());
1066 RemBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001067
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001068 // Add adges BB => LoopBB => RemBB, BB => RemBB, LoopBB => LoopBB
1069 BB->addSuccessor(LoopBB);
1070 BB->addSuccessor(RemBB);
1071 LoopBB->addSuccessor(RemBB);
1072 LoopBB->addSuccessor(LoopBB);
1073
Craig Topper420761a2012-04-20 07:30:17 +00001074 unsigned ShiftAmtReg = RI.createVirtualRegister(&MSP430::GR8RegClass);
1075 unsigned ShiftAmtReg2 = RI.createVirtualRegister(&MSP430::GR8RegClass);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001076 unsigned ShiftReg = RI.createVirtualRegister(RC);
1077 unsigned ShiftReg2 = RI.createVirtualRegister(RC);
1078 unsigned ShiftAmtSrcReg = MI->getOperand(2).getReg();
1079 unsigned SrcReg = MI->getOperand(1).getReg();
1080 unsigned DstReg = MI->getOperand(0).getReg();
1081
1082 // BB:
1083 // cmp 0, N
1084 // je RemBB
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +00001085 BuildMI(BB, dl, TII.get(MSP430::CMP8ri))
1086 .addReg(ShiftAmtSrcReg).addImm(0);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001087 BuildMI(BB, dl, TII.get(MSP430::JCC))
1088 .addMBB(RemBB)
1089 .addImm(MSP430CC::COND_E);
1090
1091 // LoopBB:
1092 // ShiftReg = phi [%SrcReg, BB], [%ShiftReg2, LoopBB]
1093 // ShiftAmt = phi [%N, BB], [%ShiftAmt2, LoopBB]
1094 // ShiftReg2 = shift ShiftReg
1095 // ShiftAmt2 = ShiftAmt - 1;
1096 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftReg)
1097 .addReg(SrcReg).addMBB(BB)
1098 .addReg(ShiftReg2).addMBB(LoopBB);
1099 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftAmtReg)
1100 .addReg(ShiftAmtSrcReg).addMBB(BB)
1101 .addReg(ShiftAmtReg2).addMBB(LoopBB);
1102 BuildMI(LoopBB, dl, TII.get(Opc), ShiftReg2)
1103 .addReg(ShiftReg);
1104 BuildMI(LoopBB, dl, TII.get(MSP430::SUB8ri), ShiftAmtReg2)
1105 .addReg(ShiftAmtReg).addImm(1);
1106 BuildMI(LoopBB, dl, TII.get(MSP430::JCC))
1107 .addMBB(LoopBB)
1108 .addImm(MSP430CC::COND_NE);
1109
1110 // RemBB:
1111 // DestReg = phi [%SrcReg, BB], [%ShiftReg, LoopBB]
Dan Gohman14152b42010-07-06 20:24:04 +00001112 BuildMI(*RemBB, RemBB->begin(), dl, TII.get(MSP430::PHI), DstReg)
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001113 .addReg(SrcReg).addMBB(BB)
1114 .addReg(ShiftReg2).addMBB(LoopBB);
1115
Dan Gohman14152b42010-07-06 20:24:04 +00001116 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001117 return RemBB;
1118}
1119
1120MachineBasicBlock*
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001121MSP430TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001122 MachineBasicBlock *BB) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001123 unsigned Opc = MI->getOpcode();
1124
1125 if (Opc == MSP430::Shl8 || Opc == MSP430::Shl16 ||
1126 Opc == MSP430::Sra8 || Opc == MSP430::Sra16 ||
1127 Opc == MSP430::Srl8 || Opc == MSP430::Srl16)
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001128 return EmitShiftInstr(MI, BB);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001129
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001130 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1131 DebugLoc dl = MI->getDebugLoc();
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001132
1133 assert((Opc == MSP430::Select16 || Opc == MSP430::Select8) &&
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001134 "Unexpected instr type to insert");
1135
1136 // To "insert" a SELECT instruction, we actually have to insert the diamond
1137 // control-flow pattern. The incoming instruction knows the destination vreg
1138 // to set, the condition code register to branch on, the true/false values to
1139 // select between, and a branch opcode to use.
1140 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1141 MachineFunction::iterator I = BB;
1142 ++I;
1143
1144 // thisMBB:
1145 // ...
1146 // TrueVal = ...
1147 // cmpTY ccX, r1, r2
1148 // jCC copy1MBB
1149 // fallthrough --> copy0MBB
1150 MachineBasicBlock *thisMBB = BB;
1151 MachineFunction *F = BB->getParent();
1152 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1153 MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001154 F->insert(I, copy0MBB);
1155 F->insert(I, copy1MBB);
1156 // Update machine-CFG edges by transferring all successors of the current
1157 // block to the new block which will contain the Phi node for the select.
Dan Gohman14152b42010-07-06 20:24:04 +00001158 copy1MBB->splice(copy1MBB->begin(), BB,
1159 llvm::next(MachineBasicBlock::iterator(MI)),
1160 BB->end());
1161 copy1MBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001162 // Next, add the true and fallthrough blocks as its successors.
1163 BB->addSuccessor(copy0MBB);
1164 BB->addSuccessor(copy1MBB);
1165
Dan Gohman14152b42010-07-06 20:24:04 +00001166 BuildMI(BB, dl, TII.get(MSP430::JCC))
1167 .addMBB(copy1MBB)
1168 .addImm(MI->getOperand(3).getImm());
1169
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001170 // copy0MBB:
1171 // %FalseValue = ...
1172 // # fallthrough to copy1MBB
1173 BB = copy0MBB;
1174
1175 // Update machine-CFG edges
1176 BB->addSuccessor(copy1MBB);
1177
1178 // copy1MBB:
1179 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1180 // ...
1181 BB = copy1MBB;
Dan Gohman14152b42010-07-06 20:24:04 +00001182 BuildMI(*BB, BB->begin(), dl, TII.get(MSP430::PHI),
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001183 MI->getOperand(0).getReg())
1184 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1185 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
1186
Dan Gohman14152b42010-07-06 20:24:04 +00001187 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001188 return BB;
1189}