blob: 9daeb2aa115187ef071f8cab2988c5cf0c92586a [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 Korobeynikovc08163e2009-05-03 13:11:35 +000080 setStackPointerRegisterToSaveRestore(MSP430::SPW);
81 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +000082 setBooleanVectorContents(ZeroOrOneBooleanContent); // FIXME: Is this correct?
Anton Korobeynikovc08163e2009-05-03 13:11:35 +000083
Anton Korobeynikov06ac0822009-11-07 17:15:25 +000084 // We have post-incremented loads / stores.
Anton Korobeynikov6534f832009-11-07 17:15:06 +000085 setIndexedLoadAction(ISD::POST_INC, MVT::i8, Legal);
86 setIndexedLoadAction(ISD::POST_INC, MVT::i16, Legal);
87
88 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
89 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
90 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
91 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +000092 setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Expand);
Anton Korobeynikov36b6e532009-05-03 13:06:03 +000093
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000094 // We don't have any truncstores
Owen Anderson825b72b2009-08-11 20:47:22 +000095 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000096
Owen Anderson825b72b2009-08-11 20:47:22 +000097 setOperationAction(ISD::SRA, MVT::i8, Custom);
98 setOperationAction(ISD::SHL, MVT::i8, Custom);
99 setOperationAction(ISD::SRL, MVT::i8, Custom);
100 setOperationAction(ISD::SRA, MVT::i16, Custom);
101 setOperationAction(ISD::SHL, MVT::i16, Custom);
102 setOperationAction(ISD::SRL, MVT::i16, Custom);
103 setOperationAction(ISD::ROTL, MVT::i8, Expand);
104 setOperationAction(ISD::ROTR, MVT::i8, Expand);
105 setOperationAction(ISD::ROTL, MVT::i16, Expand);
106 setOperationAction(ISD::ROTR, MVT::i16, Expand);
107 setOperationAction(ISD::GlobalAddress, MVT::i16, Custom);
108 setOperationAction(ISD::ExternalSymbol, MVT::i16, Custom);
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000109 setOperationAction(ISD::BlockAddress, MVT::i16, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000110 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000111 setOperationAction(ISD::BR_CC, MVT::i8, Custom);
112 setOperationAction(ISD::BR_CC, MVT::i16, Custom);
113 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000114 setOperationAction(ISD::SETCC, MVT::i8, Custom);
115 setOperationAction(ISD::SETCC, MVT::i16, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000116 setOperationAction(ISD::SELECT, MVT::i8, Expand);
117 setOperationAction(ISD::SELECT, MVT::i16, Expand);
118 setOperationAction(ISD::SELECT_CC, MVT::i8, Custom);
119 setOperationAction(ISD::SELECT_CC, MVT::i16, Custom);
120 setOperationAction(ISD::SIGN_EXTEND, MVT::i16, Custom);
Anton Korobeynikov379a0872009-08-25 17:00:23 +0000121 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i8, Expand);
122 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i16, Expand);
Anton Korobeynikov8725bd22009-05-03 13:14:25 +0000123
Owen Anderson825b72b2009-08-11 20:47:22 +0000124 setOperationAction(ISD::CTTZ, MVT::i8, Expand);
125 setOperationAction(ISD::CTTZ, MVT::i16, Expand);
126 setOperationAction(ISD::CTLZ, MVT::i8, Expand);
127 setOperationAction(ISD::CTLZ, MVT::i16, Expand);
128 setOperationAction(ISD::CTPOP, MVT::i8, Expand);
129 setOperationAction(ISD::CTPOP, MVT::i16, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000130
Owen Anderson825b72b2009-08-11 20:47:22 +0000131 setOperationAction(ISD::SHL_PARTS, MVT::i8, Expand);
132 setOperationAction(ISD::SHL_PARTS, MVT::i16, Expand);
133 setOperationAction(ISD::SRL_PARTS, MVT::i8, Expand);
134 setOperationAction(ISD::SRL_PARTS, MVT::i16, Expand);
135 setOperationAction(ISD::SRA_PARTS, MVT::i8, Expand);
136 setOperationAction(ISD::SRA_PARTS, MVT::i16, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000137
Owen Anderson825b72b2009-08-11 20:47:22 +0000138 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Eli Friedmane4ce8802009-07-17 07:28:06 +0000139
Anton Korobeynikov8725bd22009-05-03 13:14:25 +0000140 // FIXME: Implement efficiently multiplication by a constant
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000141 setOperationAction(ISD::MUL, MVT::i8, Expand);
142 setOperationAction(ISD::MULHS, MVT::i8, Expand);
143 setOperationAction(ISD::MULHU, MVT::i8, Expand);
144 setOperationAction(ISD::SMUL_LOHI, MVT::i8, Expand);
145 setOperationAction(ISD::UMUL_LOHI, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000146 setOperationAction(ISD::MUL, MVT::i16, Expand);
147 setOperationAction(ISD::MULHS, MVT::i16, Expand);
148 setOperationAction(ISD::MULHU, MVT::i16, Expand);
149 setOperationAction(ISD::SMUL_LOHI, MVT::i16, Expand);
150 setOperationAction(ISD::UMUL_LOHI, MVT::i16, Expand);
Anton Korobeynikovf2f54022009-05-03 13:18:33 +0000151
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000152 setOperationAction(ISD::UDIV, MVT::i8, Expand);
153 setOperationAction(ISD::UDIVREM, MVT::i8, Expand);
154 setOperationAction(ISD::UREM, MVT::i8, Expand);
155 setOperationAction(ISD::SDIV, MVT::i8, Expand);
156 setOperationAction(ISD::SDIVREM, MVT::i8, Expand);
157 setOperationAction(ISD::SREM, MVT::i8, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000158 setOperationAction(ISD::UDIV, MVT::i16, Expand);
159 setOperationAction(ISD::UDIVREM, MVT::i16, Expand);
160 setOperationAction(ISD::UREM, MVT::i16, Expand);
161 setOperationAction(ISD::SDIV, MVT::i16, Expand);
162 setOperationAction(ISD::SDIVREM, MVT::i16, Expand);
163 setOperationAction(ISD::SREM, MVT::i16, Expand);
Anton Korobeynikovb2de1ea2009-12-07 02:27:08 +0000164
165 // Libcalls names.
166 if (HWMultMode == HWMultIntr) {
167 setLibcallName(RTLIB::MUL_I8, "__mulqi3hw");
168 setLibcallName(RTLIB::MUL_I16, "__mulhi3hw");
169 } else if (HWMultMode == HWMultNoIntr) {
170 setLibcallName(RTLIB::MUL_I8, "__mulqi3hw_noint");
171 setLibcallName(RTLIB::MUL_I16, "__mulhi3hw_noint");
172 }
Eli Friedmanfc5d3052011-05-06 20:34:06 +0000173
174 setMinFunctionAlignment(1);
175 setPrefFunctionAlignment(2);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000176}
177
Dan Gohmand858e902010-04-17 15:26:15 +0000178SDValue MSP430TargetLowering::LowerOperation(SDValue Op,
179 SelectionDAG &DAG) const {
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 Korobeynikov69d5b482010-05-01 12:04:32 +0000185 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000186 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000187 case ISD::SETCC: return LowerSETCC(Op, DAG);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000188 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
189 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000190 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000191 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
192 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000193 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000194 llvm_unreachable("unimplemented operand");
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000195 return SDValue();
196 }
197}
198
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000199//===----------------------------------------------------------------------===//
Anton Korobeynikovcd761282009-08-26 13:44:29 +0000200// MSP430 Inline Assembly Support
201//===----------------------------------------------------------------------===//
202
203/// getConstraintType - Given a constraint letter, return the type of
204/// constraint it is for this target.
205TargetLowering::ConstraintType
206MSP430TargetLowering::getConstraintType(const std::string &Constraint) const {
207 if (Constraint.size() == 1) {
208 switch (Constraint[0]) {
209 case 'r':
210 return C_RegisterClass;
211 default:
212 break;
213 }
214 }
215 return TargetLowering::getConstraintType(Constraint);
216}
217
218std::pair<unsigned, const TargetRegisterClass*>
219MSP430TargetLowering::
220getRegForInlineAsmConstraint(const std::string &Constraint,
221 EVT VT) const {
222 if (Constraint.size() == 1) {
223 // GCC Constraint Letters
224 switch (Constraint[0]) {
225 default: break;
226 case 'r': // GENERAL_REGS
227 if (VT == MVT::i8)
228 return std::make_pair(0U, MSP430::GR8RegisterClass);
229
230 return std::make_pair(0U, MSP430::GR16RegisterClass);
231 }
232 }
233
234 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
235}
236
237//===----------------------------------------------------------------------===//
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000238// Calling Convention Implementation
239//===----------------------------------------------------------------------===//
240
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000241#include "MSP430GenCallingConv.inc"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000242
Dan Gohman98ca4f22009-08-05 01:29:28 +0000243SDValue
244MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000245 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000246 bool isVarArg,
247 const SmallVectorImpl<ISD::InputArg>
248 &Ins,
249 DebugLoc dl,
250 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000251 SmallVectorImpl<SDValue> &InVals)
252 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000253
254 switch (CallConv) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000255 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000256 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000257 case CallingConv::C:
258 case CallingConv::Fast:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000259 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000260 case CallingConv::MSP430_INTR:
261 if (Ins.empty())
262 return Chain;
263 else {
Chris Lattner75361b62010-04-07 22:58:41 +0000264 report_fatal_error("ISRs cannot have arguments");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000265 return SDValue();
266 }
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000267 }
268}
269
Dan Gohman98ca4f22009-08-05 01:29:28 +0000270SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000271MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000272 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000273 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000274 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000275 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000276 const SmallVectorImpl<ISD::InputArg> &Ins,
277 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000278 SmallVectorImpl<SDValue> &InVals) const {
Evan Cheng0c439eb2010-01-27 00:07:07 +0000279 // MSP430 target does not yet support tail call optimization.
280 isTailCall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000281
282 switch (CallConv) {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000283 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000284 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000285 case CallingConv::Fast:
286 case CallingConv::C:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000287 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
Dan Gohmanc9403652010-07-07 15:54:55 +0000288 Outs, OutVals, Ins, dl, DAG, InVals);
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000289 case CallingConv::MSP430_INTR:
Chris Lattner75361b62010-04-07 22:58:41 +0000290 report_fatal_error("ISRs cannot be called directly");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000291 return SDValue();
Anton Korobeynikov44288852009-05-03 13:07:31 +0000292 }
293}
294
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000295/// LowerCCCArguments - transform physical registers into virtual registers and
296/// generate load operations for arguments places on the stack.
297// FIXME: struct return stuff
298// FIXME: varargs
Dan Gohman98ca4f22009-08-05 01:29:28 +0000299SDValue
300MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000301 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000302 bool isVarArg,
303 const SmallVectorImpl<ISD::InputArg>
304 &Ins,
305 DebugLoc dl,
306 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000307 SmallVectorImpl<SDValue> &InVals)
308 const {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000309 MachineFunction &MF = DAG.getMachineFunction();
310 MachineFrameInfo *MFI = MF.getFrameInfo();
311 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000312
313 // Assign locations to all of the incoming arguments.
314 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +0000315 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
316 getTargetMachine(), ArgLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +0000317 CCInfo.AnalyzeFormalArguments(Ins, CC_MSP430);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000318
319 assert(!isVarArg && "Varargs not supported yet");
320
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000321 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
322 CCValAssign &VA = ArgLocs[i];
323 if (VA.isRegLoc()) {
324 // Arguments passed in registers
Owen Andersone50ed302009-08-10 22:56:29 +0000325 EVT RegVT = VA.getLocVT();
Owen Anderson825b72b2009-08-11 20:47:22 +0000326 switch (RegVT.getSimpleVT().SimpleTy) {
Owen Anderson95771af2011-02-25 21:41:48 +0000327 default:
Torok Edwin804e0fe2009-07-08 19:04:27 +0000328 {
Torok Edwindac237e2009-07-08 20:53:28 +0000329#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000330 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000331 << RegVT.getSimpleVT().SimpleTy << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000332#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000333 llvm_unreachable(0);
Torok Edwin804e0fe2009-07-08 19:04:27 +0000334 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 case MVT::i16:
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000336 unsigned VReg =
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000337 RegInfo.createVirtualRegister(MSP430::GR16RegisterClass);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000338 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000339 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000340
341 // If this is an 8-bit value, it is really passed promoted to 16
342 // bits. Insert an assert[sz]ext to capture this, then truncate to the
343 // right size.
344 if (VA.getLocInfo() == CCValAssign::SExt)
345 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
346 DAG.getValueType(VA.getValVT()));
347 else if (VA.getLocInfo() == CCValAssign::ZExt)
348 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
349 DAG.getValueType(VA.getValVT()));
350
351 if (VA.getLocInfo() != CCValAssign::Full)
352 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
353
Dan Gohman98ca4f22009-08-05 01:29:28 +0000354 InVals.push_back(ArgValue);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000355 }
356 } else {
357 // Sanity check
358 assert(VA.isMemLoc());
359 // Load the argument to a virtual register
360 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
361 if (ObjSize > 2) {
Chris Lattner4437ae22009-08-23 07:05:07 +0000362 errs() << "LowerFormalArguments Unhandled argument type: "
Duncan Sands1440e8b2010-11-03 11:35:31 +0000363 << EVT(VA.getLocVT()).getEVTString()
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000364 << "\n";
365 }
366 // Create the frame index object for this incoming parameter...
Evan Chenged2ae132010-07-03 00:40:23 +0000367 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000368
369 // Create the SelectionDAG nodes corresponding to a load
370 //from this parameter
Owen Anderson825b72b2009-08-11 20:47:22 +0000371 SDValue FIN = DAG.getFrameIndex(FI, MVT::i16);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000372 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000373 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000374 false, false, false, 0));
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000375 }
376 }
377
Dan Gohman98ca4f22009-08-05 01:29:28 +0000378 return Chain;
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000379}
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000380
Dan Gohman98ca4f22009-08-05 01:29:28 +0000381SDValue
382MSP430TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000383 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000384 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000385 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000386 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000387
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()) {
Chris Lattner75361b62010-04-07 22:58:41 +0000393 report_fatal_error("ISRs cannot return any value");
Anton Korobeynikove662f7a2009-12-07 02:27:53 +0000394 return SDValue();
395 }
396
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000397 // CCState - Info about the registers and stack slot.
Eric Christopher471e4222011-06-08 23:55:35 +0000398 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
399 getTargetMachine(), 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 Gohmanc9403652010-07-07 15:54:55 +0000420 OutVals[i], 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,
Dan Gohmanc9403652010-07-07 15:54:55 +0000446 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000447 const SmallVectorImpl<ISD::InputArg> &Ins,
448 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000449 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000450 // Analyze operands of the call, assigning locations to each operand.
451 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +0000452 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
453 getTargetMachine(), ArgLocs, *DAG.getContext());
Anton Korobeynikov44288852009-05-03 13:07:31 +0000454
Dan Gohman98ca4f22009-08-05 01:29:28 +0000455 CCInfo.AnalyzeCallOperands(Outs, CC_MSP430);
Anton Korobeynikov44288852009-05-03 13:07:31 +0000456
457 // Get a count of how many bytes are to be pushed on the stack.
458 unsigned NumBytes = CCInfo.getNextStackOffset();
459
460 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
461 getPointerTy(), true));
462
463 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
464 SmallVector<SDValue, 12> MemOpChains;
465 SDValue StackPtr;
466
467 // Walk the register/memloc assignments, inserting copies/loads.
468 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
469 CCValAssign &VA = ArgLocs[i];
470
Dan Gohmanc9403652010-07-07 15:54:55 +0000471 SDValue Arg = OutVals[i];
Anton Korobeynikov44288852009-05-03 13:07:31 +0000472
473 // Promote the value if needed.
474 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000475 default: llvm_unreachable("Unknown loc info!");
Anton Korobeynikov44288852009-05-03 13:07:31 +0000476 case CCValAssign::Full: break;
477 case CCValAssign::SExt:
478 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
479 break;
480 case CCValAssign::ZExt:
481 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
482 break;
483 case CCValAssign::AExt:
484 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
485 break;
486 }
487
488 // Arguments that can be passed on register must be kept at RegsToPass
489 // vector
490 if (VA.isRegLoc()) {
491 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
492 } else {
493 assert(VA.isMemLoc());
494
495 if (StackPtr.getNode() == 0)
496 StackPtr = DAG.getCopyFromReg(Chain, dl, MSP430::SPW, getPointerTy());
497
498 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
499 StackPtr,
500 DAG.getIntPtrConstant(VA.getLocMemOffset()));
501
502
503 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000504 MachinePointerInfo(),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
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000516 // necessary since all emitted instructions must be stuck together.
Anton Korobeynikov44288852009-05-03 13:07:31 +0000517 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))
Devang Patel0d881da2010-07-06 22:08:15 +0000528 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, 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.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000533 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
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,
Dan Gohmand858e902010-04-17 15:26:15 +0000571 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov44288852009-05-03 13:07:31 +0000572
573 // Assign locations to each value returned by this call.
574 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +0000575 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
576 getTargetMachine(), 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,
Dan Gohmand858e902010-04-17 15:26:15 +0000592 SelectionDAG &DAG) const {
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
Dan Gohmand858e902010-04-17 15:26:15 +0000635SDValue MSP430TargetLowering::LowerGlobalAddress(SDValue Op,
636 SelectionDAG &DAG) const {
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000637 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
638 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
639
640 // Create the TargetGlobalAddress node, folding in the constant offset.
Devang Patel0d881da2010-07-06 22:08:15 +0000641 SDValue Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
642 getPointerTy(), Offset);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000643 return DAG.getNode(MSP430ISD::Wrapper, Op.getDebugLoc(),
644 getPointerTy(), Result);
645}
646
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000647SDValue MSP430TargetLowering::LowerExternalSymbol(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000648 SelectionDAG &DAG) const {
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000649 DebugLoc dl = Op.getDebugLoc();
650 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
651 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
652
653 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
654}
655
Anton Korobeynikov69d5b482010-05-01 12:04:32 +0000656SDValue MSP430TargetLowering::LowerBlockAddress(SDValue Op,
657 SelectionDAG &DAG) const {
658 DebugLoc dl = Op.getDebugLoc();
659 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
660 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), /*isTarget=*/true);
661
662 return DAG.getNode(MSP430ISD::Wrapper, dl, getPointerTy(), Result);;
663}
664
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000665static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, SDValue &TargetCC,
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000666 ISD::CondCode CC,
667 DebugLoc dl, SelectionDAG &DAG) {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000668 // FIXME: Handle bittests someday
669 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
670
671 // FIXME: Handle jump negative someday
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000672 MSP430CC::CondCodes TCC = MSP430CC::COND_INVALID;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000673 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000674 default: llvm_unreachable("Invalid integer condition!");
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000675 case ISD::SETEQ:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000676 TCC = MSP430CC::COND_E; // aka COND_Z
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000677 // Minor optimization: if LHS is a constant, swap operands, then the
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000678 // constant can be folded into comparison.
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +0000679 if (LHS.getOpcode() == ISD::Constant)
Anton Korobeynikov1722f062009-11-22 01:14:08 +0000680 std::swap(LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000681 break;
682 case ISD::SETNE:
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000683 TCC = MSP430CC::COND_NE; // aka COND_NZ
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::SETULE:
690 std::swap(LHS, RHS); // FALLTHROUGH
691 case ISD::SETUGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000692 // Turn lhs u>= rhs with lhs constant into rhs u< lhs+1, this allows us to
693 // fold constant into instruction.
694 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
695 LHS = RHS;
696 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
697 TCC = MSP430CC::COND_LO;
698 break;
699 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000700 TCC = MSP430CC::COND_HS; // aka COND_C
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000701 break;
702 case ISD::SETUGT:
703 std::swap(LHS, RHS); // FALLTHROUGH
704 case ISD::SETULT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000705 // Turn lhs u< rhs with lhs constant into rhs u>= lhs+1, this allows us to
706 // fold constant into instruction.
707 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
708 LHS = RHS;
709 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
710 TCC = MSP430CC::COND_HS;
711 break;
712 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000713 TCC = MSP430CC::COND_LO; // aka COND_NC
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000714 break;
715 case ISD::SETLE:
716 std::swap(LHS, RHS); // FALLTHROUGH
717 case ISD::SETGE:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000718 // Turn lhs >= rhs with lhs constant into rhs < lhs+1, this allows us to
719 // fold constant into instruction.
720 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
721 LHS = RHS;
722 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
723 TCC = MSP430CC::COND_L;
724 break;
725 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000726 TCC = MSP430CC::COND_GE;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000727 break;
728 case ISD::SETGT:
729 std::swap(LHS, RHS); // FALLTHROUGH
730 case ISD::SETLT:
Anton Korobeynikov0c1ba912010-01-15 21:18:02 +0000731 // Turn lhs < rhs with lhs constant into rhs >= lhs+1, this allows us to
732 // fold constant into instruction.
733 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
734 LHS = RHS;
735 RHS = DAG.getConstant(C->getSExtValue() + 1, C->getValueType(0));
736 TCC = MSP430CC::COND_GE;
737 break;
738 }
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000739 TCC = MSP430CC::COND_L;
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000740 break;
741 }
742
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000743 TargetCC = DAG.getConstant(TCC, MVT::i8);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000744 return DAG.getNode(MSP430ISD::CMP, dl, MVT::Glue, LHS, RHS);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000745}
746
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000747
Dan Gohmand858e902010-04-17 15:26:15 +0000748SDValue MSP430TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000749 SDValue Chain = Op.getOperand(0);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000750 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
751 SDValue LHS = Op.getOperand(2);
752 SDValue RHS = Op.getOperand(3);
753 SDValue Dest = Op.getOperand(4);
754 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000755
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000756 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000757 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000758
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000759 return DAG.getNode(MSP430ISD::BR_CC, dl, Op.getValueType(),
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000760 Chain, Dest, TargetCC, Flag);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000761}
762
Dan Gohmand858e902010-04-17 15:26:15 +0000763SDValue MSP430TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000764 SDValue LHS = Op.getOperand(0);
765 SDValue RHS = Op.getOperand(1);
766 DebugLoc dl = Op.getDebugLoc();
767
768 // If we are doing an AND and testing against zero, then the CMP
769 // will not be generated. The AND (or BIT) will generate the condition codes,
770 // but they are different from CMP.
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000771 // FIXME: since we're doing a post-processing, use a pseudoinstr here, so
772 // lowering & isel wouldn't diverge.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000773 bool andCC = false;
774 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
775 if (RHSC->isNullValue() && LHS.hasOneUse() &&
776 (LHS.getOpcode() == ISD::AND ||
777 (LHS.getOpcode() == ISD::TRUNCATE &&
778 LHS.getOperand(0).getOpcode() == ISD::AND))) {
779 andCC = true;
780 }
781 }
782 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
783 SDValue TargetCC;
784 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
785
786 // Get the condition codes directly from the status register, if its easy.
787 // Otherwise a branch will be generated. Note that the AND and BIT
788 // instructions generate different flags than CMP, the carry bit can be used
789 // for NE/EQ.
790 bool Invert = false;
791 bool Shift = false;
792 bool Convert = true;
793 switch (cast<ConstantSDNode>(TargetCC)->getZExtValue()) {
794 default:
795 Convert = false;
796 break;
797 case MSP430CC::COND_HS:
798 // Res = SRW & 1, no processing is required
799 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000800 case MSP430CC::COND_LO:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000801 // Res = ~(SRW & 1)
802 Invert = true;
803 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000804 case MSP430CC::COND_NE:
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000805 if (andCC) {
806 // C = ~Z, thus Res = SRW & 1, no processing is required
807 } else {
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000808 // Res = ~((SRW >> 1) & 1)
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000809 Shift = true;
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000810 Invert = true;
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000811 }
812 break;
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000813 case MSP430CC::COND_E:
Anton Korobeynikov455080f2010-02-21 12:28:58 +0000814 Shift = true;
815 // C = ~Z for AND instruction, thus we can put Res = ~(SRW & 1), however,
816 // Res = (SRW >> 1) & 1 is 1 word shorter.
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000817 break;
818 }
819 EVT VT = Op.getValueType();
820 SDValue One = DAG.getConstant(1, VT);
821 if (Convert) {
822 SDValue SR = DAG.getCopyFromReg(DAG.getEntryNode(), dl, MSP430::SRW,
Anton Korobeynikovcb50e0b2010-01-15 21:18:18 +0000823 MVT::i16, Flag);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000824 if (Shift)
825 // FIXME: somewhere this is turned into a SRL, lower it MSP specific?
826 SR = DAG.getNode(ISD::SRA, dl, MVT::i16, SR, One);
827 SR = DAG.getNode(ISD::AND, dl, MVT::i16, SR, One);
828 if (Invert)
829 SR = DAG.getNode(ISD::XOR, dl, MVT::i16, SR, One);
830 return SR;
831 } else {
832 SDValue Zero = DAG.getConstant(0, VT);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000833 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Anton Korobeynikov8d1ffbd2009-12-11 23:01:29 +0000834 SmallVector<SDValue, 4> Ops;
835 Ops.push_back(One);
836 Ops.push_back(Zero);
837 Ops.push_back(TargetCC);
838 Ops.push_back(Flag);
839 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
840 }
841}
842
Dan Gohmand858e902010-04-17 15:26:15 +0000843SDValue MSP430TargetLowering::LowerSELECT_CC(SDValue Op,
844 SelectionDAG &DAG) const {
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000845 SDValue LHS = Op.getOperand(0);
846 SDValue RHS = Op.getOperand(1);
847 SDValue TrueV = Op.getOperand(2);
848 SDValue FalseV = Op.getOperand(3);
849 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000850 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000851
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000852 SDValue TargetCC;
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000853 SDValue Flag = EmitCMP(LHS, RHS, TargetCC, CC, dl, DAG);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000854
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000855 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000856 SmallVector<SDValue, 4> Ops;
857 Ops.push_back(TrueV);
858 Ops.push_back(FalseV);
Anton Korobeynikov3926fb62009-10-21 19:16:49 +0000859 Ops.push_back(TargetCC);
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000860 Ops.push_back(Flag);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000861
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000862 return DAG.getNode(MSP430ISD::SELECT_CC, dl, VTs, &Ops[0], Ops.size());
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000863}
864
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000865SDValue MSP430TargetLowering::LowerSIGN_EXTEND(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000866 SelectionDAG &DAG) const {
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000867 SDValue Val = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +0000868 EVT VT = Op.getValueType();
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000869 DebugLoc dl = Op.getDebugLoc();
870
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 assert(VT == MVT::i16 && "Only support i16 for now!");
Anton Korobeynikovb78e2142009-05-03 13:17:49 +0000872
873 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, VT,
874 DAG.getNode(ISD::ANY_EXTEND, dl, VT, Val),
875 DAG.getValueType(Val.getValueType()));
876}
877
Dan Gohmand858e902010-04-17 15:26:15 +0000878SDValue
879MSP430TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000880 MachineFunction &MF = DAG.getMachineFunction();
881 MSP430MachineFunctionInfo *FuncInfo = MF.getInfo<MSP430MachineFunctionInfo>();
882 int ReturnAddrIndex = FuncInfo->getRAIndex();
883
884 if (ReturnAddrIndex == 0) {
885 // Set up a frame object for the return address.
886 uint64_t SlotSize = TD->getPointerSize();
887 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +0000888 true);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000889 FuncInfo->setRAIndex(ReturnAddrIndex);
890 }
891
892 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
893}
894
Dan Gohmand858e902010-04-17 15:26:15 +0000895SDValue MSP430TargetLowering::LowerRETURNADDR(SDValue Op,
896 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +0000897 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
898 MFI->setReturnAddressIsTaken(true);
899
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000900 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
901 DebugLoc dl = Op.getDebugLoc();
902
903 if (Depth > 0) {
904 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
905 SDValue Offset =
906 DAG.getConstant(TD->getPointerSize(), MVT::i16);
907 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
908 DAG.getNode(ISD::ADD, dl, getPointerTy(),
909 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000910 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000911 }
912
913 // Just load the return address.
914 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
915 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000916 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000917}
918
Dan Gohmand858e902010-04-17 15:26:15 +0000919SDValue MSP430TargetLowering::LowerFRAMEADDR(SDValue Op,
920 SelectionDAG &DAG) const {
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000921 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
922 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +0000923
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000924 EVT VT = Op.getValueType();
925 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
926 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
927 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
928 MSP430::FPW, VT);
929 while (Depth--)
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000930 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
931 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000932 false, false, false, 0);
Anton Korobeynikov06ccca52009-12-07 02:28:10 +0000933 return FrameAddr;
934}
935
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000936/// getPostIndexedAddressParts - returns true by value, base pointer and
937/// offset pointer and addressing mode by reference if this node can be
938/// combined with a load / store to form a post-indexed load / store.
939bool MSP430TargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
940 SDValue &Base,
941 SDValue &Offset,
942 ISD::MemIndexedMode &AM,
943 SelectionDAG &DAG) const {
944
945 LoadSDNode *LD = cast<LoadSDNode>(N);
946 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
947 return false;
948
949 EVT VT = LD->getMemoryVT();
950 if (VT != MVT::i8 && VT != MVT::i16)
951 return false;
952
953 if (Op->getOpcode() != ISD::ADD)
954 return false;
955
956 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
957 uint64_t RHSC = RHS->getZExtValue();
958 if ((VT == MVT::i16 && RHSC != 2) ||
959 (VT == MVT::i8 && RHSC != 1))
960 return false;
961
962 Base = Op->getOperand(0);
963 Offset = DAG.getConstant(RHSC, VT);
964 AM = ISD::POST_INC;
965 return true;
966 }
967
968 return false;
969}
970
971
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000972const char *MSP430TargetLowering::getTargetNodeName(unsigned Opcode) const {
973 switch (Opcode) {
974 default: return NULL;
975 case MSP430ISD::RET_FLAG: return "MSP430ISD::RET_FLAG";
Anton Korobeynikov6bfcba72009-12-07 02:28:41 +0000976 case MSP430ISD::RETI_FLAG: return "MSP430ISD::RETI_FLAG";
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000977 case MSP430ISD::RRA: return "MSP430ISD::RRA";
Anton Korobeynikove699d0f2009-05-03 13:16:17 +0000978 case MSP430ISD::RLA: return "MSP430ISD::RLA";
979 case MSP430ISD::RRC: return "MSP430ISD::RRC";
Anton Korobeynikovb5612642009-05-03 13:07:54 +0000980 case MSP430ISD::CALL: return "MSP430ISD::CALL";
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000981 case MSP430ISD::Wrapper: return "MSP430ISD::Wrapper";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000982 case MSP430ISD::BR_CC: return "MSP430ISD::BR_CC";
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000983 case MSP430ISD::CMP: return "MSP430ISD::CMP";
Anton Korobeynikov1bb8cd72009-05-03 13:19:09 +0000984 case MSP430ISD::SELECT_CC: return "MSP430ISD::SELECT_CC";
Anton Korobeynikov2625de32009-12-12 18:55:37 +0000985 case MSP430ISD::SHL: return "MSP430ISD::SHL";
986 case MSP430ISD::SRA: return "MSP430ISD::SRA";
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000987 }
988}
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000989
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000990bool MSP430TargetLowering::isTruncateFree(Type *Ty1,
991 Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000992 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +0000993 return false;
994
995 return (Ty1->getPrimitiveSizeInBits() > Ty2->getPrimitiveSizeInBits());
996}
997
998bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
999 if (!VT1.isInteger() || !VT2.isInteger())
1000 return false;
1001
1002 return (VT1.getSizeInBits() > VT2.getSizeInBits());
1003}
1004
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001005bool MSP430TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +00001006 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001007 return 0 && Ty1->isIntegerTy(8) && Ty2->isIntegerTy(16);
Anton Korobeynikov9afb7c52010-01-15 21:19:43 +00001008}
1009
1010bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
1011 // MSP430 implicitly zero-extends 8-bit results in 16-bit registers.
1012 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16;
1013}
1014
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001015//===----------------------------------------------------------------------===//
1016// Other Lowering Code
1017//===----------------------------------------------------------------------===//
1018
1019MachineBasicBlock*
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001020MSP430TargetLowering::EmitShiftInstr(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001021 MachineBasicBlock *BB) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001022 MachineFunction *F = BB->getParent();
1023 MachineRegisterInfo &RI = F->getRegInfo();
1024 DebugLoc dl = MI->getDebugLoc();
1025 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1026
1027 unsigned Opc;
1028 const TargetRegisterClass * RC;
1029 switch (MI->getOpcode()) {
1030 default:
1031 assert(0 && "Invalid shift opcode!");
1032 case MSP430::Shl8:
1033 Opc = MSP430::SHL8r1;
1034 RC = MSP430::GR8RegisterClass;
1035 break;
1036 case MSP430::Shl16:
1037 Opc = MSP430::SHL16r1;
1038 RC = MSP430::GR16RegisterClass;
1039 break;
1040 case MSP430::Sra8:
1041 Opc = MSP430::SAR8r1;
1042 RC = MSP430::GR8RegisterClass;
1043 break;
1044 case MSP430::Sra16:
1045 Opc = MSP430::SAR16r1;
1046 RC = MSP430::GR16RegisterClass;
1047 break;
1048 case MSP430::Srl8:
1049 Opc = MSP430::SAR8r1c;
1050 RC = MSP430::GR8RegisterClass;
1051 break;
1052 case MSP430::Srl16:
1053 Opc = MSP430::SAR16r1c;
1054 RC = MSP430::GR16RegisterClass;
1055 break;
1056 }
1057
1058 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1059 MachineFunction::iterator I = BB;
1060 ++I;
1061
1062 // Create loop block
1063 MachineBasicBlock *LoopBB = F->CreateMachineBasicBlock(LLVM_BB);
1064 MachineBasicBlock *RemBB = F->CreateMachineBasicBlock(LLVM_BB);
1065
1066 F->insert(I, LoopBB);
1067 F->insert(I, RemBB);
1068
1069 // Update machine-CFG edges by transferring all successors of the current
1070 // block to the block containing instructions after shift.
Dan Gohman14152b42010-07-06 20:24:04 +00001071 RemBB->splice(RemBB->begin(), BB,
1072 llvm::next(MachineBasicBlock::iterator(MI)),
1073 BB->end());
1074 RemBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001075
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001076 // Add adges BB => LoopBB => RemBB, BB => RemBB, LoopBB => LoopBB
1077 BB->addSuccessor(LoopBB);
1078 BB->addSuccessor(RemBB);
1079 LoopBB->addSuccessor(RemBB);
1080 LoopBB->addSuccessor(LoopBB);
1081
1082 unsigned ShiftAmtReg = RI.createVirtualRegister(MSP430::GR8RegisterClass);
1083 unsigned ShiftAmtReg2 = RI.createVirtualRegister(MSP430::GR8RegisterClass);
1084 unsigned ShiftReg = RI.createVirtualRegister(RC);
1085 unsigned ShiftReg2 = RI.createVirtualRegister(RC);
1086 unsigned ShiftAmtSrcReg = MI->getOperand(2).getReg();
1087 unsigned SrcReg = MI->getOperand(1).getReg();
1088 unsigned DstReg = MI->getOperand(0).getReg();
1089
1090 // BB:
1091 // cmp 0, N
1092 // je RemBB
Anton Korobeynikovf7ed9792010-01-15 01:29:49 +00001093 BuildMI(BB, dl, TII.get(MSP430::CMP8ri))
1094 .addReg(ShiftAmtSrcReg).addImm(0);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001095 BuildMI(BB, dl, TII.get(MSP430::JCC))
1096 .addMBB(RemBB)
1097 .addImm(MSP430CC::COND_E);
1098
1099 // LoopBB:
1100 // ShiftReg = phi [%SrcReg, BB], [%ShiftReg2, LoopBB]
1101 // ShiftAmt = phi [%N, BB], [%ShiftAmt2, LoopBB]
1102 // ShiftReg2 = shift ShiftReg
1103 // ShiftAmt2 = ShiftAmt - 1;
1104 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftReg)
1105 .addReg(SrcReg).addMBB(BB)
1106 .addReg(ShiftReg2).addMBB(LoopBB);
1107 BuildMI(LoopBB, dl, TII.get(MSP430::PHI), ShiftAmtReg)
1108 .addReg(ShiftAmtSrcReg).addMBB(BB)
1109 .addReg(ShiftAmtReg2).addMBB(LoopBB);
1110 BuildMI(LoopBB, dl, TII.get(Opc), ShiftReg2)
1111 .addReg(ShiftReg);
1112 BuildMI(LoopBB, dl, TII.get(MSP430::SUB8ri), ShiftAmtReg2)
1113 .addReg(ShiftAmtReg).addImm(1);
1114 BuildMI(LoopBB, dl, TII.get(MSP430::JCC))
1115 .addMBB(LoopBB)
1116 .addImm(MSP430CC::COND_NE);
1117
1118 // RemBB:
1119 // DestReg = phi [%SrcReg, BB], [%ShiftReg, LoopBB]
Dan Gohman14152b42010-07-06 20:24:04 +00001120 BuildMI(*RemBB, RemBB->begin(), dl, TII.get(MSP430::PHI), DstReg)
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001121 .addReg(SrcReg).addMBB(BB)
1122 .addReg(ShiftReg2).addMBB(LoopBB);
1123
Dan Gohman14152b42010-07-06 20:24:04 +00001124 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001125 return RemBB;
1126}
1127
1128MachineBasicBlock*
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001129MSP430TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001130 MachineBasicBlock *BB) const {
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001131 unsigned Opc = MI->getOpcode();
1132
1133 if (Opc == MSP430::Shl8 || Opc == MSP430::Shl16 ||
1134 Opc == MSP430::Sra8 || Opc == MSP430::Sra16 ||
1135 Opc == MSP430::Srl8 || Opc == MSP430::Srl16)
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00001136 return EmitShiftInstr(MI, BB);
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001137
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001138 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
1139 DebugLoc dl = MI->getDebugLoc();
Anton Korobeynikov2625de32009-12-12 18:55:37 +00001140
1141 assert((Opc == MSP430::Select16 || Opc == MSP430::Select8) &&
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001142 "Unexpected instr type to insert");
1143
1144 // To "insert" a SELECT instruction, we actually have to insert the diamond
1145 // control-flow pattern. The incoming instruction knows the destination vreg
1146 // to set, the condition code register to branch on, the true/false values to
1147 // select between, and a branch opcode to use.
1148 const BasicBlock *LLVM_BB = BB->getBasicBlock();
1149 MachineFunction::iterator I = BB;
1150 ++I;
1151
1152 // thisMBB:
1153 // ...
1154 // TrueVal = ...
1155 // cmpTY ccX, r1, r2
1156 // jCC copy1MBB
1157 // fallthrough --> copy0MBB
1158 MachineBasicBlock *thisMBB = BB;
1159 MachineFunction *F = BB->getParent();
1160 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1161 MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001162 F->insert(I, copy0MBB);
1163 F->insert(I, copy1MBB);
1164 // Update machine-CFG edges by transferring all successors of the current
1165 // block to the new block which will contain the Phi node for the select.
Dan Gohman14152b42010-07-06 20:24:04 +00001166 copy1MBB->splice(copy1MBB->begin(), BB,
1167 llvm::next(MachineBasicBlock::iterator(MI)),
1168 BB->end());
1169 copy1MBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001170 // Next, add the true and fallthrough blocks as its successors.
1171 BB->addSuccessor(copy0MBB);
1172 BB->addSuccessor(copy1MBB);
1173
Dan Gohman14152b42010-07-06 20:24:04 +00001174 BuildMI(BB, dl, TII.get(MSP430::JCC))
1175 .addMBB(copy1MBB)
1176 .addImm(MI->getOperand(3).getImm());
1177
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001178 // copy0MBB:
1179 // %FalseValue = ...
1180 // # fallthrough to copy1MBB
1181 BB = copy0MBB;
1182
1183 // Update machine-CFG edges
1184 BB->addSuccessor(copy1MBB);
1185
1186 // copy1MBB:
1187 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1188 // ...
1189 BB = copy1MBB;
Dan Gohman14152b42010-07-06 20:24:04 +00001190 BuildMI(*BB, BB->begin(), dl, TII.get(MSP430::PHI),
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001191 MI->getOperand(0).getReg())
1192 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1193 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
1194
Dan Gohman14152b42010-07-06 20:24:04 +00001195 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov8b528e52009-05-03 13:12:23 +00001196 return BB;
1197}