blob: cd125f7be182e892b5bdecac33f842dc63b8fb24 [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);
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
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 Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000186 case ISD::SETCC: return LowerSETCC(Op, DAG);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000187 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
188 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000189 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000190 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
191 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000192 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000193 llvm_unreachable("unimplemented operand");
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000194 return SDValue();
195 }
196}
197
Bill Wendlingb4202b82009-07-01 18:50:55 +0000198/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000199unsigned MSP430TargetLowering::getFunctionAlignment(const Function *F) const {
Anton Korobeynikov3741be32009-11-22 01:13:39 +0000200 return F->hasFnAttr(Attribute::OptimizeForSize) ? 1 : 2;
Bill Wendling20c568f2009-06-30 22:38:32 +0000201}
202
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000203//===----------------------------------------------------------------------===//
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000204// MSP430 Inline Assembly Support
205//===----------------------------------------------------------------------===//
206
207/// getConstraintType - Given a constraint letter, return the type of
208/// constraint it is for this target.
209TargetLowering::ConstraintType
210MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
211 if (Constraint.size() == 1) {
212 switch (Constraint[0]) {
213 case 'r':
214 return C_RegisterClass;
215 default:
216 break;
217 }
218 }
219 return TargetLowering::getConstraintType(Constraint);
220}
221
222std::pair<unsigned, const TargetRegisterClass*>
223MSP430TargetLowering::
224getRegForInlineAsmConstraint(const std::string &Constraint,
225 EVT VT) const {
226 if (Constraint.size() == 1) {
227 // GCC Constraint Letters
228 switch (Constraint[0]) {
229 default: break;
230 case 'r': // GENERAL_REGS
231 if (VT == MVT::i8)
232 return std::make_pair(0U, MSP430::GR8RegisterClass);
233
234 return std::make_pair(0U, MSP430::GR16RegisterClass);
235 }
236 }
237
238 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
239}
240
241//===----------------------------------------------------------------------===//
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000242// Calling Convention Implementation
243//===----------------------------------------------------------------------===//
244
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000245#include "MSP430GenCallingConv.inc"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000246
Dan Gohman98ca4f22009-08-05 01:29:28 +0000247SDValue
248MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000249 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000250 bool isVarArg,
251 const SmallVectorImpl<ISD::InputArg>
252 &Ins,
253 DebugLoc dl,
254 SelectionDAG &DAG,
255 SmallVectorImpl<SDValue> &InVals) {
256
257 switch (CallConv) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000258 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000259 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000260 case CallingConv::C:
261 case CallingConv::Fast:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000262 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000263 case CallingConv::MSP430_INTR:
264 if (Ins.empty())
265 return Chain;
266 else {
267 llvm_report_error("ISRs cannot have arguments");
268 return SDValue();
269 }
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000270 }
271}
272
Dan Gohman98ca4f22009-08-05 01:29:28 +0000273SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000274MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000275 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000276 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000277 const SmallVectorImpl<ISD::OutputArg> &Outs,
278 const SmallVectorImpl<ISD::InputArg> &Ins,
279 DebugLoc dl, SelectionDAG &DAG,
280 SmallVectorImpl<SDValue> &InVals) {
Evan Cheng0c439eb2010-01-27 00:07:07 +0000281 // MSP430 target does not yet support tail call optimization.
282 isTailCall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000283
284 switch (CallConv) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000285 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000286 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000287 case CallingConv::Fast:
288 case CallingConv::C:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000289 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
290 Outs, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000291 case CallingConv::MSP430_INTR:
292 llvm_report_error("ISRs cannot be called directly");
293 return SDValue();
Anton Korobeynikov44288852009-05-03 13:07:31 +0000294 }
295}
296
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000297/// LowerCCCArguments - transform physical registers into virtual registers and
298/// generate load operations for arguments places on the stack.
299// FIXME: struct return stuff
300// FIXME: varargs
Dan Gohman98ca4f22009-08-05 01:29:28 +0000301SDValue
302MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000303 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000304 bool isVarArg,
305 const SmallVectorImpl<ISD::InputArg>
306 &Ins,
307 DebugLoc dl,
308 SelectionDAG &DAG,
309 SmallVectorImpl<SDValue> &InVals) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000310 MachineFunction &MF = DAG.getMachineFunction();
311 MachineFrameInfo *MFI = MF.getFrameInfo();
312 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000313
314 // Assign locations to all of the incoming arguments.
315 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000316 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
317 ArgLocs, *DAG.getContext());
318 CCInfo.AnalyzeFormalArguments(Ins, CC_MSP430);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000319
320 assert(!isVarArg && "Varargs not supported yet");
321
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000322 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
323 CCValAssign &VA = ArgLocs[i];
324 if (VA.isRegLoc()) {
325 // Arguments passed in registers
Owen Andersone50ed302009-08-10 22:56:29 +0000326 EVT RegVT = VA.getLocVT();
Owen Anderson825b72b2009-08-11 20:47:22 +0000327 switch (RegVT.getSimpleVT().SimpleTy) {
Torok Edwin804e0fe2009-07-08 19:04:27 +0000328 default:
329 {
Torok Edwindac237e2009-07-08 20:53:28 +0000330#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000331 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000332 << RegVT.getSimpleVT().SimpleTy << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000333#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000334 llvm_unreachable(0);
Torok Edwin804e0fe2009-07-08 19:04:27 +0000335 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000336 case MVT::i16:
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000337 unsigned VReg =
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000338 RegInfo.createVirtualRegister(MSP430::GR16RegisterClass);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000339 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000340 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000341
342 // If this is an 8-bit value, it is really passed promoted to 16
343 // bits. Insert an assert[sz]ext to capture this, then truncate to the
344 // right size.
345 if (VA.getLocInfo() == CCValAssign::SExt)
346 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
347 DAG.getValueType(VA.getValVT()));
348 else if (VA.getLocInfo() == CCValAssign::ZExt)
349 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
350 DAG.getValueType(VA.getValVT()));
351
352 if (VA.getLocInfo() != CCValAssign::Full)
353 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
354
Dan Gohman98ca4f22009-08-05 01:29:28 +0000355 InVals.push_back(ArgValue);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000356 }
357 } else {
358 // Sanity check
359 assert(VA.isMemLoc());
360 // Load the argument to a virtual register
361 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
362 if (ObjSize > 2) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000363 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000364 << VA.getLocVT().getSimpleVT().SimpleTy
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000365 << "\n";
366 }
367 // Create the frame index object for this incoming parameter...
David Greene3f2bf852009-11-12 20:49:22 +0000368 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true, false);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000369
370 // Create the SelectionDAG nodes corresponding to a load
371 //from this parameter
Owen Anderson825b72b2009-08-11 20:47:22 +0000372 SDValue FIN = DAG.getFrameIndex(FI, MVT::i16);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000373 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
David Greene4d58b642010-02-15 16:56:22 +0000374 PseudoSourceValue::getFixedStack(FI), 0,
375 false, false, 0));
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000376 }
377 }
378
Dan Gohman98ca4f22009-08-05 01:29:28 +0000379 return Chain;
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000380}
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000381
Dan Gohman98ca4f22009-08-05 01:29:28 +0000382SDValue
383MSP430TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000384 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000385 const SmallVectorImpl<ISD::OutputArg> &Outs,
386 DebugLoc dl, SelectionDAG &DAG) {
387
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000388 // CCValAssign - represent the assignment of the return value to a location
389 SmallVector<CCValAssign, 16> RVLocs;
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000390
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000391 // ISRs cannot return any value.
392 if (CallConv == CallingConv::MSP430_INTR && !Outs.empty()) {
393 llvm_report_error("ISRs cannot return any value");
394 return SDValue();
395 }
396
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000397 // CCState - Info about the registers and stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000398 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
399 RVLocs, *DAG.getContext());
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000400
Dan Gohman98ca4f22009-08-05 01:29:28 +0000401 // Analize return values.
402 CCInfo.AnalyzeReturn(Outs, RetCC_MSP430);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000403
404 // If this is the first return lowered for this function, add the regs to the
405 // liveout set for the function.
406 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
407 for (unsigned i = 0; i != RVLocs.size(); ++i)
408 if (RVLocs[i].isRegLoc())
409 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
410 }
411
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000412 SDValue Flag;
413
414 // Copy the result values into the output registers.
415 for (unsigned i = 0; i != RVLocs.size(); ++i) {
416 CCValAssign &VA = RVLocs[i];
417 assert(VA.isRegLoc() && "Can only return in registers!");
418
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000419 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohman98ca4f22009-08-05 01:29:28 +0000420 Outs[i].Val, Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000421
Anton Korobeynikovdcb802c2009-05-03 13:00:11 +0000422 // Guarantee that all emitted copies are stuck together,
423 // avoiding something bad.
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000424 Flag = Chain.getValue(1);
425 }
426
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000427 unsigned Opc = (CallConv == CallingConv::MSP430_INTR ?
428 MSP430ISD::RETI_FLAG : MSP430ISD::RET_FLAG);
429
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000430 if (Flag.getNode())
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000431 return DAG.getNode(Opc, dl, MVT::Other, Chain, Flag);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000432
433 // Return Void
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000434 return DAG.getNode(Opc, dl, MVT::Other, Chain);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000435}
436
Anton Korobeynikov44288852009-05-03 13:07:31 +0000437/// LowerCCCCallTo - functions arguments are copied from virtual regs to
438/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
439/// TODO: sret.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000440SDValue
441MSP430TargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000442 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000443 bool isTailCall,
444 const SmallVectorImpl<ISD::OutputArg>
445 &Outs,
446 const SmallVectorImpl<ISD::InputArg> &Ins,
447 DebugLoc dl, SelectionDAG &DAG,
448 SmallVectorImpl<SDValue> &InVals) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000449 // Analyze operands of the call, assigning locations to each operand.
450 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000451 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
452 ArgLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000453
Dan Gohman98ca4f22009-08-05 01:29:28 +0000454 CCInfo.AnalyzeCallOperands(Outs, CC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000455
456 // Get a count of how many bytes are to be pushed on the stack.
457 unsigned NumBytes = CCInfo.getNextStackOffset();
458
459 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
460 getPointerTy(), true));
461
462 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
463 SmallVector<SDValue, 12> MemOpChains;
464 SDValue StackPtr;
465
466 // Walk the register/memloc assignments, inserting copies/loads.
467 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
468 CCValAssign &VA = ArgLocs[i];
469
Dan Gohman98ca4f22009-08-05 01:29:28 +0000470 SDValue Arg = Outs[i].Val;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000471
472 // Promote the value if needed.
473 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000474 default: llvm_unreachable("Unknown loc info!");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000475 case CCValAssign::Full: break;
476 case CCValAssign::SExt:
477 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
478 break;
479 case CCValAssign::ZExt:
480 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
481 break;
482 case CCValAssign::AExt:
483 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
484 break;
485 }
486
487 // Arguments that can be passed on register must be kept at RegsToPass
488 // vector
489 if (VA.isRegLoc()) {
490 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
491 } else {
492 assert(VA.isMemLoc());
493
494 if (StackPtr.getNode() == 0)
495 StackPtr = DAG.getCopyFromReg(Chain, dl, MSP430::SPW, getPointerTy());
496
497 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
498 StackPtr,
499 DAG.getIntPtrConstant(VA.getLocMemOffset()));
500
501
502 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
503 PseudoSourceValue::getStack(),
David Greene4d58b642010-02-15 16:56:22 +0000504 VA.getLocMemOffset(), false, false, 0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000505 }
506 }
507
508 // Transform all store nodes into one single node because all store nodes are
509 // independent of each other.
510 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Anton Korobeynikov44288852009-05-03 13:07:31 +0000512 &MemOpChains[0], MemOpChains.size());
513
514 // Build a sequence of copy-to-reg nodes chained together with token chain and
515 // flag operands which copy the outgoing args into registers. The InFlag in
516 // necessary since all emited instructions must be stuck together.
517 SDValue InFlag;
518 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
519 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
520 RegsToPass[i].second, InFlag);
521 InFlag = Chain.getValue(1);
522 }
523
524 // If the callee is a GlobalAddress node (quite common, every direct call is)
525 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
526 // Likewise ExternalSymbol -> TargetExternalSymbol.
527 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000528 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000529 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000531
532 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +0000533 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000534 SmallVector<SDValue, 8> Ops;
535 Ops.push_back(Chain);
536 Ops.push_back(Callee);
537
538 // Add argument registers to the end of the list so that they are
539 // known live into the call.
540 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
541 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
542 RegsToPass[i].second.getValueType()));
543
544 if (InFlag.getNode())
545 Ops.push_back(InFlag);
546
547 Chain = DAG.getNode(MSP430ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
548 InFlag = Chain.getValue(1);
549
550 // Create the CALLSEQ_END node.
551 Chain = DAG.getCALLSEQ_END(Chain,
552 DAG.getConstant(NumBytes, getPointerTy(), true),
553 DAG.getConstant(0, getPointerTy(), true),
554 InFlag);
555 InFlag = Chain.getValue(1);
556
557 // Handle result values, copying them out of physregs into vregs that we
558 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000559 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl,
560 DAG, InVals);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000561}
562
Dan Gohman98ca4f22009-08-05 01:29:28 +0000563/// LowerCallResult - Lower the result values of a call into the
564/// appropriate copies out of appropriate physical registers.
565///
566SDValue
Anton Korobeynikov44288852009-05-03 13:07:31 +0000567MSP430TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000568 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000569 const SmallVectorImpl<ISD::InputArg> &Ins,
570 DebugLoc dl, SelectionDAG &DAG,
571 SmallVectorImpl<SDValue> &InVals) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000572
573 // Assign locations to each value returned by this call.
574 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000575 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +0000576 RVLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000577
Dan Gohman98ca4f22009-08-05 01:29:28 +0000578 CCInfo.AnalyzeCallResult(Ins, RetCC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000579
580 // Copy all of the result registers out of their specified physreg.
581 for (unsigned i = 0; i != RVLocs.size(); ++i) {
582 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
583 RVLocs[i].getValVT(), InFlag).getValue(1);
584 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000585 InVals.push_back(Chain.getValue(0));
Anton Korobeynikov44288852009-05-03 13:07:31 +0000586 }
587
Dan Gohman98ca4f22009-08-05 01:29:28 +0000588 return Chain;
Anton Korobeynikov44288852009-05-03 13:07:31 +0000589}
590
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000591SDValue MSP430TargetLowering::LowerShifts(SDValue Op,
592 SelectionDAG &DAG) {
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000593 unsigned Opc = Op.getOpcode();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000594 SDNode* N = Op.getNode();
Owen Andersone50ed302009-08-10 22:56:29 +0000595 EVT VT = Op.getValueType();
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000596 DebugLoc dl = N->getDebugLoc();
597
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000598 // Expand non-constant shifts to loops:
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000599 if (!isa<ConstantSDNode>(N->getOperand(1)))
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000600 switch (Opc) {
601 default:
602 assert(0 && "Invalid shift opcode!");
603 case ISD::SHL:
604 return DAG.getNode(MSP430ISD::SHL, dl,
605 VT, N->getOperand(0), N->getOperand(1));
606 case ISD::SRA:
607 return DAG.getNode(MSP430ISD::SRA, dl,
608 VT, N->getOperand(0), N->getOperand(1));
609 case ISD::SRL:
610 return DAG.getNode(MSP430ISD::SRL, dl,
611 VT, N->getOperand(0), N->getOperand(1));
612 }
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000613
614 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
615
616 // Expand the stuff into sequence of shifts.
617 // FIXME: for some shift amounts this might be done better!
618 // E.g.: foo >> (8 + N) => sxt(swpb(foo)) >> N
619 SDValue Victim = N->getOperand(0);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000620
621 if (Opc == ISD::SRL && ShiftAmount) {
622 // Emit a special goodness here:
623 // srl A, 1 => clrc; rrc A
Anton Korobeynikovbf8ef3f2009-05-03 13:16:37 +0000624 Victim = DAG.getNode(MSP430ISD::RRC, dl, VT, Victim);
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000625 ShiftAmount -= 1;
626 }
627
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000628 while (ShiftAmount--)
Anton Korobeynikovaceb6202009-05-17 10:15:22 +0000629 Victim = DAG.getNode((Opc == ISD::SHL ? MSP430ISD::RLA : MSP430ISD::RRA),
Anton Korobeynikovea54c982009-05-03 13:13:17 +0000630 dl, VT, Victim);
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000631
632 return Victim;
633}
634
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000635SDValue MSP430TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
636 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
637 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
638
639 // Create the TargetGlobalAddress node, folding in the constant offset.
640 SDValue Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
641 return DAG.getNode(MSP430ISD::Wrapper, Op.getDebugLoc(),
642 getPointerTy(), Result);
643}
644
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000645SDValue MSP430TargetLowering::LowerExternalSymbol(SDValue Op,
646 SelectionDAG &DAG) {
647 DebugLoc dl = Op.getDebugLoc();
648 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
649 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
650
651 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
652}
653
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000654static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC,
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000655 ISD::CondCode CC,
656 DebugLoc dl, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000657 // FIXME: Handle bittests someday
658 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
659
660 // FIXME: Handle jump negative someday
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000661 MSP430CC::CondCodes TCC = MSP430CC::COND_INVALID;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000662 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000663 default: llvm_unreachable("Invalid integer condition!");
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000664 case ISD::SETEQ:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000665 TCC = MSP430CC::COND_E; // aka COND_Z
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000666 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000667 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000668 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000669 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000670 break;
671 case ISD::SETNE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000672 TCC = MSP430CC::COND_NE; // aka COND_NZ
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000673 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000674 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000675 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000676 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000677 break;
678 case ISD::SETULE:
679 std::swap(LHS, RHS); // FALLTHROUGH
680 case ISD::SETUGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000681 // Turn lhs u>= rhs with lhs constant into rhs u< lhs+1, this allows us to
682 // fold constant into instruction.
683 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
684 LHS = RHS;
685 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
686 TCC = MSP430CC::COND_LO;
687 break;
688 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000689 TCC = MSP430CC::COND_HS; // aka COND_C
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000690 break;
691 case ISD::SETUGT:
692 std::swap(LHS, RHS); // FALLTHROUGH
693 case ISD::SETULT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000694 // Turn lhs u< rhs with lhs constant into rhs u>= lhs+1, this allows us to
695 // fold constant into instruction.
696 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
697 LHS = RHS;
698 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
699 TCC = MSP430CC::COND_HS;
700 break;
701 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000702 TCC = MSP430CC::COND_LO; // aka COND_NC
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000703 break;
704 case ISD::SETLE:
705 std::swap(LHS, RHS); // FALLTHROUGH
706 case ISD::SETGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000707 // Turn lhs >= rhs with lhs constant into rhs < lhs+1, this allows us to
708 // fold constant into instruction.
709 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
710 LHS = RHS;
711 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
712 TCC = MSP430CC::COND_L;
713 break;
714 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000715 TCC = MSP430CC::COND_GE;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000716 break;
717 case ISD::SETGT:
718 std::swap(LHS, RHS); // FALLTHROUGH
719 case ISD::SETLT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000720 // Turn lhs < rhs with lhs constant into rhs >= lhs+1, this allows us to
721 // fold constant into instruction.
722 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
723 LHS = RHS;
724 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
725 TCC = MSP430CC::COND_GE;
726 break;
727 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000728 TCC = MSP430CC::COND_L;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000729 break;
730 }
731
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000732 TargetCC = DAG.getConstant(TCC, MVT::i8);
Owen Anderson825b72b2009-08-11 20:47:22 +0000733 return DAG.getNode(MSP430ISD::CMP, dl, MVT::Flag, LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000734}
735
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000736
737SDValue MSP430TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000738 SDValue Chain = Op.getOperand(0);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000739 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
740 SDValue LHS = Op.getOperand(2);
741 SDValue RHS = Op.getOperand(3);
742 SDValue Dest = Op.getOperand(4);
743 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000744
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000745 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000746 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000747
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000748 return DAG.getNode(MSP430ISD::BR_CC, dl, Op.getValueType(),
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000749 Chain, Dest, TargetCC, Flag);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000750}
751
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000752
753SDValue MSP430TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
754 SDValue LHS = Op.getOperand(0);
755 SDValue RHS = Op.getOperand(1);
756 DebugLoc dl = Op.getDebugLoc();
757
758 // If we are doing an AND and testing against zero, then the CMP
759 // will not be generated. The AND (or BIT) will generate the condition codes,
760 // but they are different from CMP.
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000761 // FIXME: since we're doing a post-processing, use a pseudoinstr here, so
762 // lowering & isel wouldn't diverge.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000763 bool andCC = false;
764 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
765 if (RHSC->isNullValue() && LHS.hasOneUse() &&
766 (LHS.getOpcode() == ISD::AND ||
767 (LHS.getOpcode() == ISD::TRUNCATE &&
768 LHS.getOperand(0).getOpcode() == ISD::AND))) {
769 andCC = true;
770 }
771 }
772 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
773 SDValue TargetCC;
774 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
775
776 // Get the condition codes directly from the status register, if its easy.
777 // Otherwise a branch will be generated. Note that the AND and BIT
778 // instructions generate different flags than CMP, the carry bit can be used
779 // for NE/EQ.
780 bool Invert = false;
781 bool Shift = false;
782 bool Convert = true;
783 switch (cast<ConstantSDNode>(TargetCC)->getZExtValue()) {
784 default:
785 Convert = false;
786 break;
787 case MSP430CC::COND_HS:
788 // Res = SRW & 1, no processing is required
789 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000790 case MSP430CC::COND_LO:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000791 // Res = ~(SRW & 1)
792 Invert = true;
793 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000794 case MSP430CC::COND_NE:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000795 if (andCC) {
796 // C = ~Z, thus Res = SRW & 1, no processing is required
797 } else {
798 // Res = (SRW >> 1) & 1
799 Shift = true;
800 }
801 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000802 case MSP430CC::COND_E:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000803 if (andCC) {
804 // C = ~Z, thus Res = ~(SRW & 1)
805 } else {
806 // Res = ~((SRW >> 1) & 1)
807 Shift = true;
808 }
809 Invert = true;
810 break;
811 }
812 EVT VT = Op.getValueType();
813 SDValue One = DAG.getConstant(1, VT);
814 if (Convert) {
815 SDValue SR = DAG.getCopyFromReg(DAG.getEntryNode(), dl, MSP430::SRW,
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000816 MVT::i16, Flag);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000817 if (Shift)
818 // FIXME: somewhere this is turned into a SRL, lower it MSP specific?
819 SR = DAG.getNode(ISD::SRA, dl, MVT::i16, SR, One);
820 SR = DAG.getNode(ISD::AND, dl, MVT::i16, SR, One);
821 if (Invert)
822 SR = DAG.getNode(ISD::XOR, dl, MVT::i16, SR, One);
823 return SR;
824 } else {
825 SDValue Zero = DAG.getConstant(0, VT);
826 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
827 SmallVector<SDValue, 4> Ops;
828 Ops.push_back(One);
829 Ops.push_back(Zero);
830 Ops.push_back(TargetCC);
831 Ops.push_back(Flag);
832 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
833 }
834}
835
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000836SDValue MSP430TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
837 SDValue LHS = Op.getOperand(0);
838 SDValue RHS = Op.getOperand(1);
839 SDValue TrueV = Op.getOperand(2);
840 SDValue FalseV = Op.getOperand(3);
841 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000842 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000843
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000844 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000845 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000846
Owen Anderson825b72b2009-08-11 20:47:22 +0000847 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000848 SmallVector<SDValue, 4> Ops;
849 Ops.push_back(TrueV);
850 Ops.push_back(FalseV);
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000851 Ops.push_back(TargetCC);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000852 Ops.push_back(Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000853
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000854 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000855}
856
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000857SDValue MSP430TargetLowering::LowerSIGN_EXTEND(SDValue Op,
858 SelectionDAG &DAG) {
859 SDValue Val = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000860 EVT VT = Op.getValueType();
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000861 DebugLoc dl = Op.getDebugLoc();
862
Owen Anderson825b72b2009-08-11 20:47:22 +0000863 assert(VT == MVT::i16 && "Only support i16 for now!");
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000864
865 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, VT,
866 DAG.getNode(ISD::ANY_EXTEND, dl, VT, Val),
867 DAG.getValueType(Val.getValueType()));
868}
869
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000870SDValue MSP430TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
871 MachineFunction &MF = DAG.getMachineFunction();
872 MSP430MachineFunctionInfo *FuncInfo = MF.getInfo<MSP430MachineFunctionInfo>();
873 int ReturnAddrIndex = FuncInfo->getRAIndex();
874
875 if (ReturnAddrIndex == 0) {
876 // Set up a frame object for the return address.
877 uint64_t SlotSize = TD->getPointerSize();
878 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
879 true, false);
880 FuncInfo->setRAIndex(ReturnAddrIndex);
881 }
882
883 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
884}
885
886SDValue MSP430TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
887 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
888 DebugLoc dl = Op.getDebugLoc();
889
890 if (Depth > 0) {
891 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
892 SDValue Offset =
893 DAG.getConstant(TD->getPointerSize(), MVT::i16);
894 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
895 DAG.getNode(ISD::ADD, dl, getPointerTy(),
896 FrameAddr, Offset),
David Greene4d58b642010-02-15 16:56:22 +0000897 NULL, 0, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000898 }
899
900 // Just load the return address.
901 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
902 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
David Greene4d58b642010-02-15 16:56:22 +0000903 RetAddrFI, NULL, 0, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000904}
905
906SDValue MSP430TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
907 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
908 MFI->setFrameAddressIsTaken(true);
909 EVT VT = Op.getValueType();
910 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
911 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
912 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
913 MSP430::FPW, VT);
914 while (Depth--)
David Greene4d58b642010-02-15 16:56:22 +0000915 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0,
916 false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000917 return FrameAddr;
918}
919
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000920/// getPostIndexedAddressParts - returns true by value, base pointer and
921/// offset pointer and addressing mode by reference if this node can be
922/// combined with a load / store to form a post-indexed load / store.
923bool MSP430TargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
924 SDValue &Base,
925 SDValue &Offset,
926 ISD::MemIndexedMode &AM,
927 SelectionDAG &DAG) const {
928
929 LoadSDNode *LD = cast<LoadSDNode>(N);
930 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
931 return false;
932
933 EVT VT = LD->getMemoryVT();
934 if (VT != MVT::i8 && VT != MVT::i16)
935 return false;
936
937 if (Op->getOpcode() != ISD::ADD)
938 return false;
939
940 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
941 uint64_t RHSC = RHS->getZExtValue();
942 if ((VT == MVT::i16 && RHSC != 2) ||
943 (VT == MVT::i8 && RHSC != 1))
944 return false;
945
946 Base = Op->getOperand(0);
947 Offset = DAG.getConstant(RHSC, VT);
948 AM = ISD::POST_INC;
949 return true;
950 }
951
952 return false;
953}
954
955
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000956const char *MSP430TargetLowering::getTargetNodeName(unsigned Opcode) const {
957 switch (Opcode) {
958 default: return NULL;
959 case MSP430ISD::RET_FLAG: return "MSP430ISD::RET_FLAG";
Anton Korobeynikov6bfcba72009-12-07 02:28:41 +0000960 case MSP430ISD::RETI_FLAG: return "MSP430ISD::RETI_FLAG";
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000961 case MSP430ISD::RRA: return "MSP430ISD::RRA";
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000962 case MSP430ISD::RLA: return "MSP430ISD::RLA";
963 case MSP430ISD::RRC: return "MSP430ISD::RRC";
Anton Korobeynikovb5612642009-05-03 13:07:54 +0000964 case MSP430ISD::CALL: return "MSP430ISD::CALL";
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000965 case MSP430ISD::Wrapper: return "MSP430ISD::Wrapper";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000966 case MSP430ISD::BR_CC: return "MSP430ISD::BR_CC";
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000967 case MSP430ISD::CMP: return "MSP430ISD::CMP";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000968 case MSP430ISD::SELECT_CC: return "MSP430ISD::SELECT_CC";
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000969 case MSP430ISD::SHL: return "MSP430ISD::SHL";
970 case MSP430ISD::SRA: return "MSP430ISD::SRA";
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000971 }
972}
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000973
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000974bool MSP430TargetLowering::isTruncateFree(const Type *Ty1,
975 const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000976 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000977 return false;
978
979 return (Ty1->getPrimitiveSizeInBits() > Ty2->getPrimitiveSizeInBits());
980}
981
982bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
983 if (!VT1.isInteger() || !VT2.isInteger())
984 return false;
985
986 return (VT1.getSizeInBits() > VT2.getSizeInBits());
987}
988
989bool MSP430TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
990 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000991 return 0 && Ty1->isIntegerTy(8) && Ty2->isIntegerTy(16);
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000992}
993
994bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
995 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
996 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
997}
998
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000999//===----------------------------------------------------------------------===//
1000// Other Lowering Code
1001//===----------------------------------------------------------------------===//
1002
1003MachineBasicBlock*
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001004MSP430TargetLowering::EmitShiftInstr(MachineInstr *MI,
1005 MachineBasicBlock *BB,
1006 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
1007 MachineFunction *F = BB->getParent();
1008 MachineRegisterInfo &RI = F->getRegInfo();
1009 DebugLoc dl = MI->getDebugLoc();
1010 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1011
1012 unsigned Opc;
1013 const TargetRegisterClass * RC;
1014 switch (MI->getOpcode()) {
1015 default:
1016 assert(0 && "Invalid shift opcode!");
1017 case MSP430::Shl8:
1018 Opc = MSP430::SHL8r1;
1019 RC = MSP430::GR8RegisterClass;
1020 break;
1021 case MSP430::Shl16:
1022 Opc = MSP430::SHL16r1;
1023 RC = MSP430::GR16RegisterClass;
1024 break;
1025 case MSP430::Sra8:
1026 Opc = MSP430::SAR8r1;
1027 RC = MSP430::GR8RegisterClass;
1028 break;
1029 case MSP430::Sra16:
1030 Opc = MSP430::SAR16r1;
1031 RC = MSP430::GR16RegisterClass;
1032 break;
1033 case MSP430::Srl8:
1034 Opc = MSP430::SAR8r1c;
1035 RC = MSP430::GR8RegisterClass;
1036 break;
1037 case MSP430::Srl16:
1038 Opc = MSP430::SAR16r1c;
1039 RC = MSP430::GR16RegisterClass;
1040 break;
1041 }
1042
1043 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1044 MachineFunction::iterator I = BB;
1045 ++I;
1046
1047 // Create loop block
1048 MachineBasicBlock *LoopBB = F->CreateMachineBasicBlock(LLVM_BB);
1049 MachineBasicBlock *RemBB = F->CreateMachineBasicBlock(LLVM_BB);
1050
1051 F->insert(I, LoopBB);
1052 F->insert(I, RemBB);
1053
1054 // Update machine-CFG edges by transferring all successors of the current
1055 // block to the block containing instructions after shift.
1056 RemBB->transferSuccessors(BB);
1057
1058 // Inform sdisel of the edge changes.
1059 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1060 SE = BB->succ_end(); SI != SE; ++SI)
1061 EM->insert(std::make_pair(*SI, RemBB));
1062
1063 // Add adges BB => LoopBB => RemBB, BB => RemBB, LoopBB => LoopBB
1064 BB->addSuccessor(LoopBB);
1065 BB->addSuccessor(RemBB);
1066 LoopBB->addSuccessor(RemBB);
1067 LoopBB->addSuccessor(LoopBB);
1068
1069 unsigned ShiftAmtReg = RI.createVirtualRegister(MSP430::GR8RegisterClass);
1070 unsigned ShiftAmtReg2 = RI.createVirtualRegister(MSP430::GR8RegisterClass);
1071 unsigned ShiftReg = RI.createVirtualRegister(RC);
1072 unsigned ShiftReg2 = RI.createVirtualRegister(RC);
1073 unsigned ShiftAmtSrcReg = MI->getOperand(2).getReg();
1074 unsigned SrcReg = MI->getOperand(1).getReg();
1075 unsigned DstReg = MI->getOperand(0).getReg();
1076
1077 // BB:
1078 // cmp 0, N
1079 // je RemBB
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +00001080 BuildMI(BB, dl, TII.get(MSP430::CMP8ri))
1081 .addReg(ShiftAmtSrcReg).addImm(0);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001082 BuildMI(BB, dl, TII.get(MSP430::JCC))
1083 .addMBB(RemBB)
1084 .addImm(MSP430CC::COND_E);
1085
1086 // LoopBB:
1087 // ShiftReg = phi [%SrcReg, BB], [%ShiftReg2, LoopBB]
1088 // ShiftAmt = phi [%N, BB], [%ShiftAmt2, LoopBB]
1089 // ShiftReg2 = shift ShiftReg
1090 // ShiftAmt2 = ShiftAmt - 1;
1091 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftReg)
1092 .addReg(SrcReg).addMBB(BB)
1093 .addReg(ShiftReg2).addMBB(LoopBB);
1094 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftAmtReg)
1095 .addReg(ShiftAmtSrcReg).addMBB(BB)
1096 .addReg(ShiftAmtReg2).addMBB(LoopBB);
1097 BuildMI(LoopBB, dl, TII.get(Opc), ShiftReg2)
1098 .addReg(ShiftReg);
1099 BuildMI(LoopBB, dl, TII.get(MSP430::SUB8ri), ShiftAmtReg2)
1100 .addReg(ShiftAmtReg).addImm(1);
1101 BuildMI(LoopBB, dl, TII.get(MSP430::JCC))
1102 .addMBB(LoopBB)
1103 .addImm(MSP430CC::COND_NE);
1104
1105 // RemBB:
1106 // DestReg = phi [%SrcReg, BB], [%ShiftReg, LoopBB]
1107 BuildMI(RemBB, dl, TII.get(MSP430::PHI), DstReg)
1108 .addReg(SrcReg).addMBB(BB)
1109 .addReg(ShiftReg2).addMBB(LoopBB);
1110
Anton Korobeynikov5fcf52c2010-01-14 22:09:11 +00001111 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001112 return RemBB;
1113}
1114
1115MachineBasicBlock*
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001116MSP430TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chengfb2e7522009-09-18 21:02:19 +00001117 MachineBasicBlock *BB,
1118 DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001119 unsigned Opc = MI->getOpcode();
1120
1121 if (Opc == MSP430::Shl8 || Opc == MSP430::Shl16 ||
1122 Opc == MSP430::Sra8 || Opc == MSP430::Sra16 ||
1123 Opc == MSP430::Srl8 || Opc == MSP430::Srl16)
1124 return EmitShiftInstr(MI, BB, EM);
1125
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001126 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1127 DebugLoc dl = MI->getDebugLoc();
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001128
1129 assert((Opc == MSP430::Select16 || Opc == MSP430::Select8) &&
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001130 "Unexpected instr type to insert");
1131
1132 // To "insert" a SELECT instruction, we actually have to insert the diamond
1133 // control-flow pattern. The incoming instruction knows the destination vreg
1134 // to set, the condition code register to branch on, the true/false values to
1135 // select between, and a branch opcode to use.
1136 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1137 MachineFunction::iterator I = BB;
1138 ++I;
1139
1140 // thisMBB:
1141 // ...
1142 // TrueVal = ...
1143 // cmpTY ccX, r1, r2
1144 // jCC copy1MBB
1145 // fallthrough --> copy0MBB
1146 MachineBasicBlock *thisMBB = BB;
1147 MachineFunction *F = BB->getParent();
1148 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1149 MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB);
1150 BuildMI(BB, dl, TII.get(MSP430::JCC))
1151 .addMBB(copy1MBB)
1152 .addImm(MI->getOperand(3).getImm());
1153 F->insert(I, copy0MBB);
1154 F->insert(I, copy1MBB);
Evan Chengce319102009-09-19 09:51:03 +00001155 // Inform sdisel of the edge changes.
1156 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(),
1157 SE = BB->succ_end(); SI != SE; ++SI)
1158 EM->insert(std::make_pair(*SI, copy1MBB));
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001159 // Update machine-CFG edges by transferring all successors of the current
1160 // block to the new block which will contain the Phi node for the select.
1161 copy1MBB->transferSuccessors(BB);
1162 // Next, add the true and fallthrough blocks as its successors.
1163 BB->addSuccessor(copy0MBB);
1164 BB->addSuccessor(copy1MBB);
1165
1166 // copy0MBB:
1167 // %FalseValue = ...
1168 // # fallthrough to copy1MBB
1169 BB = copy0MBB;
1170
1171 // Update machine-CFG edges
1172 BB->addSuccessor(copy1MBB);
1173
1174 // copy1MBB:
1175 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1176 // ...
1177 BB = copy1MBB;
1178 BuildMI(BB, dl, TII.get(MSP430::PHI),
1179 MI->getOperand(0).getReg())
1180 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1181 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
1182
1183 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
1184 return BB;
1185}