blob: 351e83f84eee0fe6c03108d67f4795f2962fe96e [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"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000032#include "llvm/CodeGen/PseudoSourceValue.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000033#include "llvm/CodeGen/SelectionDAGISel.h"
34#include "llvm/CodeGen/ValueTypes.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000035#include "llvm/Target/TargetLoweringObjectFile.h"
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +000036#include "llvm/Support/CommandLine.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000037#include "llvm/Support/Debug.h"
Torok Edwin804e0fe2009-07-08 19:04:27 +000038#include "llvm/Support/ErrorHandling.h"
Chris Lattner4437ae22009-08-23 07:05:07 +000039#include "llvm/Support/raw_ostream.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000040#include "llvm/ADT/VectorExtras.h"
41using namespace llvm;
42
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +000043typedef enum {
44 NoHWMult,
45 HWMultIntr,
46 HWMultNoIntr
47} HWMultUseMode;
48
49static cl::opt<HWMultUseMode>
50HWMultMode("msp430-hwmult-mode",
51 cl::desc("Hardware multiplier use mode"),
52 cl::init(HWMultNoIntr),
53 cl::values(
54 clEnumValN(NoHWMult, "no",
55 "Do not use hardware multiplier"),
56 clEnumValN(HWMultIntr, "interrupts",
57 "Assume hardware multiplier can be used inside interrupts"),
58 clEnumValN(HWMultNoIntr, "use",
59 "Assume hardware multiplier cannot be used inside interrupts"),
60 clEnumValEnd));
61
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000062MSP430TargetLowering::MSP430TargetLowering(MSP430TargetMachine &tm) :
Chris Lattnerf0144122009-07-28 03:13:23 +000063 TargetLowering(tm, new TargetLoweringObjectFileELF()),
64 Subtarget(*tm.getSubtargetImpl()), TM(tm) {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000065
Anton Korobeynikov06ccca52009-12-07 02:28:10 +000066 TD = getTargetData();
67
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000068 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +000069 addRegisterClass(MVT::i8, MSP430::GR8RegisterClass);
70 addRegisterClass(MVT::i16, MSP430::GR16RegisterClass);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000071
72 // Compute derived properties from the register classes
73 computeRegisterProperties();
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000074
Anton Korobeynikov1476d972009-05-03 13:03:14 +000075 // Provide all sorts of operation actions
76
77 // Division is expensive
78 setIntDivIsCheap(false);
79
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000080 // Even if we have only 1 bit shift here, we can perform
81 // shifts of the whole bitwidth 1 bit per step.
Owen Anderson825b72b2009-08-11 20:47:22 +000082 setShiftAmountType(MVT::i8);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000083
Anton Korobeynikovc08163e2009-05-03 13:11:35 +000084 setStackPointerRegisterToSaveRestore(MSP430::SPW);
85 setBooleanContents(ZeroOrOneBooleanContent);
86 setSchedulingPreference(SchedulingForLatency);
87
Anton Korobeynikov06ac0822009-11-07 17:15:25 +000088 // We have post-incremented loads / stores.
Anton Korobeynikov6534f832009-11-07 17:15:06 +000089 setIndexedLoadAction(ISD::POST_INC, MVT::i8, Legal);
90 setIndexedLoadAction(ISD::POST_INC, MVT::i16, Legal);
91
92 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
93 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
94 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
95 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +000096 setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Expand);
Anton Korobeynikov36b6e532009-05-03 13:06:03 +000097
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000098 // We don't have any truncstores
Owen Anderson825b72b2009-08-11 20:47:22 +000099 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Anton Korobeynikov54f30d32009-05-03 13:06:26 +0000100
Owen Anderson825b72b2009-08-11 20:47:22 +0000101 setOperationAction(ISD::SRA, MVT::i8, Custom);
102 setOperationAction(ISD::SHL, MVT::i8, Custom);
103 setOperationAction(ISD::SRL, MVT::i8, Custom);
104 setOperationAction(ISD::SRA, MVT::i16, Custom);
105 setOperationAction(ISD::SHL, MVT::i16, Custom);
106 setOperationAction(ISD::SRL, MVT::i16, Custom);
107 setOperationAction(ISD::ROTL, MVT::i8, Expand);
108 setOperationAction(ISD::ROTR, MVT::i8, Expand);
109 setOperationAction(ISD::ROTL, MVT::i16, Expand);
110 setOperationAction(ISD::ROTR, MVT::i16, Expand);
111 setOperationAction(ISD::GlobalAddress, MVT::i16, Custom);
112 setOperationAction(ISD::ExternalSymbol, MVT::i16, Custom);
113 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
114 setOperationAction(ISD::BRIND, MVT::Other, Expand);
115 setOperationAction(ISD::BR_CC, MVT::i8, Custom);
116 setOperationAction(ISD::BR_CC, MVT::i16, Custom);
117 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
118 setOperationAction(ISD::SETCC, MVT::i8, Expand);
119 setOperationAction(ISD::SETCC, MVT::i16, Expand);
120 setOperationAction(ISD::SELECT, MVT::i8, Expand);
121 setOperationAction(ISD::SELECT, MVT::i16, Expand);
122 setOperationAction(ISD::SELECT_CC, MVT::i8, Custom);
123 setOperationAction(ISD::SELECT_CC, MVT::i16, Custom);
124 setOperationAction(ISD::SIGN_EXTEND, MVT::i16, Custom);
Anton Korobeynikov379a0872009-08-25 17:00:23 +0000125 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i8, Expand);
126 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i16, Expand);
Anton Korobeynikov8725bd22009-05-03 13:14:25 +0000127
Owen Anderson825b72b2009-08-11 20:47:22 +0000128 setOperationAction(ISD::CTTZ, MVT::i8, Expand);
129 setOperationAction(ISD::CTTZ, MVT::i16, Expand);
130 setOperationAction(ISD::CTLZ, MVT::i8, Expand);
131 setOperationAction(ISD::CTLZ, MVT::i16, Expand);
132 setOperationAction(ISD::CTPOP, MVT::i8, Expand);
133 setOperationAction(ISD::CTPOP, MVT::i16, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000134
Owen Anderson825b72b2009-08-11 20:47:22 +0000135 setOperationAction(ISD::SHL_PARTS, MVT::i8, Expand);
136 setOperationAction(ISD::SHL_PARTS, MVT::i16, Expand);
137 setOperationAction(ISD::SRL_PARTS, MVT::i8, Expand);
138 setOperationAction(ISD::SRL_PARTS, MVT::i16, Expand);
139 setOperationAction(ISD::SRA_PARTS, MVT::i8, Expand);
140 setOperationAction(ISD::SRA_PARTS, MVT::i16, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000141
Owen Anderson825b72b2009-08-11 20:47:22 +0000142 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000143
Anton Korobeynikov8725bd22009-05-03 13:14:25 +0000144 // FIXME: Implement efficiently multiplication by a constant
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000145 setOperationAction(ISD::MUL, MVT::i8, Expand);
146 setOperationAction(ISD::MULHS, MVT::i8, Expand);
147 setOperationAction(ISD::MULHU, MVT::i8, Expand);
148 setOperationAction(ISD::SMUL_LOHI, MVT::i8, Expand);
149 setOperationAction(ISD::UMUL_LOHI, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000150 setOperationAction(ISD::MUL, MVT::i16, Expand);
151 setOperationAction(ISD::MULHS, MVT::i16, Expand);
152 setOperationAction(ISD::MULHU, MVT::i16, Expand);
153 setOperationAction(ISD::SMUL_LOHI, MVT::i16, Expand);
154 setOperationAction(ISD::UMUL_LOHI, MVT::i16, Expand);
Anton Korobeynikovf2f54022009-05-03 13:18:33 +0000155
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000156 setOperationAction(ISD::UDIV, MVT::i8, Expand);
157 setOperationAction(ISD::UDIVREM, MVT::i8, Expand);
158 setOperationAction(ISD::UREM, MVT::i8, Expand);
159 setOperationAction(ISD::SDIV, MVT::i8, Expand);
160 setOperationAction(ISD::SDIVREM, MVT::i8, Expand);
161 setOperationAction(ISD::SREM, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000162 setOperationAction(ISD::UDIV, MVT::i16, Expand);
163 setOperationAction(ISD::UDIVREM, MVT::i16, Expand);
164 setOperationAction(ISD::UREM, MVT::i16, Expand);
165 setOperationAction(ISD::SDIV, MVT::i16, Expand);
166 setOperationAction(ISD::SDIVREM, MVT::i16, Expand);
167 setOperationAction(ISD::SREM, MVT::i16, Expand);
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +0000168
169 // Libcalls names.
170 if (HWMultMode == HWMultIntr) {
171 setLibcallName(RTLIB::MUL_I8, "__mulqi3hw");
172 setLibcallName(RTLIB::MUL_I16, "__mulhi3hw");
173 } else if (HWMultMode == HWMultNoIntr) {
174 setLibcallName(RTLIB::MUL_I8, "__mulqi3hw_noint");
175 setLibcallName(RTLIB::MUL_I16, "__mulhi3hw_noint");
176 }
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000177}
178
Anton Korobeynikovb8639f52009-05-03 13:03:50 +0000179SDValue MSP430TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000180 switch (Op.getOpcode()) {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000181 case ISD::SHL: // FALLTHROUGH
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000182 case ISD::SRL:
Anton Korobeynikov44288852009-05-03 13:07:31 +0000183 case ISD::SRA: return LowerShifts(Op, DAG);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000184 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000185 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000186 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
187 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000188 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000189 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
190 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000191 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000192 llvm_unreachable("unimplemented operand");
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000193 return SDValue();
194 }
195}
196
Bill Wendlingb4202b82009-07-01 18:50:55 +0000197/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000198unsigned MSP430TargetLowering::getFunctionAlignment(const Function *F) const {
Anton Korobeynikov3741be32009-11-22 01:13:39 +0000199 return F->hasFnAttr(Attribute::OptimizeForSize) ? 1 : 2;
Bill Wendling20c568f2009-06-30 22:38:32 +0000200}
201
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000202//===----------------------------------------------------------------------===//
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000203// MSP430 Inline Assembly Support
204//===----------------------------------------------------------------------===//
205
206/// getConstraintType - Given a constraint letter, return the type of
207/// constraint it is for this target.
208TargetLowering::ConstraintType
209MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
210 if (Constraint.size() == 1) {
211 switch (Constraint[0]) {
212 case 'r':
213 return C_RegisterClass;
214 default:
215 break;
216 }
217 }
218 return TargetLowering::getConstraintType(Constraint);
219}
220
221std::pair<unsigned, const TargetRegisterClass*>
222MSP430TargetLowering::
223getRegForInlineAsmConstraint(const std::string &Constraint,
224 EVT VT) const {
225 if (Constraint.size() == 1) {
226 // GCC Constraint Letters
227 switch (Constraint[0]) {
228 default: break;
229 case 'r': // GENERAL_REGS
230 if (VT == MVT::i8)
231 return std::make_pair(0U, MSP430::GR8RegisterClass);
232
233 return std::make_pair(0U, MSP430::GR16RegisterClass);
234 }
235 }
236
237 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
238}
239
240//===----------------------------------------------------------------------===//
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000241// Calling Convention Implementation
242//===----------------------------------------------------------------------===//
243
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000244#include "MSP430GenCallingConv.inc"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000245
Dan Gohman98ca4f22009-08-05 01:29:28 +0000246SDValue
247MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000248 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000249 bool isVarArg,
250 const SmallVectorImpl<ISD::InputArg>
251 &Ins,
252 DebugLoc dl,
253 SelectionDAG &DAG,
254 SmallVectorImpl<SDValue> &InVals) {
255
256 switch (CallConv) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000257 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000258 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000259 case CallingConv::C:
260 case CallingConv::Fast:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000261 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000262 case CallingConv::MSP430_INTR:
263 if (Ins.empty())
264 return Chain;
265 else {
266 llvm_report_error("ISRs cannot have arguments");
267 return SDValue();
268 }
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000269 }
270}
271
Dan Gohman98ca4f22009-08-05 01:29:28 +0000272SDValue
273MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000274 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000275 bool isTailCall,
276 const SmallVectorImpl<ISD::OutputArg> &Outs,
277 const SmallVectorImpl<ISD::InputArg> &Ins,
278 DebugLoc dl, SelectionDAG &DAG,
279 SmallVectorImpl<SDValue> &InVals) {
280
281 switch (CallConv) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000282 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000283 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000284 case CallingConv::Fast:
285 case CallingConv::C:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000286 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
287 Outs, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000288 case CallingConv::MSP430_INTR:
289 llvm_report_error("ISRs cannot be called directly");
290 return SDValue();
Anton Korobeynikov44288852009-05-03 13:07:31 +0000291 }
292}
293
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000294/// LowerCCCArguments - transform physical registers into virtual registers and
295/// generate load operations for arguments places on the stack.
296// FIXME: struct return stuff
297// FIXME: varargs
Dan Gohman98ca4f22009-08-05 01:29:28 +0000298SDValue
299MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000300 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000301 bool isVarArg,
302 const SmallVectorImpl<ISD::InputArg>
303 &Ins,
304 DebugLoc dl,
305 SelectionDAG &DAG,
306 SmallVectorImpl<SDValue> &InVals) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000307 MachineFunction &MF = DAG.getMachineFunction();
308 MachineFrameInfo *MFI = MF.getFrameInfo();
309 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000310
311 // Assign locations to all of the incoming arguments.
312 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000313 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
314 ArgLocs, *DAG.getContext());
315 CCInfo.AnalyzeFormalArguments(Ins, CC_MSP430);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000316
317 assert(!isVarArg && "Varargs not supported yet");
318
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000319 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
320 CCValAssign &VA = ArgLocs[i];
321 if (VA.isRegLoc()) {
322 // Arguments passed in registers
Owen Andersone50ed302009-08-10 22:56:29 +0000323 EVT RegVT = VA.getLocVT();
Owen Anderson825b72b2009-08-11 20:47:22 +0000324 switch (RegVT.getSimpleVT().SimpleTy) {
Torok Edwin804e0fe2009-07-08 19:04:27 +0000325 default:
326 {
Torok Edwindac237e2009-07-08 20:53:28 +0000327#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000328 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000329 << RegVT.getSimpleVT().SimpleTy << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000330#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000331 llvm_unreachable(0);
Torok Edwin804e0fe2009-07-08 19:04:27 +0000332 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000333 case MVT::i16:
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000334 unsigned VReg =
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000335 RegInfo.createVirtualRegister(MSP430::GR16RegisterClass);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000336 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000337 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000338
339 // If this is an 8-bit value, it is really passed promoted to 16
340 // bits. Insert an assert[sz]ext to capture this, then truncate to the
341 // right size.
342 if (VA.getLocInfo() == CCValAssign::SExt)
343 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
344 DAG.getValueType(VA.getValVT()));
345 else if (VA.getLocInfo() == CCValAssign::ZExt)
346 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
347 DAG.getValueType(VA.getValVT()));
348
349 if (VA.getLocInfo() != CCValAssign::Full)
350 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
351
Dan Gohman98ca4f22009-08-05 01:29:28 +0000352 InVals.push_back(ArgValue);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000353 }
354 } else {
355 // Sanity check
356 assert(VA.isMemLoc());
357 // Load the argument to a virtual register
358 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
359 if (ObjSize > 2) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000360 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000361 << VA.getLocVT().getSimpleVT().SimpleTy
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000362 << "\n";
363 }
364 // Create the frame index object for this incoming parameter...
David Greene3f2bf852009-11-12 20:49:22 +0000365 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true, false);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000366
367 // Create the SelectionDAG nodes corresponding to a load
368 //from this parameter
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 SDValue FIN = DAG.getFrameIndex(FI, MVT::i16);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000370 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
Evan Cheng65531552009-10-17 07:53:04 +0000371 PseudoSourceValue::getFixedStack(FI), 0));
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000372 }
373 }
374
Dan Gohman98ca4f22009-08-05 01:29:28 +0000375 return Chain;
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000376}
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000377
Dan Gohman98ca4f22009-08-05 01:29:28 +0000378SDValue
379MSP430TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000380 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000381 const SmallVectorImpl<ISD::OutputArg> &Outs,
382 DebugLoc dl, SelectionDAG &DAG) {
383
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.
388 if (CallConv == CallingConv::MSP430_INTR && !Outs.empty()) {
389 llvm_report_error("ISRs cannot return any value");
390 return SDValue();
391 }
392
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000393 // CCState - Info about the registers and stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000394 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
395 RVLocs, *DAG.getContext());
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000396
Dan Gohman98ca4f22009-08-05 01:29:28 +0000397 // Analize return values.
398 CCInfo.AnalyzeReturn(Outs, RetCC_MSP430);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000399
400 // If this is the first return lowered for this function, add the regs to the
401 // liveout set for the function.
402 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
403 for (unsigned i = 0; i != RVLocs.size(); ++i)
404 if (RVLocs[i].isRegLoc())
405 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
406 }
407
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000408 SDValue Flag;
409
410 // Copy the result values into the output registers.
411 for (unsigned i = 0; i != RVLocs.size(); ++i) {
412 CCValAssign &VA = RVLocs[i];
413 assert(VA.isRegLoc() && "Can only return in registers!");
414
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000415 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohman98ca4f22009-08-05 01:29:28 +0000416 Outs[i].Val, Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000417
Anton Korobeynikovdcb802c2009-05-03 13:00:11 +0000418 // Guarantee that all emitted copies are stuck together,
419 // avoiding something bad.
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000420 Flag = Chain.getValue(1);
421 }
422
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000423 unsigned Opc = (CallConv == CallingConv::MSP430_INTR ?
424 MSP430ISD::RETI_FLAG : MSP430ISD::RET_FLAG);
425
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000426 if (Flag.getNode())
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000427 return DAG.getNode(Opc, dl, MVT::Other, Chain, Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000428
429 // Return Void
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000430 return DAG.getNode(Opc, dl, MVT::Other, Chain);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000431}
432
Anton Korobeynikov44288852009-05-03 13:07:31 +0000433/// LowerCCCCallTo - functions arguments are copied from virtual regs to
434/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
435/// TODO: sret.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000436SDValue
437MSP430TargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000438 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000439 bool isTailCall,
440 const SmallVectorImpl<ISD::OutputArg>
441 &Outs,
442 const SmallVectorImpl<ISD::InputArg> &Ins,
443 DebugLoc dl, SelectionDAG &DAG,
444 SmallVectorImpl<SDValue> &InVals) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000445 // Analyze operands of the call, assigning locations to each operand.
446 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000447 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
448 ArgLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000449
Dan Gohman98ca4f22009-08-05 01:29:28 +0000450 CCInfo.AnalyzeCallOperands(Outs, CC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000451
452 // Get a count of how many bytes are to be pushed on the stack.
453 unsigned NumBytes = CCInfo.getNextStackOffset();
454
455 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
456 getPointerTy(), true));
457
458 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
459 SmallVector<SDValue, 12> MemOpChains;
460 SDValue StackPtr;
461
462 // Walk the register/memloc assignments, inserting copies/loads.
463 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
464 CCValAssign &VA = ArgLocs[i];
465
Dan Gohman98ca4f22009-08-05 01:29:28 +0000466 SDValue Arg = Outs[i].Val;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000467
468 // Promote the value if needed.
469 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000470 default: llvm_unreachable("Unknown loc info!");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000471 case CCValAssign::Full: break;
472 case CCValAssign::SExt:
473 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
474 break;
475 case CCValAssign::ZExt:
476 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
477 break;
478 case CCValAssign::AExt:
479 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
480 break;
481 }
482
483 // Arguments that can be passed on register must be kept at RegsToPass
484 // vector
485 if (VA.isRegLoc()) {
486 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
487 } else {
488 assert(VA.isMemLoc());
489
490 if (StackPtr.getNode() == 0)
491 StackPtr = DAG.getCopyFromReg(Chain, dl, MSP430::SPW, getPointerTy());
492
493 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
494 StackPtr,
495 DAG.getIntPtrConstant(VA.getLocMemOffset()));
496
497
498 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
499 PseudoSourceValue::getStack(),
500 VA.getLocMemOffset()));
501 }
502 }
503
504 // Transform all store nodes into one single node because all store nodes are
505 // independent of each other.
506 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +0000507 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Anton Korobeynikov44288852009-05-03 13:07:31 +0000508 &MemOpChains[0], MemOpChains.size());
509
510 // Build a sequence of copy-to-reg nodes chained together with token chain and
511 // flag operands which copy the outgoing args into registers. The InFlag in
512 // necessary since all emited instructions must be stuck together.
513 SDValue InFlag;
514 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
515 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
516 RegsToPass[i].second, InFlag);
517 InFlag = Chain.getValue(1);
518 }
519
520 // If the callee is a GlobalAddress node (quite common, every direct call is)
521 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
522 // Likewise ExternalSymbol -> TargetExternalSymbol.
523 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000524 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000525 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000527
528 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +0000529 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000530 SmallVector<SDValue, 8> Ops;
531 Ops.push_back(Chain);
532 Ops.push_back(Callee);
533
534 // Add argument registers to the end of the list so that they are
535 // known live into the call.
536 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
537 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
538 RegsToPass[i].second.getValueType()));
539
540 if (InFlag.getNode())
541 Ops.push_back(InFlag);
542
543 Chain = DAG.getNode(MSP430ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
544 InFlag = Chain.getValue(1);
545
546 // Create the CALLSEQ_END node.
547 Chain = DAG.getCALLSEQ_END(Chain,
548 DAG.getConstant(NumBytes, getPointerTy(), true),
549 DAG.getConstant(0, getPointerTy(), true),
550 InFlag);
551 InFlag = Chain.getValue(1);
552
553 // Handle result values, copying them out of physregs into vregs that we
554 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000555 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl,
556 DAG, InVals);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000557}
558
Dan Gohman98ca4f22009-08-05 01:29:28 +0000559/// LowerCallResult - Lower the result values of a call into the
560/// appropriate copies out of appropriate physical registers.
561///
562SDValue
Anton Korobeynikov44288852009-05-03 13:07:31 +0000563MSP430TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000564 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000565 const SmallVectorImpl<ISD::InputArg> &Ins,
566 DebugLoc dl, SelectionDAG &DAG,
567 SmallVectorImpl<SDValue> &InVals) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000568
569 // Assign locations to each value returned by this call.
570 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000571 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +0000572 RVLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000573
Dan Gohman98ca4f22009-08-05 01:29:28 +0000574 CCInfo.AnalyzeCallResult(Ins, RetCC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000575
576 // Copy all of the result registers out of their specified physreg.
577 for (unsigned i = 0; i != RVLocs.size(); ++i) {
578 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
579 RVLocs[i].getValVT(), InFlag).getValue(1);
580 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000581 InVals.push_back(Chain.getValue(0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000582 }
583
Dan Gohman98ca4f22009-08-05 01:29:28 +0000584 return Chain;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000585}
586
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000587SDValue MSP430TargetLowering::LowerShifts(SDValue Op,
588 SelectionDAG &DAG) {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000589 unsigned Opc = Op.getOpcode();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000590 SDNode* N = Op.getNode();
Owen Andersone50ed302009-08-10 22:56:29 +0000591 EVT VT = Op.getValueType();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000592 DebugLoc dl = N->getDebugLoc();
593
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000594 // We currently only lower shifts of constant argument.
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000595 if (!isa<ConstantSDNode>(N->getOperand(1)))
596 return SDValue();
597
598 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
599
600 // Expand the stuff into sequence of shifts.
601 // FIXME: for some shift amounts this might be done better!
602 // E.g.: foo >> (8 + N) => sxt(swpb(foo)) >> N
603 SDValue Victim = N->getOperand(0);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000604
605 if (Opc == ISD::SRL && ShiftAmount) {
606 // Emit a special goodness here:
607 // srl A, 1 => clrc; rrc A
Anton Korobeynikovbf8ef3f2009-05-03 13:16:37 +0000608 Victim = DAG.getNode(MSP430ISD::RRC, dl, VT, Victim);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000609 ShiftAmount -= 1;
610 }
611
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000612 while (ShiftAmount--)
Anton Korobeynikovaceb6202009-05-17 10:15:22 +0000613 Victim = DAG.getNode((Opc == ISD::SHL ? MSP430ISD::RLA : MSP430ISD::RRA),
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000614 dl, VT, Victim);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000615
616 return Victim;
617}
618
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000619SDValue MSP430TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
620 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
621 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
622
623 // Create the TargetGlobalAddress node, folding in the constant offset.
624 SDValue Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
625 return DAG.getNode(MSP430ISD::Wrapper, Op.getDebugLoc(),
626 getPointerTy(), Result);
627}
628
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000629SDValue MSP430TargetLowering::LowerExternalSymbol(SDValue Op,
630 SelectionDAG &DAG) {
631 DebugLoc dl = Op.getDebugLoc();
632 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
633 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
634
635 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
636}
637
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000638static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC,
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000639 ISD::CondCode CC,
640 DebugLoc dl, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000641 // FIXME: Handle bittests someday
642 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
643
644 // FIXME: Handle jump negative someday
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000645 MSP430CC::CondCodes TCC = MSP430CC::COND_INVALID;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000646 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000647 default: llvm_unreachable("Invalid integer condition!");
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000648 case ISD::SETEQ:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000649 TCC = MSP430CC::COND_E; // aka COND_Z
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000650 // Minor optimization: if RHS is a constant, swap operands, then the
651 // constant can be folded into comparison.
652 if (RHS.getOpcode() == ISD::Constant)
653 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000654 break;
655 case ISD::SETNE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000656 TCC = MSP430CC::COND_NE; // aka COND_NZ
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000657 // Minor optimization: if RHS is a constant, swap operands, then the
658 // constant can be folded into comparison.
659 if (RHS.getOpcode() == ISD::Constant)
660 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000661 break;
662 case ISD::SETULE:
663 std::swap(LHS, RHS); // FALLTHROUGH
664 case ISD::SETUGE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000665 TCC = MSP430CC::COND_HS; // aka COND_C
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000666 break;
667 case ISD::SETUGT:
668 std::swap(LHS, RHS); // FALLTHROUGH
669 case ISD::SETULT:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000670 TCC = MSP430CC::COND_LO; // aka COND_NC
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000671 break;
672 case ISD::SETLE:
673 std::swap(LHS, RHS); // FALLTHROUGH
674 case ISD::SETGE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000675 TCC = MSP430CC::COND_GE;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000676 break;
677 case ISD::SETGT:
678 std::swap(LHS, RHS); // FALLTHROUGH
679 case ISD::SETLT:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000680 TCC = MSP430CC::COND_L;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000681 break;
682 }
683
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000684 TargetCC = DAG.getConstant(TCC, MVT::i8);
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 return DAG.getNode(MSP430ISD::CMP, dl, MVT::Flag, LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000686}
687
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000688
689SDValue MSP430TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000690 SDValue Chain = Op.getOperand(0);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000691 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
692 SDValue LHS = Op.getOperand(2);
693 SDValue RHS = Op.getOperand(3);
694 SDValue Dest = Op.getOperand(4);
695 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000696
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000697 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000698 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000699
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000700 return DAG.getNode(MSP430ISD::BR_CC, dl, Op.getValueType(),
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000701 Chain, Dest, TargetCC, Flag);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000702}
703
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000704SDValue MSP430TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
705 SDValue LHS = Op.getOperand(0);
706 SDValue RHS = Op.getOperand(1);
707 SDValue TrueV = Op.getOperand(2);
708 SDValue FalseV = Op.getOperand(3);
709 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000710 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000711
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000712 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000713 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000714
Owen Anderson825b72b2009-08-11 20:47:22 +0000715 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000716 SmallVector<SDValue, 4> Ops;
717 Ops.push_back(TrueV);
718 Ops.push_back(FalseV);
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000719 Ops.push_back(TargetCC);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000720 Ops.push_back(Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000721
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000722 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000723}
724
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000725SDValue MSP430TargetLowering::LowerSIGN_EXTEND(SDValue Op,
726 SelectionDAG &DAG) {
727 SDValue Val = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000728 EVT VT = Op.getValueType();
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000729 DebugLoc dl = Op.getDebugLoc();
730
Owen Anderson825b72b2009-08-11 20:47:22 +0000731 assert(VT == MVT::i16 && "Only support i16 for now!");
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000732
733 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, VT,
734 DAG.getNode(ISD::ANY_EXTEND, dl, VT, Val),
735 DAG.getValueType(Val.getValueType()));
736}
737
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000738SDValue MSP430TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
739 MachineFunction &MF = DAG.getMachineFunction();
740 MSP430MachineFunctionInfo *FuncInfo = MF.getInfo<MSP430MachineFunctionInfo>();
741 int ReturnAddrIndex = FuncInfo->getRAIndex();
742
743 if (ReturnAddrIndex == 0) {
744 // Set up a frame object for the return address.
745 uint64_t SlotSize = TD->getPointerSize();
746 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
747 true, false);
748 FuncInfo->setRAIndex(ReturnAddrIndex);
749 }
750
751 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
752}
753
754SDValue MSP430TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
755 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
756 DebugLoc dl = Op.getDebugLoc();
757
758 if (Depth > 0) {
759 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
760 SDValue Offset =
761 DAG.getConstant(TD->getPointerSize(), MVT::i16);
762 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
763 DAG.getNode(ISD::ADD, dl, getPointerTy(),
764 FrameAddr, Offset),
765 NULL, 0);
766 }
767
768 // Just load the return address.
769 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
770 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
771 RetAddrFI, NULL, 0);
772}
773
774SDValue MSP430TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
775 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
776 MFI->setFrameAddressIsTaken(true);
777 EVT VT = Op.getValueType();
778 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
779 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
780 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
781 MSP430::FPW, VT);
782 while (Depth--)
783 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
784 return FrameAddr;
785}
786
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000787/// getPostIndexedAddressParts - returns true by value, base pointer and
788/// offset pointer and addressing mode by reference if this node can be
789/// combined with a load / store to form a post-indexed load / store.
790bool MSP430TargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
791 SDValue &Base,
792 SDValue &Offset,
793 ISD::MemIndexedMode &AM,
794 SelectionDAG &DAG) const {
795
796 LoadSDNode *LD = cast<LoadSDNode>(N);
797 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
798 return false;
799
800 EVT VT = LD->getMemoryVT();
801 if (VT != MVT::i8 && VT != MVT::i16)
802 return false;
803
804 if (Op->getOpcode() != ISD::ADD)
805 return false;
806
807 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
808 uint64_t RHSC = RHS->getZExtValue();
809 if ((VT == MVT::i16 && RHSC != 2) ||
810 (VT == MVT::i8 && RHSC != 1))
811 return false;
812
813 Base = Op->getOperand(0);
814 Offset = DAG.getConstant(RHSC, VT);
815 AM = ISD::POST_INC;
816 return true;
817 }
818
819 return false;
820}
821
822
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000823const char *MSP430TargetLowering::getTargetNodeName(unsigned Opcode) const {
824 switch (Opcode) {
825 default: return NULL;
826 case MSP430ISD::RET_FLAG: return "MSP430ISD::RET_FLAG";
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000827 case MSP430ISD::RRA: return "MSP430ISD::RRA";
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000828 case MSP430ISD::RLA: return "MSP430ISD::RLA";
829 case MSP430ISD::RRC: return "MSP430ISD::RRC";
Anton Korobeynikovb5612642009-05-03 13:07:54 +0000830 case MSP430ISD::CALL: return "MSP430ISD::CALL";
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000831 case MSP430ISD::Wrapper: return "MSP430ISD::Wrapper";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000832 case MSP430ISD::BR_CC: return "MSP430ISD::BR_CC";
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000833 case MSP430ISD::CMP: return "MSP430ISD::CMP";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000834 case MSP430ISD::SELECT_CC: return "MSP430ISD::SELECT_CC";
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000835 }
836}
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000837
838//===----------------------------------------------------------------------===//
839// Other Lowering Code
840//===----------------------------------------------------------------------===//
841
842MachineBasicBlock*
843MSP430TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chengfb2e7522009-09-18 21:02:19 +0000844 MachineBasicBlock *BB,
845 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000846 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
847 DebugLoc dl = MI->getDebugLoc();
Anton Korobeynikovda4d2f62009-05-08 18:51:21 +0000848 assert((MI->getOpcode() == MSP430::Select16 ||
849 MI->getOpcode() == MSP430::Select8) &&
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000850 "Unexpected instr type to insert");
851
852 // To "insert" a SELECT instruction, we actually have to insert the diamond
853 // control-flow pattern. The incoming instruction knows the destination vreg
854 // to set, the condition code register to branch on, the true/false values to
855 // select between, and a branch opcode to use.
856 const BasicBlock *LLVM_BB = BB->getBasicBlock();
857 MachineFunction::iterator I = BB;
858 ++I;
859
860 // thisMBB:
861 // ...
862 // TrueVal = ...
863 // cmpTY ccX, r1, r2
864 // jCC copy1MBB
865 // fallthrough --> copy0MBB
866 MachineBasicBlock *thisMBB = BB;
867 MachineFunction *F = BB->getParent();
868 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
869 MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB);
870 BuildMI(BB, dl, TII.get(MSP430::JCC))
871 .addMBB(copy1MBB)
872 .addImm(MI->getOperand(3).getImm());
873 F->insert(I, copy0MBB);
874 F->insert(I, copy1MBB);
Evan Chengce319102009-09-19 09:51:03 +0000875 // Inform sdisel of the edge changes.
876 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
877 SE = BB->succ_end(); SI != SE; ++SI)
878 EM->insert(std::make_pair(*SI, copy1MBB));
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000879 // Update machine-CFG edges by transferring all successors of the current
880 // block to the new block which will contain the Phi node for the select.
881 copy1MBB->transferSuccessors(BB);
882 // Next, add the true and fallthrough blocks as its successors.
883 BB->addSuccessor(copy0MBB);
884 BB->addSuccessor(copy1MBB);
885
886 // copy0MBB:
887 // %FalseValue = ...
888 // # fallthrough to copy1MBB
889 BB = copy0MBB;
890
891 // Update machine-CFG edges
892 BB->addSuccessor(copy1MBB);
893
894 // copy1MBB:
895 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
896 // ...
897 BB = copy1MBB;
898 BuildMI(BB, dl, TII.get(MSP430::PHI),
899 MI->getOperand(0).getReg())
900 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
901 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
902
903 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
904 return BB;
905}