blob: a1703a3e78bf29701cc57688e213bc8d657ff077 [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"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000034#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000035#include "llvm/CodeGen/ValueTypes.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);
Evan Cheng211ffa12010-05-19 20:19:50 +000086 setSchedulingPreference(Sched::Latency);
Anton Korobeynikovc08163e2009-05-03 13:11:35 +000087
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);
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000113 setOperationAction(ISD::BlockAddress, MVT::i16, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000114 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000115 setOperationAction(ISD::BR_CC, MVT::i8, Custom);
116 setOperationAction(ISD::BR_CC, MVT::i16, Custom);
117 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000118 setOperationAction(ISD::SETCC, MVT::i8, Custom);
119 setOperationAction(ISD::SETCC, MVT::i16, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000120 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
Dan Gohmand858e902010-04-17 15:26:15 +0000179SDValue MSP430TargetLowering::LowerOperation(SDValue Op,
180 SelectionDAG &DAG) const {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000181 switch (Op.getOpcode()) {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000182 case ISD::SHL: // FALLTHROUGH
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000183 case ISD::SRL:
Anton Korobeynikov44288852009-05-03 13:07:31 +0000184 case ISD::SRA: return LowerShifts(Op, DAG);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000185 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000186 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000187 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000188 case ISD::SETCC: return LowerSETCC(Op, DAG);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000189 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
190 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000191 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000192 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
193 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000194 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000195 llvm_unreachable("unimplemented operand");
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000196 return SDValue();
197 }
198}
199
Bill Wendlingb4202b82009-07-01 18:50:55 +0000200/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000201unsigned MSP430TargetLowering::getFunctionAlignment(const Function *F) const {
Anton Korobeynikov3741be32009-11-22 01:13:39 +0000202 return F->hasFnAttr(Attribute::OptimizeForSize) ? 1 : 2;
Bill Wendling20c568f2009-06-30 22:38:32 +0000203}
204
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000205//===----------------------------------------------------------------------===//
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000206// MSP430 Inline Assembly Support
207//===----------------------------------------------------------------------===//
208
209/// getConstraintType - Given a constraint letter, return the type of
210/// constraint it is for this target.
211TargetLowering::ConstraintType
212MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
213 if (Constraint.size() == 1) {
214 switch (Constraint[0]) {
215 case 'r':
216 return C_RegisterClass;
217 default:
218 break;
219 }
220 }
221 return TargetLowering::getConstraintType(Constraint);
222}
223
224std::pair<unsigned, const TargetRegisterClass*>
225MSP430TargetLowering::
226getRegForInlineAsmConstraint(const std::string &Constraint,
227 EVT VT) const {
228 if (Constraint.size() == 1) {
229 // GCC Constraint Letters
230 switch (Constraint[0]) {
231 default: break;
232 case 'r': // GENERAL_REGS
233 if (VT == MVT::i8)
234 return std::make_pair(0U, MSP430::GR8RegisterClass);
235
236 return std::make_pair(0U, MSP430::GR16RegisterClass);
237 }
238 }
239
240 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
241}
242
243//===----------------------------------------------------------------------===//
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000244// Calling Convention Implementation
245//===----------------------------------------------------------------------===//
246
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000247#include "MSP430GenCallingConv.inc"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000248
Dan Gohman98ca4f22009-08-05 01:29:28 +0000249SDValue
250MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000251 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000252 bool isVarArg,
253 const SmallVectorImpl<ISD::InputArg>
254 &Ins,
255 DebugLoc dl,
256 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000257 SmallVectorImpl<SDValue> &InVals)
258 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000259
260 switch (CallConv) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000261 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000262 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000263 case CallingConv::C:
264 case CallingConv::Fast:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000265 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000266 case CallingConv::MSP430_INTR:
267 if (Ins.empty())
268 return Chain;
269 else {
Chris Lattner75361b62010-04-07 22:58:41 +0000270 report_fatal_error("ISRs cannot have arguments");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000271 return SDValue();
272 }
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000273 }
274}
275
Dan Gohman98ca4f22009-08-05 01:29:28 +0000276SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000277MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000278 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000279 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000280 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000281 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000282 const SmallVectorImpl<ISD::InputArg> &Ins,
283 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000284 SmallVectorImpl<SDValue> &InVals) const {
Evan Cheng0c439eb2010-01-27 00:07:07 +0000285 // MSP430 target does not yet support tail call optimization.
286 isTailCall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000287
288 switch (CallConv) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000289 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000290 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000291 case CallingConv::Fast:
292 case CallingConv::C:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000293 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
Dan Gohmanc9403652010-07-07 15:54:55 +0000294 Outs, OutVals, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000295 case CallingConv::MSP430_INTR:
Chris Lattner75361b62010-04-07 22:58:41 +0000296 report_fatal_error("ISRs cannot be called directly");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000297 return SDValue();
Anton Korobeynikov44288852009-05-03 13:07:31 +0000298 }
299}
300
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000301/// LowerCCCArguments - transform physical registers into virtual registers and
302/// generate load operations for arguments places on the stack.
303// FIXME: struct return stuff
304// FIXME: varargs
Dan Gohman98ca4f22009-08-05 01:29:28 +0000305SDValue
306MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000307 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000308 bool isVarArg,
309 const SmallVectorImpl<ISD::InputArg>
310 &Ins,
311 DebugLoc dl,
312 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000313 SmallVectorImpl<SDValue> &InVals)
314 const {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000315 MachineFunction &MF = DAG.getMachineFunction();
316 MachineFrameInfo *MFI = MF.getFrameInfo();
317 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000318
319 // Assign locations to all of the incoming arguments.
320 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000321 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
322 ArgLocs, *DAG.getContext());
323 CCInfo.AnalyzeFormalArguments(Ins, CC_MSP430);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000324
325 assert(!isVarArg && "Varargs not supported yet");
326
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000327 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
328 CCValAssign &VA = ArgLocs[i];
329 if (VA.isRegLoc()) {
330 // Arguments passed in registers
Owen Andersone50ed302009-08-10 22:56:29 +0000331 EVT RegVT = VA.getLocVT();
Owen Anderson825b72b2009-08-11 20:47:22 +0000332 switch (RegVT.getSimpleVT().SimpleTy) {
Torok Edwin804e0fe2009-07-08 19:04:27 +0000333 default:
334 {
Torok Edwindac237e2009-07-08 20:53:28 +0000335#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000336 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000337 << RegVT.getSimpleVT().SimpleTy << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000338#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000339 llvm_unreachable(0);
Torok Edwin804e0fe2009-07-08 19:04:27 +0000340 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000341 case MVT::i16:
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000342 unsigned VReg =
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000343 RegInfo.createVirtualRegister(MSP430::GR16RegisterClass);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000344 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000345 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000346
347 // If this is an 8-bit value, it is really passed promoted to 16
348 // bits. Insert an assert[sz]ext to capture this, then truncate to the
349 // right size.
350 if (VA.getLocInfo() == CCValAssign::SExt)
351 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
352 DAG.getValueType(VA.getValVT()));
353 else if (VA.getLocInfo() == CCValAssign::ZExt)
354 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
355 DAG.getValueType(VA.getValVT()));
356
357 if (VA.getLocInfo() != CCValAssign::Full)
358 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
359
Dan Gohman98ca4f22009-08-05 01:29:28 +0000360 InVals.push_back(ArgValue);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000361 }
362 } else {
363 // Sanity check
364 assert(VA.isMemLoc());
365 // Load the argument to a virtual register
366 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
367 if (ObjSize > 2) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000368 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 << VA.getLocVT().getSimpleVT().SimpleTy
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000370 << "\n";
371 }
372 // Create the frame index object for this incoming parameter...
Evan Chenged2ae132010-07-03 00:40:23 +0000373 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000374
375 // Create the SelectionDAG nodes corresponding to a load
376 //from this parameter
Owen Anderson825b72b2009-08-11 20:47:22 +0000377 SDValue FIN = DAG.getFrameIndex(FI, MVT::i16);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000378 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
David Greene4d58b642010-02-15 16:56:22 +0000379 PseudoSourceValue::getFixedStack(FI), 0,
380 false, false, 0));
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000381 }
382 }
383
Dan Gohman98ca4f22009-08-05 01:29:28 +0000384 return Chain;
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000385}
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000386
Dan Gohman98ca4f22009-08-05 01:29:28 +0000387SDValue
388MSP430TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000389 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000390 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000391 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000392 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000393
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000394 // CCValAssign - represent the assignment of the return value to a location
395 SmallVector<CCValAssign, 16> RVLocs;
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000396
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000397 // ISRs cannot return any value.
398 if (CallConv == CallingConv::MSP430_INTR && !Outs.empty()) {
Chris Lattner75361b62010-04-07 22:58:41 +0000399 report_fatal_error("ISRs cannot return any value");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000400 return SDValue();
401 }
402
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000403 // CCState - Info about the registers and stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000404 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
405 RVLocs, *DAG.getContext());
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000406
Dan Gohman98ca4f22009-08-05 01:29:28 +0000407 // Analize return values.
408 CCInfo.AnalyzeReturn(Outs, RetCC_MSP430);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000409
410 // If this is the first return lowered for this function, add the regs to the
411 // liveout set for the function.
412 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
413 for (unsigned i = 0; i != RVLocs.size(); ++i)
414 if (RVLocs[i].isRegLoc())
415 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
416 }
417
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000418 SDValue Flag;
419
420 // Copy the result values into the output registers.
421 for (unsigned i = 0; i != RVLocs.size(); ++i) {
422 CCValAssign &VA = RVLocs[i];
423 assert(VA.isRegLoc() && "Can only return in registers!");
424
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000425 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohmanc9403652010-07-07 15:54:55 +0000426 OutVals[i], Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000427
Anton Korobeynikovdcb802c2009-05-03 13:00:11 +0000428 // Guarantee that all emitted copies are stuck together,
429 // avoiding something bad.
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000430 Flag = Chain.getValue(1);
431 }
432
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000433 unsigned Opc = (CallConv == CallingConv::MSP430_INTR ?
434 MSP430ISD::RETI_FLAG : MSP430ISD::RET_FLAG);
435
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000436 if (Flag.getNode())
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000437 return DAG.getNode(Opc, dl, MVT::Other, Chain, Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000438
439 // Return Void
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000440 return DAG.getNode(Opc, dl, MVT::Other, Chain);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000441}
442
Anton Korobeynikov44288852009-05-03 13:07:31 +0000443/// LowerCCCCallTo - functions arguments are copied from virtual regs to
444/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
445/// TODO: sret.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000446SDValue
447MSP430TargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000448 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000449 bool isTailCall,
450 const SmallVectorImpl<ISD::OutputArg>
451 &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000452 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000453 const SmallVectorImpl<ISD::InputArg> &Ins,
454 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000455 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000456 // Analyze operands of the call, assigning locations to each operand.
457 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000458 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
459 ArgLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000460
Dan Gohman98ca4f22009-08-05 01:29:28 +0000461 CCInfo.AnalyzeCallOperands(Outs, CC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000462
463 // Get a count of how many bytes are to be pushed on the stack.
464 unsigned NumBytes = CCInfo.getNextStackOffset();
465
466 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
467 getPointerTy(), true));
468
469 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
470 SmallVector<SDValue, 12> MemOpChains;
471 SDValue StackPtr;
472
473 // Walk the register/memloc assignments, inserting copies/loads.
474 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
475 CCValAssign &VA = ArgLocs[i];
476
Dan Gohmanc9403652010-07-07 15:54:55 +0000477 SDValue Arg = OutVals[i];
Anton Korobeynikov44288852009-05-03 13:07:31 +0000478
479 // Promote the value if needed.
480 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000481 default: llvm_unreachable("Unknown loc info!");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000482 case CCValAssign::Full: break;
483 case CCValAssign::SExt:
484 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
485 break;
486 case CCValAssign::ZExt:
487 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
488 break;
489 case CCValAssign::AExt:
490 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
491 break;
492 }
493
494 // Arguments that can be passed on register must be kept at RegsToPass
495 // vector
496 if (VA.isRegLoc()) {
497 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
498 } else {
499 assert(VA.isMemLoc());
500
501 if (StackPtr.getNode() == 0)
502 StackPtr = DAG.getCopyFromReg(Chain, dl, MSP430::SPW, getPointerTy());
503
504 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
505 StackPtr,
506 DAG.getIntPtrConstant(VA.getLocMemOffset()));
507
508
509 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
510 PseudoSourceValue::getStack(),
David Greene4d58b642010-02-15 16:56:22 +0000511 VA.getLocMemOffset(), false, false, 0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000512 }
513 }
514
515 // Transform all store nodes into one single node because all store nodes are
516 // independent of each other.
517 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +0000518 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Anton Korobeynikov44288852009-05-03 13:07:31 +0000519 &MemOpChains[0], MemOpChains.size());
520
521 // Build a sequence of copy-to-reg nodes chained together with token chain and
522 // flag operands which copy the outgoing args into registers. The InFlag in
523 // necessary since all emited instructions must be stuck together.
524 SDValue InFlag;
525 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
526 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
527 RegsToPass[i].second, InFlag);
528 InFlag = Chain.getValue(1);
529 }
530
531 // If the callee is a GlobalAddress node (quite common, every direct call is)
532 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
533 // Likewise ExternalSymbol -> TargetExternalSymbol.
534 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Devang Patel0d881da2010-07-06 22:08:15 +0000535 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000536 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000537 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000538
539 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +0000540 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000541 SmallVector<SDValue, 8> Ops;
542 Ops.push_back(Chain);
543 Ops.push_back(Callee);
544
545 // Add argument registers to the end of the list so that they are
546 // known live into the call.
547 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
548 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
549 RegsToPass[i].second.getValueType()));
550
551 if (InFlag.getNode())
552 Ops.push_back(InFlag);
553
554 Chain = DAG.getNode(MSP430ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
555 InFlag = Chain.getValue(1);
556
557 // Create the CALLSEQ_END node.
558 Chain = DAG.getCALLSEQ_END(Chain,
559 DAG.getConstant(NumBytes, getPointerTy(), true),
560 DAG.getConstant(0, getPointerTy(), true),
561 InFlag);
562 InFlag = Chain.getValue(1);
563
564 // Handle result values, copying them out of physregs into vregs that we
565 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000566 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl,
567 DAG, InVals);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000568}
569
Dan Gohman98ca4f22009-08-05 01:29:28 +0000570/// LowerCallResult - Lower the result values of a call into the
571/// appropriate copies out of appropriate physical registers.
572///
573SDValue
Anton Korobeynikov44288852009-05-03 13:07:31 +0000574MSP430TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000575 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000576 const SmallVectorImpl<ISD::InputArg> &Ins,
577 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000578 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000579
580 // Assign locations to each value returned by this call.
581 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000582 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +0000583 RVLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000584
Dan Gohman98ca4f22009-08-05 01:29:28 +0000585 CCInfo.AnalyzeCallResult(Ins, RetCC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000586
587 // Copy all of the result registers out of their specified physreg.
588 for (unsigned i = 0; i != RVLocs.size(); ++i) {
589 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
590 RVLocs[i].getValVT(), InFlag).getValue(1);
591 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000592 InVals.push_back(Chain.getValue(0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000593 }
594
Dan Gohman98ca4f22009-08-05 01:29:28 +0000595 return Chain;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000596}
597
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000598SDValue MSP430TargetLowering::LowerShifts(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000599 SelectionDAG &DAG) const {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000600 unsigned Opc = Op.getOpcode();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000601 SDNode* N = Op.getNode();
Owen Andersone50ed302009-08-10 22:56:29 +0000602 EVT VT = Op.getValueType();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000603 DebugLoc dl = N->getDebugLoc();
604
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000605 // Expand non-constant shifts to loops:
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000606 if (!isa<ConstantSDNode>(N->getOperand(1)))
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000607 switch (Opc) {
608 default:
609 assert(0 && "Invalid shift opcode!");
610 case ISD::SHL:
611 return DAG.getNode(MSP430ISD::SHL, dl,
612 VT, N->getOperand(0), N->getOperand(1));
613 case ISD::SRA:
614 return DAG.getNode(MSP430ISD::SRA, dl,
615 VT, N->getOperand(0), N->getOperand(1));
616 case ISD::SRL:
617 return DAG.getNode(MSP430ISD::SRL, dl,
618 VT, N->getOperand(0), N->getOperand(1));
619 }
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000620
621 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
622
623 // Expand the stuff into sequence of shifts.
624 // FIXME: for some shift amounts this might be done better!
625 // E.g.: foo >> (8 + N) => sxt(swpb(foo)) >> N
626 SDValue Victim = N->getOperand(0);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000627
628 if (Opc == ISD::SRL && ShiftAmount) {
629 // Emit a special goodness here:
630 // srl A, 1 => clrc; rrc A
Anton Korobeynikovbf8ef3f2009-05-03 13:16:37 +0000631 Victim = DAG.getNode(MSP430ISD::RRC, dl, VT, Victim);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000632 ShiftAmount -= 1;
633 }
634
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000635 while (ShiftAmount--)
Anton Korobeynikovaceb6202009-05-17 10:15:22 +0000636 Victim = DAG.getNode((Opc == ISD::SHL ? MSP430ISD::RLA : MSP430ISD::RRA),
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000637 dl, VT, Victim);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000638
639 return Victim;
640}
641
Dan Gohmand858e902010-04-17 15:26:15 +0000642SDValue MSP430TargetLowering::LowerGlobalAddress(SDValue Op,
643 SelectionDAG &DAG) const {
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000644 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
645 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
646
647 // Create the TargetGlobalAddress node, folding in the constant offset.
Devang Patel0d881da2010-07-06 22:08:15 +0000648 SDValue Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
649 getPointerTy(), Offset);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000650 return DAG.getNode(MSP430ISD::Wrapper, Op.getDebugLoc(),
651 getPointerTy(), Result);
652}
653
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000654SDValue MSP430TargetLowering::LowerExternalSymbol(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000655 SelectionDAG &DAG) const {
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000656 DebugLoc dl = Op.getDebugLoc();
657 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
658 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
659
660 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
661}
662
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000663SDValue MSP430TargetLowering::LowerBlockAddress(SDValue Op,
664 SelectionDAG &DAG) const {
665 DebugLoc dl = Op.getDebugLoc();
666 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
667 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), /*isTarget=*/true);
668
669 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
670}
671
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000672static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC,
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000673 ISD::CondCode CC,
674 DebugLoc dl, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000675 // FIXME: Handle bittests someday
676 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
677
678 // FIXME: Handle jump negative someday
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000679 MSP430CC::CondCodes TCC = MSP430CC::COND_INVALID;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000680 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000681 default: llvm_unreachable("Invalid integer condition!");
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000682 case ISD::SETEQ:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000683 TCC = MSP430CC::COND_E; // aka COND_Z
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000684 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000685 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000686 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000687 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000688 break;
689 case ISD::SETNE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000690 TCC = MSP430CC::COND_NE; // aka COND_NZ
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000691 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000692 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000693 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000694 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000695 break;
696 case ISD::SETULE:
697 std::swap(LHS, RHS); // FALLTHROUGH
698 case ISD::SETUGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000699 // Turn lhs u>= rhs with lhs constant into rhs u< lhs+1, this allows us to
700 // fold constant into instruction.
701 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
702 LHS = RHS;
703 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
704 TCC = MSP430CC::COND_LO;
705 break;
706 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000707 TCC = MSP430CC::COND_HS; // aka COND_C
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000708 break;
709 case ISD::SETUGT:
710 std::swap(LHS, RHS); // FALLTHROUGH
711 case ISD::SETULT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000712 // Turn lhs u< rhs with lhs constant into rhs u>= lhs+1, this allows us to
713 // fold constant into instruction.
714 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
715 LHS = RHS;
716 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
717 TCC = MSP430CC::COND_HS;
718 break;
719 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000720 TCC = MSP430CC::COND_LO; // aka COND_NC
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000721 break;
722 case ISD::SETLE:
723 std::swap(LHS, RHS); // FALLTHROUGH
724 case ISD::SETGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000725 // Turn lhs >= rhs with lhs constant into rhs < lhs+1, this allows us to
726 // fold constant into instruction.
727 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
728 LHS = RHS;
729 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
730 TCC = MSP430CC::COND_L;
731 break;
732 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000733 TCC = MSP430CC::COND_GE;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000734 break;
735 case ISD::SETGT:
736 std::swap(LHS, RHS); // FALLTHROUGH
737 case ISD::SETLT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000738 // Turn lhs < rhs with lhs constant into rhs >= lhs+1, this allows us to
739 // fold constant into instruction.
740 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
741 LHS = RHS;
742 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
743 TCC = MSP430CC::COND_GE;
744 break;
745 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000746 TCC = MSP430CC::COND_L;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000747 break;
748 }
749
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000750 TargetCC = DAG.getConstant(TCC, MVT::i8);
Owen Anderson825b72b2009-08-11 20:47:22 +0000751 return DAG.getNode(MSP430ISD::CMP, dl, MVT::Flag, LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000752}
753
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000754
Dan Gohmand858e902010-04-17 15:26:15 +0000755SDValue MSP430TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000756 SDValue Chain = Op.getOperand(0);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000757 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
758 SDValue LHS = Op.getOperand(2);
759 SDValue RHS = Op.getOperand(3);
760 SDValue Dest = Op.getOperand(4);
761 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000762
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000763 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000764 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000765
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000766 return DAG.getNode(MSP430ISD::BR_CC, dl, Op.getValueType(),
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000767 Chain, Dest, TargetCC, Flag);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000768}
769
Dan Gohmand858e902010-04-17 15:26:15 +0000770SDValue MSP430TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000771 SDValue LHS = Op.getOperand(0);
772 SDValue RHS = Op.getOperand(1);
773 DebugLoc dl = Op.getDebugLoc();
774
775 // If we are doing an AND and testing against zero, then the CMP
776 // will not be generated. The AND (or BIT) will generate the condition codes,
777 // but they are different from CMP.
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000778 // FIXME: since we're doing a post-processing, use a pseudoinstr here, so
779 // lowering & isel wouldn't diverge.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000780 bool andCC = false;
781 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
782 if (RHSC->isNullValue() && LHS.hasOneUse() &&
783 (LHS.getOpcode() == ISD::AND ||
784 (LHS.getOpcode() == ISD::TRUNCATE &&
785 LHS.getOperand(0).getOpcode() == ISD::AND))) {
786 andCC = true;
787 }
788 }
789 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
790 SDValue TargetCC;
791 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
792
793 // Get the condition codes directly from the status register, if its easy.
794 // Otherwise a branch will be generated. Note that the AND and BIT
795 // instructions generate different flags than CMP, the carry bit can be used
796 // for NE/EQ.
797 bool Invert = false;
798 bool Shift = false;
799 bool Convert = true;
800 switch (cast<ConstantSDNode>(TargetCC)->getZExtValue()) {
801 default:
802 Convert = false;
803 break;
804 case MSP430CC::COND_HS:
805 // Res = SRW & 1, no processing is required
806 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000807 case MSP430CC::COND_LO:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000808 // Res = ~(SRW & 1)
809 Invert = true;
810 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000811 case MSP430CC::COND_NE:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000812 if (andCC) {
813 // C = ~Z, thus Res = SRW & 1, no processing is required
814 } else {
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000815 // Res = ~((SRW >> 1) & 1)
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000816 Shift = true;
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000817 Invert = true;
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000818 }
819 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000820 case MSP430CC::COND_E:
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000821 Shift = true;
822 // C = ~Z for AND instruction, thus we can put Res = ~(SRW & 1), however,
823 // Res = (SRW >> 1) & 1 is 1 word shorter.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000824 break;
825 }
826 EVT VT = Op.getValueType();
827 SDValue One = DAG.getConstant(1, VT);
828 if (Convert) {
829 SDValue SR = DAG.getCopyFromReg(DAG.getEntryNode(), dl, MSP430::SRW,
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000830 MVT::i16, Flag);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000831 if (Shift)
832 // FIXME: somewhere this is turned into a SRL, lower it MSP specific?
833 SR = DAG.getNode(ISD::SRA, dl, MVT::i16, SR, One);
834 SR = DAG.getNode(ISD::AND, dl, MVT::i16, SR, One);
835 if (Invert)
836 SR = DAG.getNode(ISD::XOR, dl, MVT::i16, SR, One);
837 return SR;
838 } else {
839 SDValue Zero = DAG.getConstant(0, VT);
840 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
841 SmallVector<SDValue, 4> Ops;
842 Ops.push_back(One);
843 Ops.push_back(Zero);
844 Ops.push_back(TargetCC);
845 Ops.push_back(Flag);
846 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
847 }
848}
849
Dan Gohmand858e902010-04-17 15:26:15 +0000850SDValue MSP430TargetLowering::LowerSELECT_CC(SDValue Op,
851 SelectionDAG &DAG) const {
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000852 SDValue LHS = Op.getOperand(0);
853 SDValue RHS = Op.getOperand(1);
854 SDValue TrueV = Op.getOperand(2);
855 SDValue FalseV = Op.getOperand(3);
856 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000857 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000858
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000859 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000860 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000861
Owen Anderson825b72b2009-08-11 20:47:22 +0000862 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000863 SmallVector<SDValue, 4> Ops;
864 Ops.push_back(TrueV);
865 Ops.push_back(FalseV);
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000866 Ops.push_back(TargetCC);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000867 Ops.push_back(Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000868
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000869 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000870}
871
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000872SDValue MSP430TargetLowering::LowerSIGN_EXTEND(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000873 SelectionDAG &DAG) const {
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000874 SDValue Val = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000875 EVT VT = Op.getValueType();
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000876 DebugLoc dl = Op.getDebugLoc();
877
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 assert(VT == MVT::i16 && "Only support i16 for now!");
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000879
880 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, VT,
881 DAG.getNode(ISD::ANY_EXTEND, dl, VT, Val),
882 DAG.getValueType(Val.getValueType()));
883}
884
Dan Gohmand858e902010-04-17 15:26:15 +0000885SDValue
886MSP430TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000887 MachineFunction &MF = DAG.getMachineFunction();
888 MSP430MachineFunctionInfo *FuncInfo = MF.getInfo<MSP430MachineFunctionInfo>();
889 int ReturnAddrIndex = FuncInfo->getRAIndex();
890
891 if (ReturnAddrIndex == 0) {
892 // Set up a frame object for the return address.
893 uint64_t SlotSize = TD->getPointerSize();
894 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +0000895 true);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000896 FuncInfo->setRAIndex(ReturnAddrIndex);
897 }
898
899 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
900}
901
Dan Gohmand858e902010-04-17 15:26:15 +0000902SDValue MSP430TargetLowering::LowerRETURNADDR(SDValue Op,
903 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +0000904 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
905 MFI->setReturnAddressIsTaken(true);
906
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000907 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
908 DebugLoc dl = Op.getDebugLoc();
909
910 if (Depth > 0) {
911 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
912 SDValue Offset =
913 DAG.getConstant(TD->getPointerSize(), MVT::i16);
914 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
915 DAG.getNode(ISD::ADD, dl, getPointerTy(),
916 FrameAddr, Offset),
David Greene4d58b642010-02-15 16:56:22 +0000917 NULL, 0, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000918 }
919
920 // Just load the return address.
921 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
922 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
David Greene4d58b642010-02-15 16:56:22 +0000923 RetAddrFI, NULL, 0, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000924}
925
Dan Gohmand858e902010-04-17 15:26:15 +0000926SDValue MSP430TargetLowering::LowerFRAMEADDR(SDValue Op,
927 SelectionDAG &DAG) const {
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000928 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
929 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +0000930
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000931 EVT VT = Op.getValueType();
932 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
933 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
934 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
935 MSP430::FPW, VT);
936 while (Depth--)
David Greene4d58b642010-02-15 16:56:22 +0000937 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0,
938 false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000939 return FrameAddr;
940}
941
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000942/// getPostIndexedAddressParts - returns true by value, base pointer and
943/// offset pointer and addressing mode by reference if this node can be
944/// combined with a load / store to form a post-indexed load / store.
945bool MSP430TargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
946 SDValue &Base,
947 SDValue &Offset,
948 ISD::MemIndexedMode &AM,
949 SelectionDAG &DAG) const {
950
951 LoadSDNode *LD = cast<LoadSDNode>(N);
952 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
953 return false;
954
955 EVT VT = LD->getMemoryVT();
956 if (VT != MVT::i8 && VT != MVT::i16)
957 return false;
958
959 if (Op->getOpcode() != ISD::ADD)
960 return false;
961
962 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
963 uint64_t RHSC = RHS->getZExtValue();
964 if ((VT == MVT::i16 && RHSC != 2) ||
965 (VT == MVT::i8 && RHSC != 1))
966 return false;
967
968 Base = Op->getOperand(0);
969 Offset = DAG.getConstant(RHSC, VT);
970 AM = ISD::POST_INC;
971 return true;
972 }
973
974 return false;
975}
976
977
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000978const char *MSP430TargetLowering::getTargetNodeName(unsigned Opcode) const {
979 switch (Opcode) {
980 default: return NULL;
981 case MSP430ISD::RET_FLAG: return "MSP430ISD::RET_FLAG";
Anton Korobeynikov6bfcba72009-12-07 02:28:41 +0000982 case MSP430ISD::RETI_FLAG: return "MSP430ISD::RETI_FLAG";
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000983 case MSP430ISD::RRA: return "MSP430ISD::RRA";
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000984 case MSP430ISD::RLA: return "MSP430ISD::RLA";
985 case MSP430ISD::RRC: return "MSP430ISD::RRC";
Anton Korobeynikovb5612642009-05-03 13:07:54 +0000986 case MSP430ISD::CALL: return "MSP430ISD::CALL";
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000987 case MSP430ISD::Wrapper: return "MSP430ISD::Wrapper";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000988 case MSP430ISD::BR_CC: return "MSP430ISD::BR_CC";
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000989 case MSP430ISD::CMP: return "MSP430ISD::CMP";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000990 case MSP430ISD::SELECT_CC: return "MSP430ISD::SELECT_CC";
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000991 case MSP430ISD::SHL: return "MSP430ISD::SHL";
992 case MSP430ISD::SRA: return "MSP430ISD::SRA";
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000993 }
994}
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000995
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000996bool MSP430TargetLowering::isTruncateFree(const Type *Ty1,
997 const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000998 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000999 return false;
1000
1001 return (Ty1->getPrimitiveSizeInBits() > Ty2->getPrimitiveSizeInBits());
1002}
1003
1004bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
1005 if (!VT1.isInteger() || !VT2.isInteger())
1006 return false;
1007
1008 return (VT1.getSizeInBits() > VT2.getSizeInBits());
1009}
1010
1011bool MSP430TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
1012 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001013 return 0 && Ty1->isIntegerTy(8) && Ty2->isIntegerTy(16);
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +00001014}
1015
1016bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
1017 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
1018 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
1019}
1020
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001021//===----------------------------------------------------------------------===//
1022// Other Lowering Code
1023//===----------------------------------------------------------------------===//
1024
1025MachineBasicBlock*
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001026MSP430TargetLowering::EmitShiftInstr(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001027 MachineBasicBlock *BB) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001028 MachineFunction *F = BB->getParent();
1029 MachineRegisterInfo &RI = F->getRegInfo();
1030 DebugLoc dl = MI->getDebugLoc();
1031 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1032
1033 unsigned Opc;
1034 const TargetRegisterClass * RC;
1035 switch (MI->getOpcode()) {
1036 default:
1037 assert(0 && "Invalid shift opcode!");
1038 case MSP430::Shl8:
1039 Opc = MSP430::SHL8r1;
1040 RC = MSP430::GR8RegisterClass;
1041 break;
1042 case MSP430::Shl16:
1043 Opc = MSP430::SHL16r1;
1044 RC = MSP430::GR16RegisterClass;
1045 break;
1046 case MSP430::Sra8:
1047 Opc = MSP430::SAR8r1;
1048 RC = MSP430::GR8RegisterClass;
1049 break;
1050 case MSP430::Sra16:
1051 Opc = MSP430::SAR16r1;
1052 RC = MSP430::GR16RegisterClass;
1053 break;
1054 case MSP430::Srl8:
1055 Opc = MSP430::SAR8r1c;
1056 RC = MSP430::GR8RegisterClass;
1057 break;
1058 case MSP430::Srl16:
1059 Opc = MSP430::SAR16r1c;
1060 RC = MSP430::GR16RegisterClass;
1061 break;
1062 }
1063
1064 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1065 MachineFunction::iterator I = BB;
1066 ++I;
1067
1068 // Create loop block
1069 MachineBasicBlock *LoopBB = F->CreateMachineBasicBlock(LLVM_BB);
1070 MachineBasicBlock *RemBB = F->CreateMachineBasicBlock(LLVM_BB);
1071
1072 F->insert(I, LoopBB);
1073 F->insert(I, RemBB);
1074
1075 // Update machine-CFG edges by transferring all successors of the current
1076 // block to the block containing instructions after shift.
Dan Gohman14152b42010-07-06 20:24:04 +00001077 RemBB->splice(RemBB->begin(), BB,
1078 llvm::next(MachineBasicBlock::iterator(MI)),
1079 BB->end());
1080 RemBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001081
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001082 // Add adges BB => LoopBB => RemBB, BB => RemBB, LoopBB => LoopBB
1083 BB->addSuccessor(LoopBB);
1084 BB->addSuccessor(RemBB);
1085 LoopBB->addSuccessor(RemBB);
1086 LoopBB->addSuccessor(LoopBB);
1087
1088 unsigned ShiftAmtReg = RI.createVirtualRegister(MSP430::GR8RegisterClass);
1089 unsigned ShiftAmtReg2 = RI.createVirtualRegister(MSP430::GR8RegisterClass);
1090 unsigned ShiftReg = RI.createVirtualRegister(RC);
1091 unsigned ShiftReg2 = RI.createVirtualRegister(RC);
1092 unsigned ShiftAmtSrcReg = MI->getOperand(2).getReg();
1093 unsigned SrcReg = MI->getOperand(1).getReg();
1094 unsigned DstReg = MI->getOperand(0).getReg();
1095
1096 // BB:
1097 // cmp 0, N
1098 // je RemBB
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +00001099 BuildMI(BB, dl, TII.get(MSP430::CMP8ri))
1100 .addReg(ShiftAmtSrcReg).addImm(0);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001101 BuildMI(BB, dl, TII.get(MSP430::JCC))
1102 .addMBB(RemBB)
1103 .addImm(MSP430CC::COND_E);
1104
1105 // LoopBB:
1106 // ShiftReg = phi [%SrcReg, BB], [%ShiftReg2, LoopBB]
1107 // ShiftAmt = phi [%N, BB], [%ShiftAmt2, LoopBB]
1108 // ShiftReg2 = shift ShiftReg
1109 // ShiftAmt2 = ShiftAmt - 1;
1110 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftReg)
1111 .addReg(SrcReg).addMBB(BB)
1112 .addReg(ShiftReg2).addMBB(LoopBB);
1113 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftAmtReg)
1114 .addReg(ShiftAmtSrcReg).addMBB(BB)
1115 .addReg(ShiftAmtReg2).addMBB(LoopBB);
1116 BuildMI(LoopBB, dl, TII.get(Opc), ShiftReg2)
1117 .addReg(ShiftReg);
1118 BuildMI(LoopBB, dl, TII.get(MSP430::SUB8ri), ShiftAmtReg2)
1119 .addReg(ShiftAmtReg).addImm(1);
1120 BuildMI(LoopBB, dl, TII.get(MSP430::JCC))
1121 .addMBB(LoopBB)
1122 .addImm(MSP430CC::COND_NE);
1123
1124 // RemBB:
1125 // DestReg = phi [%SrcReg, BB], [%ShiftReg, LoopBB]
Dan Gohman14152b42010-07-06 20:24:04 +00001126 BuildMI(*RemBB, RemBB->begin(), dl, TII.get(MSP430::PHI), DstReg)
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001127 .addReg(SrcReg).addMBB(BB)
1128 .addReg(ShiftReg2).addMBB(LoopBB);
1129
Dan Gohman14152b42010-07-06 20:24:04 +00001130 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001131 return RemBB;
1132}
1133
1134MachineBasicBlock*
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001135MSP430TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001136 MachineBasicBlock *BB) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001137 unsigned Opc = MI->getOpcode();
1138
1139 if (Opc == MSP430::Shl8 || Opc == MSP430::Shl16 ||
1140 Opc == MSP430::Sra8 || Opc == MSP430::Sra16 ||
1141 Opc == MSP430::Srl8 || Opc == MSP430::Srl16)
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001142 return EmitShiftInstr(MI, BB);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001143
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001144 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1145 DebugLoc dl = MI->getDebugLoc();
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001146
1147 assert((Opc == MSP430::Select16 || Opc == MSP430::Select8) &&
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001148 "Unexpected instr type to insert");
1149
1150 // To "insert" a SELECT instruction, we actually have to insert the diamond
1151 // control-flow pattern. The incoming instruction knows the destination vreg
1152 // to set, the condition code register to branch on, the true/false values to
1153 // select between, and a branch opcode to use.
1154 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1155 MachineFunction::iterator I = BB;
1156 ++I;
1157
1158 // thisMBB:
1159 // ...
1160 // TrueVal = ...
1161 // cmpTY ccX, r1, r2
1162 // jCC copy1MBB
1163 // fallthrough --> copy0MBB
1164 MachineBasicBlock *thisMBB = BB;
1165 MachineFunction *F = BB->getParent();
1166 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1167 MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001168 F->insert(I, copy0MBB);
1169 F->insert(I, copy1MBB);
1170 // Update machine-CFG edges by transferring all successors of the current
1171 // block to the new block which will contain the Phi node for the select.
Dan Gohman14152b42010-07-06 20:24:04 +00001172 copy1MBB->splice(copy1MBB->begin(), BB,
1173 llvm::next(MachineBasicBlock::iterator(MI)),
1174 BB->end());
1175 copy1MBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001176 // Next, add the true and fallthrough blocks as its successors.
1177 BB->addSuccessor(copy0MBB);
1178 BB->addSuccessor(copy1MBB);
1179
Dan Gohman14152b42010-07-06 20:24:04 +00001180 BuildMI(BB, dl, TII.get(MSP430::JCC))
1181 .addMBB(copy1MBB)
1182 .addImm(MI->getOperand(3).getImm());
1183
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001184 // copy0MBB:
1185 // %FalseValue = ...
1186 // # fallthrough to copy1MBB
1187 BB = copy0MBB;
1188
1189 // Update machine-CFG edges
1190 BB->addSuccessor(copy1MBB);
1191
1192 // copy1MBB:
1193 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1194 // ...
1195 BB = copy1MBB;
Dan Gohman14152b42010-07-06 20:24:04 +00001196 BuildMI(*BB, BB->begin(), dl, TII.get(MSP430::PHI),
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001197 MI->getOperand(0).getReg())
1198 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1199 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
1200
Dan Gohman14152b42010-07-06 20:24:04 +00001201 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001202 return BB;
1203}