blob: 2354c8370cecb42515fec7793a5fb520ecf7cfa3 [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"
18#include "MSP430TargetMachine.h"
19#include "MSP430Subtarget.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Function.h"
22#include "llvm/Intrinsics.h"
23#include "llvm/CallingConv.h"
24#include "llvm/GlobalVariable.h"
25#include "llvm/GlobalAlias.h"
26#include "llvm/CodeGen/CallingConvLower.h"
27#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
30#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000031#include "llvm/CodeGen/PseudoSourceValue.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000032#include "llvm/CodeGen/SelectionDAGISel.h"
33#include "llvm/CodeGen/ValueTypes.h"
34#include "llvm/Support/Debug.h"
35#include "llvm/ADT/VectorExtras.h"
36using namespace llvm;
37
38MSP430TargetLowering::MSP430TargetLowering(MSP430TargetMachine &tm) :
39 TargetLowering(tm), Subtarget(*tm.getSubtargetImpl()), TM(tm) {
40
41 // Set up the register classes.
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000042 addRegisterClass(MVT::i8, MSP430::GR8RegisterClass);
Anton Korobeynikov1df221f2009-05-03 13:02:04 +000043 addRegisterClass(MVT::i16, MSP430::GR16RegisterClass);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000044
45 // Compute derived properties from the register classes
46 computeRegisterProperties();
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000047
Anton Korobeynikov1476d972009-05-03 13:03:14 +000048 // Provide all sorts of operation actions
49
50 // Division is expensive
51 setIntDivIsCheap(false);
52
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000053 // Even if we have only 1 bit shift here, we can perform
54 // shifts of the whole bitwidth 1 bit per step.
55 setShiftAmountType(MVT::i8);
56
Anton Korobeynikovc08163e2009-05-03 13:11:35 +000057 setStackPointerRegisterToSaveRestore(MSP430::SPW);
58 setBooleanContents(ZeroOrOneBooleanContent);
59 setSchedulingPreference(SchedulingForLatency);
60
Anton Korobeynikov36b6e532009-05-03 13:06:03 +000061 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
62 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
63 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
64 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
65 setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Expand);
66
Anton Korobeynikov54f30d32009-05-03 13:06:26 +000067 // We don't have any truncstores
68 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
69
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +000070 setOperationAction(ISD::SRA, MVT::i16, Custom);
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +000071 setOperationAction(ISD::RET, MVT::Other, Custom);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +000072 setOperationAction(ISD::GlobalAddress, MVT::i16, Custom);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +000073 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
74 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
75 setOperationAction(ISD::SETCC, MVT::i8 , Custom);
76 setOperationAction(ISD::SETCC, MVT::i16 , Custom);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000077}
78
Anton Korobeynikovb8639f52009-05-03 13:03:50 +000079SDValue MSP430TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000080 switch (Op.getOpcode()) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000081 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Anton Korobeynikov44288852009-05-03 13:07:31 +000082 case ISD::SRA: return LowerShifts(Op, DAG);
83 case ISD::RET: return LowerRET(Op, DAG);
84 case ISD::CALL: return LowerCALL(Op, DAG);
Anton Korobeynikov3513ca82009-05-03 13:08:33 +000085 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +000086 case ISD::SETCC: return LowerSETCC(Op, DAG);
87 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000088 default:
89 assert(0 && "unimplemented operand");
90 return SDValue();
91 }
92}
93
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000094//===----------------------------------------------------------------------===//
95// Calling Convention Implementation
96//===----------------------------------------------------------------------===//
97
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000098#include "MSP430GenCallingConv.inc"
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +000099
100SDValue MSP430TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op,
101 SelectionDAG &DAG) {
102 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
103 switch (CC) {
104 default:
105 assert(0 && "Unsupported calling convention");
106 case CallingConv::C:
107 case CallingConv::Fast:
108 return LowerCCCArguments(Op, DAG);
109 }
110}
111
Anton Korobeynikov44288852009-05-03 13:07:31 +0000112SDValue MSP430TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
113 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
114 unsigned CallingConv = TheCall->getCallingConv();
115 switch (CallingConv) {
116 default:
117 assert(0 && "Unsupported calling convention");
118 case CallingConv::Fast:
119 case CallingConv::C:
120 return LowerCCCCallTo(Op, DAG, CallingConv);
121 }
122}
123
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000124/// LowerCCCArguments - transform physical registers into virtual registers and
125/// generate load operations for arguments places on the stack.
126// FIXME: struct return stuff
127// FIXME: varargs
Anton Korobeynikovdcb802c2009-05-03 13:00:11 +0000128SDValue MSP430TargetLowering::LowerCCCArguments(SDValue Op,
129 SelectionDAG &DAG) {
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000130 MachineFunction &MF = DAG.getMachineFunction();
131 MachineFrameInfo *MFI = MF.getFrameInfo();
132 MachineRegisterInfo &RegInfo = MF.getRegInfo();
133 SDValue Root = Op.getOperand(0);
134 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
135 unsigned CC = MF.getFunction()->getCallingConv();
136 DebugLoc dl = Op.getDebugLoc();
137
138 // Assign locations to all of the incoming arguments.
139 SmallVector<CCValAssign, 16> ArgLocs;
140 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
141 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_MSP430);
142
143 assert(!isVarArg && "Varargs not supported yet");
144
145 SmallVector<SDValue, 16> ArgValues;
146 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
147 CCValAssign &VA = ArgLocs[i];
148 if (VA.isRegLoc()) {
149 // Arguments passed in registers
150 MVT RegVT = VA.getLocVT();
151 switch (RegVT.getSimpleVT()) {
152 default:
153 cerr << "LowerFORMAL_ARGUMENTS Unhandled argument type: "
154 << RegVT.getSimpleVT()
155 << "\n";
156 abort();
157 case MVT::i16:
158 unsigned VReg =
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000159 RegInfo.createVirtualRegister(MSP430::GR16RegisterClass);
Anton Korobeynikovc8fbb6a2009-05-03 12:59:33 +0000160 RegInfo.addLiveIn(VA.getLocReg(), VReg);
161 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, VReg, RegVT);
162
163 // If this is an 8-bit value, it is really passed promoted to 16
164 // bits. Insert an assert[sz]ext to capture this, then truncate to the
165 // right size.
166 if (VA.getLocInfo() == CCValAssign::SExt)
167 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
168 DAG.getValueType(VA.getValVT()));
169 else if (VA.getLocInfo() == CCValAssign::ZExt)
170 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
171 DAG.getValueType(VA.getValVT()));
172
173 if (VA.getLocInfo() != CCValAssign::Full)
174 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
175
176 ArgValues.push_back(ArgValue);
177 }
178 } else {
179 // Sanity check
180 assert(VA.isMemLoc());
181 // Load the argument to a virtual register
182 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
183 if (ObjSize > 2) {
184 cerr << "LowerFORMAL_ARGUMENTS Unhandled argument type: "
185 << VA.getLocVT().getSimpleVT()
186 << "\n";
187 }
188 // Create the frame index object for this incoming parameter...
189 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset());
190
191 // Create the SelectionDAG nodes corresponding to a load
192 //from this parameter
193 SDValue FIN = DAG.getFrameIndex(FI, MVT::i16);
194 ArgValues.push_back(DAG.getLoad(VA.getLocVT(), dl, Root, FIN,
195 PseudoSourceValue::getFixedStack(FI), 0));
196 }
197 }
198
199 ArgValues.push_back(Root);
200
201 // Return the new list of results.
202 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
203 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
204}
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000205
206SDValue MSP430TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
207 // CCValAssign - represent the assignment of the return value to a location
208 SmallVector<CCValAssign, 16> RVLocs;
209 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
210 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
211 DebugLoc dl = Op.getDebugLoc();
212
213 // CCState - Info about the registers and stack slot.
214 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
215
216 // Analize return values of ISD::RET
217 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_MSP430);
218
219 // If this is the first return lowered for this function, add the regs to the
220 // liveout set for the function.
221 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
222 for (unsigned i = 0; i != RVLocs.size(); ++i)
223 if (RVLocs[i].isRegLoc())
224 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
225 }
226
227 // The chain is always operand #0
228 SDValue Chain = Op.getOperand(0);
229 SDValue Flag;
230
231 // Copy the result values into the output registers.
232 for (unsigned i = 0; i != RVLocs.size(); ++i) {
233 CCValAssign &VA = RVLocs[i];
234 assert(VA.isRegLoc() && "Can only return in registers!");
235
236 // ISD::RET => ret chain, (regnum1,val1), ...
237 // So i*2+1 index only the regnums
238 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
239 Op.getOperand(i*2+1), Flag);
240
Anton Korobeynikovdcb802c2009-05-03 13:00:11 +0000241 // Guarantee that all emitted copies are stuck together,
242 // avoiding something bad.
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000243 Flag = Chain.getValue(1);
244 }
245
246 if (Flag.getNode())
247 return DAG.getNode(MSP430ISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
248
249 // Return Void
250 return DAG.getNode(MSP430ISD::RET_FLAG, dl, MVT::Other, Chain);
251}
252
Anton Korobeynikov44288852009-05-03 13:07:31 +0000253/// LowerCCCCallTo - functions arguments are copied from virtual regs to
254/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
255/// TODO: sret.
256SDValue MSP430TargetLowering::LowerCCCCallTo(SDValue Op, SelectionDAG &DAG,
257 unsigned CC) {
258 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
259 SDValue Chain = TheCall->getChain();
260 SDValue Callee = TheCall->getCallee();
261 bool isVarArg = TheCall->isVarArg();
262 DebugLoc dl = Op.getDebugLoc();
263
264 // Analyze operands of the call, assigning locations to each operand.
265 SmallVector<CCValAssign, 16> ArgLocs;
266 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
267
268 CCInfo.AnalyzeCallOperands(TheCall, CC_MSP430);
269
270 // Get a count of how many bytes are to be pushed on the stack.
271 unsigned NumBytes = CCInfo.getNextStackOffset();
272
273 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
274 getPointerTy(), true));
275
276 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
277 SmallVector<SDValue, 12> MemOpChains;
278 SDValue StackPtr;
279
280 // Walk the register/memloc assignments, inserting copies/loads.
281 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
282 CCValAssign &VA = ArgLocs[i];
283
284 // Arguments start after the 5 first operands of ISD::CALL
285 SDValue Arg = TheCall->getArg(i);
286
287 // Promote the value if needed.
288 switch (VA.getLocInfo()) {
289 default: assert(0 && "Unknown loc info!");
290 case CCValAssign::Full: break;
291 case CCValAssign::SExt:
292 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
293 break;
294 case CCValAssign::ZExt:
295 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
296 break;
297 case CCValAssign::AExt:
298 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
299 break;
300 }
301
302 // Arguments that can be passed on register must be kept at RegsToPass
303 // vector
304 if (VA.isRegLoc()) {
305 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
306 } else {
307 assert(VA.isMemLoc());
308
309 if (StackPtr.getNode() == 0)
310 StackPtr = DAG.getCopyFromReg(Chain, dl, MSP430::SPW, getPointerTy());
311
312 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
313 StackPtr,
314 DAG.getIntPtrConstant(VA.getLocMemOffset()));
315
316
317 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
318 PseudoSourceValue::getStack(),
319 VA.getLocMemOffset()));
320 }
321 }
322
323 // Transform all store nodes into one single node because all store nodes are
324 // independent of each other.
325 if (!MemOpChains.empty())
326 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
327 &MemOpChains[0], MemOpChains.size());
328
329 // Build a sequence of copy-to-reg nodes chained together with token chain and
330 // flag operands which copy the outgoing args into registers. The InFlag in
331 // necessary since all emited instructions must be stuck together.
332 SDValue InFlag;
333 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
334 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
335 RegsToPass[i].second, InFlag);
336 InFlag = Chain.getValue(1);
337 }
338
339 // If the callee is a GlobalAddress node (quite common, every direct call is)
340 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
341 // Likewise ExternalSymbol -> TargetExternalSymbol.
342 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
343 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i16);
344 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
345 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i16);
346
347 // Returns a chain & a flag for retval copy to use.
348 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
349 SmallVector<SDValue, 8> Ops;
350 Ops.push_back(Chain);
351 Ops.push_back(Callee);
352
353 // Add argument registers to the end of the list so that they are
354 // known live into the call.
355 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
356 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
357 RegsToPass[i].second.getValueType()));
358
359 if (InFlag.getNode())
360 Ops.push_back(InFlag);
361
362 Chain = DAG.getNode(MSP430ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
363 InFlag = Chain.getValue(1);
364
365 // Create the CALLSEQ_END node.
366 Chain = DAG.getCALLSEQ_END(Chain,
367 DAG.getConstant(NumBytes, getPointerTy(), true),
368 DAG.getConstant(0, getPointerTy(), true),
369 InFlag);
370 InFlag = Chain.getValue(1);
371
372 // Handle result values, copying them out of physregs into vregs that we
373 // return.
374 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
375 Op.getResNo());
376}
377
378/// LowerCallResult - Lower the result values of an ISD::CALL into the
379/// appropriate copies out of appropriate physical registers. This assumes that
380/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
381/// being lowered. Returns a SDNode with the same number of values as the
382/// ISD::CALL.
383SDNode*
384MSP430TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
385 CallSDNode *TheCall,
386 unsigned CallingConv,
387 SelectionDAG &DAG) {
388 bool isVarArg = TheCall->isVarArg();
389 DebugLoc dl = TheCall->getDebugLoc();
390
391 // Assign locations to each value returned by this call.
392 SmallVector<CCValAssign, 16> RVLocs;
393 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
394
395 CCInfo.AnalyzeCallResult(TheCall, RetCC_MSP430);
396 SmallVector<SDValue, 8> ResultVals;
397
398 // Copy all of the result registers out of their specified physreg.
399 for (unsigned i = 0; i != RVLocs.size(); ++i) {
400 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
401 RVLocs[i].getValVT(), InFlag).getValue(1);
402 InFlag = Chain.getValue(2);
403 ResultVals.push_back(Chain.getValue(0));
404 }
405
406 ResultVals.push_back(Chain);
407
408 // Merge everything together with a MERGE_VALUES node.
409 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
410 &ResultVals[0], ResultVals.size()).getNode();
411}
412
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000413SDValue MSP430TargetLowering::LowerShifts(SDValue Op,
414 SelectionDAG &DAG) {
415 assert(Op.getOpcode() == ISD::SRA && "Only SRA is currently supported.");
416 SDNode* N = Op.getNode();
417 MVT VT = Op.getValueType();
418 DebugLoc dl = N->getDebugLoc();
419
420 // We currently only lower SRA of constant argument.
421 if (!isa<ConstantSDNode>(N->getOperand(1)))
422 return SDValue();
423
424 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
425
426 // Expand the stuff into sequence of shifts.
427 // FIXME: for some shift amounts this might be done better!
428 // E.g.: foo >> (8 + N) => sxt(swpb(foo)) >> N
429 SDValue Victim = N->getOperand(0);
430 while (ShiftAmount--)
431 Victim = DAG.getNode(MSP430ISD::RRA, dl, VT, Victim);
432
433 return Victim;
434}
435
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000436SDValue MSP430TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
437 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
438 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
439
440 // Create the TargetGlobalAddress node, folding in the constant offset.
441 SDValue Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
442 return DAG.getNode(MSP430ISD::Wrapper, Op.getDebugLoc(),
443 getPointerTy(), Result);
444}
445
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000446MVT MSP430TargetLowering::getSetCCResultType(MVT VT) const {
447 return MVT::i8;
448}
449
450SDValue MSP430TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
451 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
452 SDValue LHS = Op.getOperand(0);
453 SDValue RHS = Op.getOperand(1);
454 DebugLoc dl = Op.getDebugLoc();
455 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
456
457 // FIXME: Handle bittests someday
458 assert(!LHS.getValueType().isFloatingPoint() && "We don't handle FP yet");
459
460 // FIXME: Handle jump negative someday
461 unsigned TargetCC = 0;
462 switch (CC) {
463 default: assert(0 && "Invalid integer condition!");
464 case ISD::SETEQ:
465 TargetCC = MSP430::COND_E; // aka COND_Z
466 break;
467 case ISD::SETNE:
468 TargetCC = MSP430::COND_NE; // aka COND_NZ
469 break;
470 case ISD::SETULE:
471 std::swap(LHS, RHS); // FALLTHROUGH
472 case ISD::SETUGE:
473 TargetCC = MSP430::COND_HS; // aka COND_C
474 break;
475 case ISD::SETUGT:
476 std::swap(LHS, RHS); // FALLTHROUGH
477 case ISD::SETULT:
478 TargetCC = MSP430::COND_LO; // aka COND_NC
479 break;
480 case ISD::SETLE:
481 std::swap(LHS, RHS); // FALLTHROUGH
482 case ISD::SETGE:
483 TargetCC = MSP430::COND_GE;
484 break;
485 case ISD::SETGT:
486 std::swap(LHS, RHS); // FALLTHROUGH
487 case ISD::SETLT:
488 TargetCC = MSP430::COND_L;
489 break;
490 }
491
492 SDValue Cond = DAG.getNode(MSP430ISD::CMP, dl, MVT::i16, LHS, RHS);
493 return DAG.getNode(MSP430ISD::SETCC, dl, MVT::i8,
494 DAG.getConstant(TargetCC, MVT::i8), Cond);
495}
496
497SDValue MSP430TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
498 SDValue Chain = Op.getOperand(0);
499 SDValue Cond = Op.getOperand(1);
500 SDValue Dest = Op.getOperand(2);
501 DebugLoc dl = Op.getDebugLoc();
502 SDValue CC;
503
504 // Lower condition if not lowered yet
505 if (Cond.getOpcode() == ISD::SETCC)
506 Cond = LowerSETCC(Cond, DAG);
507
508 // If condition flag is set by a MSP430ISD::CMP, then use it as the condition
509 // setting operand in place of the MSP430ISD::SETCC.
510 if (Cond.getOpcode() == MSP430ISD::SETCC) {
511 CC = Cond.getOperand(0);
512 Cond = Cond.getOperand(1);
513 } else
514 assert(0 && "Unimplemented condition!");
515
516 return DAG.getNode(MSP430ISD::BRCOND, dl, Op.getValueType(),
517 Chain, Dest, CC, Cond);
518}
519
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000520const char *MSP430TargetLowering::getTargetNodeName(unsigned Opcode) const {
521 switch (Opcode) {
522 default: return NULL;
523 case MSP430ISD::RET_FLAG: return "MSP430ISD::RET_FLAG";
Anton Korobeynikovd2c94ae2009-05-03 13:03:33 +0000524 case MSP430ISD::RRA: return "MSP430ISD::RRA";
Anton Korobeynikovb5612642009-05-03 13:07:54 +0000525 case MSP430ISD::CALL: return "MSP430ISD::CALL";
Anton Korobeynikov3513ca82009-05-03 13:08:33 +0000526 case MSP430ISD::Wrapper: return "MSP430ISD::Wrapper";
Anton Korobeynikoved1a51a2009-05-03 13:12:06 +0000527 case MSP430ISD::BRCOND: return "MSP430ISD::BRCOND";
528 case MSP430ISD::CMP: return "MSP430ISD::CMP";
529 case MSP430ISD::SETCC: return "MSP430ISD::SETCC";
Anton Korobeynikovfd1b7c72009-05-03 12:59:50 +0000530 }
531}