blob: a8c5e0af8857c9801cbbb1b96e5706975968d249 [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//===-- MSP430ISelDAGToDAG.cpp - A dag to dag inst selector for MSP430 ----===//
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 defines an instruction selector for the MSP430 target.
11//
12//===----------------------------------------------------------------------===//
13
14#include "MSP430.h"
15#include "MSP430ISelLowering.h"
16#include "MSP430TargetMachine.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/Function.h"
19#include "llvm/Intrinsics.h"
20#include "llvm/CallingConv.h"
21#include "llvm/Constants.h"
22#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
26#include "llvm/CodeGen/SelectionDAG.h"
27#include "llvm/CodeGen/SelectionDAGISel.h"
28#include "llvm/Target/TargetLowering.h"
Anton Korobeynikova91f4c52009-10-21 19:18:28 +000029#include "llvm/Support/CommandLine.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000030#include "llvm/Support/Compiler.h"
31#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000032#include "llvm/Support/ErrorHandling.h"
33#include "llvm/Support/raw_ostream.h"
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +000034#include "llvm/ADT/Statistic.h"
35
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000036using namespace llvm;
37
Anton Korobeynikova91f4c52009-10-21 19:18:28 +000038#ifndef NDEBUG
39static cl::opt<bool>
40ViewRMWDAGs("view-msp430-rmw-dags", cl::Hidden,
41 cl::desc("Pop up a window to show isel dags after RMW preprocess"));
42#else
43static const bool ViewRMWDAGs = false;
44#endif
45
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +000046STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
47
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +000048
49namespace {
50 struct MSP430ISelAddressMode {
51 enum {
52 RegBase,
53 FrameIndexBase
54 } BaseType;
55
56 struct { // This is really a union, discriminated by BaseType!
57 SDValue Reg;
58 int FrameIndex;
59 } Base;
60
61 int16_t Disp;
62 GlobalValue *GV;
63 Constant *CP;
64 BlockAddress *BlockAddr;
65 const char *ES;
66 int JT;
67 unsigned Align; // CP alignment.
68
69 MSP430ISelAddressMode()
70 : BaseType(RegBase), Disp(0), GV(0), CP(0), BlockAddr(0),
71 ES(0), JT(-1), Align(0) {
72 }
73
74 bool hasSymbolicDisplacement() const {
75 return GV != 0 || CP != 0 || ES != 0 || JT != -1;
76 }
77
78 bool hasBaseReg() const {
79 return Base.Reg.getNode() != 0;
80 }
81
82 void setBaseReg(SDValue Reg) {
83 BaseType = RegBase;
84 Base.Reg = Reg;
85 }
86
87 void dump() {
88 errs() << "MSP430ISelAddressMode " << this << '\n';
Anton Korobeynikovcdcad112009-12-13 01:00:32 +000089 if (BaseType == RegBase && Base.Reg.getNode() != 0) {
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +000090 errs() << "Base.Reg ";
91 Base.Reg.getNode()->dump();
Anton Korobeynikovcdcad112009-12-13 01:00:32 +000092 } else if (BaseType == FrameIndexBase) {
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +000093 errs() << " Base.FrameIndex " << Base.FrameIndex << '\n';
94 }
95 errs() << " Disp " << Disp << '\n';
96 if (GV) {
97 errs() << "GV ";
98 GV->dump();
99 } else if (CP) {
100 errs() << " CP ";
101 CP->dump();
102 errs() << " Align" << Align << '\n';
103 } else if (ES) {
104 errs() << "ES ";
105 errs() << ES << '\n';
106 } else if (JT != -1)
107 errs() << " JT" << JT << " Align" << Align << '\n';
108 }
109 };
110}
111
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000112/// MSP430DAGToDAGISel - MSP430 specific code to select MSP430 machine
113/// instructions for SelectionDAG operations.
114///
115namespace {
116 class MSP430DAGToDAGISel : public SelectionDAGISel {
117 MSP430TargetLowering &Lowering;
118 const MSP430Subtarget &Subtarget;
119
120 public:
Anton Korobeynikov60871cb2009-05-03 13:19:42 +0000121 MSP430DAGToDAGISel(MSP430TargetMachine &TM, CodeGenOpt::Level OptLevel)
122 : SelectionDAGISel(TM, OptLevel),
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000123 Lowering(*TM.getTargetLowering()),
124 Subtarget(*TM.getSubtargetImpl()) { }
125
126 virtual void InstructionSelect();
127
128 virtual const char *getPassName() const {
129 return "MSP430 DAG->DAG Pattern Instruction Selection";
130 }
131
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000132 bool MatchAddress(SDValue N, MSP430ISelAddressMode &AM);
133 bool MatchWrapper(SDValue N, MSP430ISelAddressMode &AM);
134 bool MatchAddressBase(SDValue N, MSP430ISelAddressMode &AM);
135
Evan Cheng014bf212010-02-15 19:41:07 +0000136 bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root) const;
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000137
Anton Korobeynikov95eb4702009-10-11 19:14:21 +0000138 virtual bool
139 SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
140 std::vector<SDValue> &OutOps);
141
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000142 // Include the pieces autogenerated from the target description.
143 #include "MSP430GenDAGISel.inc"
144
145 private:
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000146 DenseMap<SDNode*, SDNode*> RMWStores;
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000147 void PreprocessForRMW();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000148 SDNode *Select(SDNode *N);
149 SDNode *SelectIndexedLoad(SDNode *Op);
150 SDNode *SelectIndexedBinOp(SDNode *Op, SDValue N1, SDValue N2,
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000151 unsigned Opc8, unsigned Opc16);
152
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000153 bool SelectAddr(SDNode *Op, SDValue Addr, SDValue &Base, SDValue &Disp);
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000154
155 #ifndef NDEBUG
156 unsigned Indent;
157 #endif
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000158 };
159} // end anonymous namespace
160
161/// createMSP430ISelDag - This pass converts a legalized DAG into a
162/// MSP430-specific DAG, ready for instruction scheduling.
163///
Anton Korobeynikov60871cb2009-05-03 13:19:42 +0000164FunctionPass *llvm::createMSP430ISelDag(MSP430TargetMachine &TM,
165 CodeGenOpt::Level OptLevel) {
166 return new MSP430DAGToDAGISel(TM, OptLevel);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000167}
168
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000169
170/// MatchWrapper - Try to match MSP430ISD::Wrapper node into an addressing mode.
171/// These wrap things that will resolve down into a symbol reference. If no
172/// match is possible, this returns true, otherwise it returns false.
173bool MSP430DAGToDAGISel::MatchWrapper(SDValue N, MSP430ISelAddressMode &AM) {
174 // If the addressing mode already has a symbol as the displacement, we can
175 // never match another symbol.
176 if (AM.hasSymbolicDisplacement())
177 return true;
178
179 SDValue N0 = N.getOperand(0);
180
181 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
182 AM.GV = G->getGlobal();
183 AM.Disp += G->getOffset();
184 //AM.SymbolFlags = G->getTargetFlags();
185 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
186 AM.CP = CP->getConstVal();
187 AM.Align = CP->getAlignment();
188 AM.Disp += CP->getOffset();
189 //AM.SymbolFlags = CP->getTargetFlags();
190 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
191 AM.ES = S->getSymbol();
192 //AM.SymbolFlags = S->getTargetFlags();
193 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
194 AM.JT = J->getIndex();
195 //AM.SymbolFlags = J->getTargetFlags();
196 } else {
197 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
198 //AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
199 }
200 return false;
201}
202
203/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
204/// specified addressing mode without any further recursion.
205bool MSP430DAGToDAGISel::MatchAddressBase(SDValue N, MSP430ISelAddressMode &AM) {
206 // Is the base register already occupied?
207 if (AM.BaseType != MSP430ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
208 // If so, we cannot select it.
Anton Korobeynikov82e46c22009-05-03 13:10:11 +0000209 return true;
210 }
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000211
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000212 // Default, generate it as a register.
213 AM.BaseType = MSP430ISelAddressMode::RegBase;
214 AM.Base.Reg = N;
215 return false;
216}
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000217
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000218bool MSP430DAGToDAGISel::MatchAddress(SDValue N, MSP430ISelAddressMode &AM) {
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000219 DEBUG({
220 errs() << "MatchAddress: ";
221 AM.dump();
222 });
223
224 switch (N.getOpcode()) {
225 default: break;
226 case ISD::Constant: {
227 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
228 AM.Disp += Val;
229 return false;
230 }
231
Anton Korobeynikov0eb6af42009-05-03 13:08:51 +0000232 case MSP430ISD::Wrapper:
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000233 if (!MatchWrapper(N, AM))
234 return false;
235 break;
236
237 case ISD::FrameIndex:
238 if (AM.BaseType == MSP430ISelAddressMode::RegBase
239 && AM.Base.Reg.getNode() == 0) {
240 AM.BaseType = MSP430ISelAddressMode::FrameIndexBase;
241 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
242 return false;
Anton Korobeynikov0eb6af42009-05-03 13:08:51 +0000243 }
244 break;
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000245
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000246 case ISD::ADD: {
247 MSP430ISelAddressMode Backup = AM;
248 if (!MatchAddress(N.getNode()->getOperand(0), AM) &&
249 !MatchAddress(N.getNode()->getOperand(1), AM))
250 return false;
251 AM = Backup;
252 if (!MatchAddress(N.getNode()->getOperand(1), AM) &&
253 !MatchAddress(N.getNode()->getOperand(0), AM))
254 return false;
255 AM = Backup;
256
257 break;
258 }
259
260 case ISD::OR:
261 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
262 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
263 MSP430ISelAddressMode Backup = AM;
264 uint64_t Offset = CN->getSExtValue();
265 // Start with the LHS as an addr mode.
266 if (!MatchAddress(N.getOperand(0), AM) &&
267 // Address could not have picked a GV address for the displacement.
268 AM.GV == NULL &&
269 // Check to see if the LHS & C is zero.
270 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
271 AM.Disp += Offset;
272 return false;
273 }
274 AM = Backup;
275 }
276 break;
277 }
278
279 return MatchAddressBase(N, AM);
280}
281
282/// SelectAddr - returns true if it is able pattern match an addressing mode.
283/// It returns the operands which make up the maximal addressing mode it can
284/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000285bool MSP430DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N,
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000286 SDValue &Base, SDValue &Disp) {
287 MSP430ISelAddressMode AM;
288
289 if (MatchAddress(N, AM))
290 return false;
291
292 EVT VT = N.getValueType();
293 if (AM.BaseType == MSP430ISelAddressMode::RegBase) {
294 if (!AM.Base.Reg.getNode())
295 AM.Base.Reg = CurDAG->getRegister(0, VT);
296 }
297
298 Base = (AM.BaseType == MSP430ISelAddressMode::FrameIndexBase) ?
299 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
300 AM.Base.Reg;
301
302 if (AM.GV)
303 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i16, AM.Disp,
304 0/*AM.SymbolFlags*/);
305 else if (AM.CP)
306 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i16,
307 AM.Align, AM.Disp, 0/*AM.SymbolFlags*/);
308 else if (AM.ES)
309 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i16, 0/*AM.SymbolFlags*/);
310 else if (AM.JT != -1)
311 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i16, 0/*AM.SymbolFlags*/);
312 else if (AM.BlockAddr)
Dan Gohman71a41962009-11-20 23:21:00 +0000313 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
314 true, 0/*AM.SymbolFlags*/);
Anton Korobeynikov123ed8f2009-11-07 17:13:35 +0000315 else
316 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i16);
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000317
318 return true;
319}
320
Anton Korobeynikov95eb4702009-10-11 19:14:21 +0000321bool MSP430DAGToDAGISel::
322SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
323 std::vector<SDValue> &OutOps) {
324 SDValue Op0, Op1;
325 switch (ConstraintCode) {
326 default: return true;
327 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000328 if (!SelectAddr(Op.getNode(), Op, Op0, Op1))
Anton Korobeynikov95eb4702009-10-11 19:14:21 +0000329 return true;
330 break;
331 }
332
333 OutOps.push_back(Op0);
334 OutOps.push_back(Op1);
335 return false;
336}
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000337
Evan Cheng014bf212010-02-15 19:41:07 +0000338bool MSP430DAGToDAGISel::IsLegalToFold(SDValue N, SDNode *U,
339 SDNode *Root) const {
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000340 if (OptLevel == CodeGenOpt::None) return false;
341
342 /// RMW preprocessing creates the following code:
Benjamin Kramer1395d1d2009-10-22 09:28:49 +0000343 /// [Load1]
344 /// ^ ^
345 /// / |
346 /// / |
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000347 /// [Load2] |
348 /// ^ ^ |
349 /// | | |
350 /// | \-|
351 /// | |
352 /// | [Op]
353 /// | ^
354 /// | |
355 /// \ /
356 /// \ /
357 /// [Store]
358 ///
359 /// The path Store => Load2 => Load1 is via chain. Note that in general it is
360 /// not allowed to fold Load1 into Op (and Store) since it will creates a
361 /// cycle. However, this is perfectly legal for the loads moved below the
362 /// TokenFactor by PreprocessForRMW. Query the map Store => Load1 (created
363 /// during preprocessing) to determine whether it's legal to introduce such
364 /// "cycle" for a moment.
Jeffrey Yasskin81cf4322009-11-10 01:02:17 +0000365 DenseMap<SDNode*, SDNode*>::const_iterator I = RMWStores.find(Root);
Evan Cheng014bf212010-02-15 19:41:07 +0000366 if (I != RMWStores.end() && I->second == N.getNode())
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000367 return true;
368
369 // Proceed to 'generic' cycle finder code
Evan Cheng014bf212010-02-15 19:41:07 +0000370 return SelectionDAGISel::IsLegalToFold(N, U, Root);
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000371}
372
373
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000374/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
375/// and move load below the TokenFactor. Replace store's chain operand with
376/// load's chain result.
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000377static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
378 SDValue Store, SDValue TF) {
379 SmallVector<SDValue, 4> Ops;
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000380 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000381 if (Load.getNode() == TF.getOperand(i).getNode())
382 Ops.push_back(Load.getOperand(0));
383 else
384 Ops.push_back(TF.getOperand(i));
385 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000386 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
387 Load.getOperand(1),
388 Load.getOperand(2));
389 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
390 Store.getOperand(2), Store.getOperand(3));
391}
392
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000393/// MoveBelowTokenFactor2 - Replace TokenFactor operand with load's chain operand
394/// and move load below the TokenFactor. Replace store's chain operand with
395/// load's chain result. This a version which sinks two loads below token factor.
396/// Look into PreprocessForRMW comments for explanation of transform.
397static void MoveBelowTokenFactor2(SelectionDAG *CurDAG,
398 SDValue Load1, SDValue Load2,
399 SDValue Store, SDValue TF) {
400 SmallVector<SDValue, 4> Ops;
401 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i) {
402 SDNode* N = TF.getOperand(i).getNode();
403 if (Load2.getNode() == N)
404 Ops.push_back(Load2.getOperand(0));
405 else if (Load1.getNode() != N)
406 Ops.push_back(TF.getOperand(i));
407 }
408
409 SDValue NewTF = SDValue(CurDAG->MorphNodeTo(TF.getNode(),
410 TF.getOpcode(),
411 TF.getNode()->getVTList(),
412 &Ops[0], Ops.size()), TF.getResNo());
413 SDValue NewLoad2 = CurDAG->UpdateNodeOperands(Load2, NewTF,
414 Load2.getOperand(1),
415 Load2.getOperand(2));
416
417 SDValue NewLoad1 = CurDAG->UpdateNodeOperands(Load1, NewLoad2.getValue(1),
418 Load1.getOperand(1),
419 Load1.getOperand(2));
420
421 CurDAG->UpdateNodeOperands(Store,
422 NewLoad1.getValue(1),
423 Store.getOperand(1),
424 Store.getOperand(2), Store.getOperand(3));
425}
426
427/// isAllowedToSink - return true if N a load which can be moved below token
428/// factor. Basically, the load should be non-volatile and has single use.
429static bool isLoadAllowedToSink(SDValue N, SDValue Chain) {
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000430 if (N.getOpcode() == ISD::BIT_CONVERT)
431 N = N.getOperand(0);
432
433 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
434 if (!LD || LD->isVolatile())
435 return false;
436 if (LD->getAddressingMode() != ISD::UNINDEXED)
437 return false;
438
439 ISD::LoadExtType ExtType = LD->getExtensionType();
440 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
441 return false;
442
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000443 return (N.hasOneUse() &&
444 LD->hasNUsesOfValue(1, 1) &&
445 LD->isOperandOf(Chain.getNode()));
446}
447
448
449/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG.
450/// The chain produced by the load must only be used by the store's chain
451/// operand, otherwise this may produce a cycle in the DAG.
452static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
453 SDValue &Load) {
454 if (isLoadAllowedToSink(N, Chain) &&
455 N.getOperand(1) == Address) {
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000456 Load = N;
457 return true;
458 }
459 return false;
460}
461
462/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000463/// This is only run if not in -O0 mode.
464/// This allows the instruction selector to pick more read-modify-write
465/// instructions. This is a common case:
466///
467/// [Load chain]
468/// ^
469/// |
470/// [Load]
471/// ^ ^
472/// | |
473/// / \-
474/// / |
475/// [TokenFactor] [Op]
476/// ^ ^
477/// | |
478/// \ /
479/// \ /
480/// [Store]
481///
482/// The fact the store's chain operand != load's chain will prevent the
483/// (store (op (load))) instruction from being selected. We can transform it to:
484///
485/// [Load chain]
486/// ^
487/// |
488/// [TokenFactor]
489/// ^
490/// |
491/// [Load]
492/// ^ ^
493/// | |
494/// | \-
495/// | |
496/// | [Op]
497/// | ^
498/// | |
499/// \ /
500/// \ /
501/// [Store]
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000502///
503/// We also recognize the case where second operand of Op is load as well and
504/// move it below token factor as well creating DAG as follows:
505///
Benjamin Kramer1395d1d2009-10-22 09:28:49 +0000506/// [Load chain]
507/// ^
508/// |
509/// [TokenFactor]
510/// ^
511/// |
512/// [Load1]
513/// ^ ^
514/// / |
515/// / |
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000516/// [Load2] |
517/// ^ ^ |
518/// | | |
519/// | \-|
520/// | |
521/// | [Op]
522/// | ^
523/// | |
524/// \ /
525/// \ /
526/// [Store]
527///
528/// This allows selection of mem-mem instructions. Yay!
529
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000530void MSP430DAGToDAGISel::PreprocessForRMW() {
531 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
532 E = CurDAG->allnodes_end(); I != E; ++I) {
533 if (!ISD::isNON_TRUNCStore(I))
534 continue;
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000535 SDValue Chain = I->getOperand(0);
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000536
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000537 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
538 continue;
539
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000540 SDValue N1 = I->getOperand(1);
541 SDValue N2 = I->getOperand(2);
542 if ((N1.getValueType().isFloatingPoint() &&
543 !N1.getValueType().isVector()) ||
544 !N1.hasOneUse())
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000545 continue;
546
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000547 unsigned RModW = 0;
548 SDValue Load1, Load2;
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000549 unsigned Opcode = N1.getNode()->getOpcode();
550 switch (Opcode) {
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000551 case ISD::ADD:
552 case ISD::AND:
553 case ISD::OR:
554 case ISD::XOR:
555 case ISD::ADDC:
556 case ISD::ADDE: {
557 SDValue N10 = N1.getOperand(0);
558 SDValue N11 = N1.getOperand(1);
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000559 if (isRMWLoad(N10, Chain, N2, Load1)) {
560 if (isLoadAllowedToSink(N11, Chain)) {
561 Load2 = N11;
562 RModW = 2;
563 } else
564 RModW = 1;
565 } else if (isRMWLoad(N11, Chain, N2, Load1)) {
566 if (isLoadAllowedToSink(N10, Chain)) {
567 Load2 = N10;
568 RModW = 2;
569 } else
570 RModW = 1;
571 }
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000572 break;
573 }
574 case ISD::SUB:
575 case ISD::SUBC:
576 case ISD::SUBE: {
577 SDValue N10 = N1.getOperand(0);
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000578 SDValue N11 = N1.getOperand(1);
579 if (isRMWLoad(N10, Chain, N2, Load1)) {
580 if (isLoadAllowedToSink(N11, Chain)) {
581 Load2 = N11;
582 RModW = 2;
583 } else
584 RModW = 1;
585 }
Anton Korobeynikov83fceb92009-10-21 19:17:55 +0000586 break;
587 }
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000588 }
589
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000590 NumLoadMoved += RModW;
591 if (RModW == 1)
592 MoveBelowTokenFactor(CurDAG, Load1, SDValue(I, 0), Chain);
593 else if (RModW == 2) {
594 MoveBelowTokenFactor2(CurDAG, Load1, Load2, SDValue(I, 0), Chain);
595 SDNode* Store = I;
596 RMWStores[Store] = Load2.getNode();
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000597 }
598 }
599}
600
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000601
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000602static bool isValidIndexedLoad(const LoadSDNode *LD) {
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000603 ISD::MemIndexedMode AM = LD->getAddressingMode();
604 if (AM != ISD::POST_INC || LD->getExtensionType() != ISD::NON_EXTLOAD)
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000605 return false;
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000606
607 EVT VT = LD->getMemoryVT();
608
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000609 switch (VT.getSimpleVT().SimpleTy) {
610 case MVT::i8:
611 // Sanity check
612 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 1)
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000613 return false;
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000614
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000615 break;
616 case MVT::i16:
617 // Sanity check
618 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 2)
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000619 return false;
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000620
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000621 break;
622 default:
623 return false;
624 }
625
626 return true;
627}
628
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000629SDNode *MSP430DAGToDAGISel::SelectIndexedLoad(SDNode *N) {
630 LoadSDNode *LD = cast<LoadSDNode>(N);
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000631 if (!isValidIndexedLoad(LD))
632 return NULL;
633
634 MVT VT = LD->getMemoryVT().getSimpleVT();
635
636 unsigned Opcode = 0;
637 switch (VT.SimpleTy) {
638 case MVT::i8:
639 Opcode = MSP430::MOV8rm_POST;
640 break;
641 case MVT::i16:
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000642 Opcode = MSP430::MOV16rm_POST;
643 break;
644 default:
645 return NULL;
646 }
647
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000648 return CurDAG->getMachineNode(Opcode, N->getDebugLoc(),
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000649 VT, MVT::i16, MVT::Other,
650 LD->getBasePtr(), LD->getChain());
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000651}
652
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000653SDNode *MSP430DAGToDAGISel::SelectIndexedBinOp(SDNode *Op,
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000654 SDValue N1, SDValue N2,
655 unsigned Opc8, unsigned Opc16) {
656 if (N1.getOpcode() == ISD::LOAD &&
657 N1.hasOneUse() &&
Evan Cheng014bf212010-02-15 19:41:07 +0000658 IsLegalToFold(N1, Op, Op)) {
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000659 LoadSDNode *LD = cast<LoadSDNode>(N1);
660 if (!isValidIndexedLoad(LD))
661 return NULL;
662
663 MVT VT = LD->getMemoryVT().getSimpleVT();
664 unsigned Opc = (VT == MVT::i16 ? Opc16 : Opc8);
665 MachineSDNode::mmo_iterator MemRefs0 = MF->allocateMemRefsArray(1);
666 MemRefs0[0] = cast<MemSDNode>(N1)->getMemOperand();
667 SDValue Ops0[] = { N2, LD->getBasePtr(), LD->getChain() };
668 SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000669 CurDAG->SelectNodeTo(Op, Opc,
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000670 VT, MVT::i16, MVT::Other,
671 Ops0, 3);
672 cast<MachineSDNode>(ResNode)->setMemRefs(MemRefs0, MemRefs0 + 1);
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000673 // Transfer chain.
674 ReplaceUses(SDValue(N1.getNode(), 2), SDValue(ResNode, 2));
675 // Transfer writeback.
676 ReplaceUses(SDValue(N1.getNode(), 1), SDValue(ResNode, 1));
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000677 return ResNode;
678 }
679
680 return NULL;
681}
682
683
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000684/// InstructionSelect - This callback is invoked by
685/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Anton Korobeynikov9e123392009-05-03 12:58:40 +0000686void MSP430DAGToDAGISel::InstructionSelect() {
Anton Korobeynikova91f4c52009-10-21 19:18:28 +0000687 std::string BlockName;
688 if (ViewRMWDAGs)
689 BlockName = MF->getFunction()->getNameStr() + ":" +
690 BB->getBasicBlock()->getNameStr();
691
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000692 PreprocessForRMW();
693
Anton Korobeynikova91f4c52009-10-21 19:18:28 +0000694 if (ViewRMWDAGs) CurDAG->viewGraph("RMW preprocessed:" + BlockName);
695
Anton Korobeynikovafac8ab2009-10-11 23:03:28 +0000696 DEBUG(errs() << "Selection DAG after RMW preprocessing:\n");
697 DEBUG(CurDAG->dump());
698
Anton Korobeynikovbf8ef3f2009-05-03 13:16:37 +0000699 // Codegen the basic block.
Chris Lattner893e1c92009-08-23 06:49:22 +0000700 DEBUG(errs() << "===== Instruction selection begins:\n");
Daniel Dunbar43ed2672009-08-23 08:50:52 +0000701 DEBUG(Indent = 0);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000702 SelectRoot(*CurDAG);
Chris Lattner893e1c92009-08-23 06:49:22 +0000703 DEBUG(errs() << "===== Instruction selection ends:\n");
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000704
705 CurDAG->RemoveDeadNodes();
Anton Korobeynikovf32df4c2009-10-22 00:16:00 +0000706 RMWStores.clear();
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000707}
708
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000709SDNode *MSP430DAGToDAGISel::Select(SDNode *Node) {
710 DebugLoc dl = Node->getDebugLoc();
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000711
712 // Dump information about the Node being selected
Chris Lattner893e1c92009-08-23 06:49:22 +0000713 DEBUG(errs().indent(Indent) << "Selecting: ");
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000714 DEBUG(Node->dump(CurDAG));
Chris Lattner893e1c92009-08-23 06:49:22 +0000715 DEBUG(errs() << "\n");
Daniel Dunbar43ed2672009-08-23 08:50:52 +0000716 DEBUG(Indent += 2);
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000717
718 // If we have a custom node, we already have selected!
719 if (Node->isMachineOpcode()) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000720 DEBUG(errs().indent(Indent-2) << "== ";
721 Node->dump(CurDAG);
722 errs() << "\n");
Daniel Dunbar43ed2672009-08-23 08:50:52 +0000723 DEBUG(Indent -= 2);
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000724 return NULL;
725 }
726
Anton Korobeynikov40477312009-05-03 13:10:26 +0000727 // Few custom selection stuff.
728 switch (Node->getOpcode()) {
729 default: break;
730 case ISD::FrameIndex: {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000731 assert(Node->getValueType(0) == MVT::i16);
Anton Korobeynikov40477312009-05-03 13:10:26 +0000732 int FI = cast<FrameIndexSDNode>(Node)->getIndex();
Owen Anderson825b72b2009-08-11 20:47:22 +0000733 SDValue TFI = CurDAG->getTargetFrameIndex(FI, MVT::i16);
Anton Korobeynikov40477312009-05-03 13:10:26 +0000734 if (Node->hasOneUse())
Owen Anderson825b72b2009-08-11 20:47:22 +0000735 return CurDAG->SelectNodeTo(Node, MSP430::ADD16ri, MVT::i16,
736 TFI, CurDAG->getTargetConstant(0, MVT::i16));
Dan Gohman602b0c82009-09-25 18:54:59 +0000737 return CurDAG->getMachineNode(MSP430::ADD16ri, dl, MVT::i16,
738 TFI, CurDAG->getTargetConstant(0, MVT::i16));
Anton Korobeynikov40477312009-05-03 13:10:26 +0000739 }
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000740 case ISD::LOAD:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000741 if (SDNode *ResNode = SelectIndexedLoad(Node))
Anton Korobeynikov6534f832009-11-07 17:15:06 +0000742 return ResNode;
743 // Other cases are autogenerated.
744 break;
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000745 case ISD::ADD:
746 if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000747 SelectIndexedBinOp(Node,
748 Node->getOperand(0), Node->getOperand(1),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000749 MSP430::ADD8rm_POST, MSP430::ADD16rm_POST))
750 return ResNode;
751 else if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000752 SelectIndexedBinOp(Node, Node->getOperand(1), Node->getOperand(0),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000753 MSP430::ADD8rm_POST, MSP430::ADD16rm_POST))
754 return ResNode;
755
756 // Other cases are autogenerated.
757 break;
758 case ISD::SUB:
759 if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000760 SelectIndexedBinOp(Node,
761 Node->getOperand(0), Node->getOperand(1),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000762 MSP430::SUB8rm_POST, MSP430::SUB16rm_POST))
763 return ResNode;
764
765 // Other cases are autogenerated.
766 break;
767 case ISD::AND:
768 if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000769 SelectIndexedBinOp(Node,
770 Node->getOperand(0), Node->getOperand(1),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000771 MSP430::AND8rm_POST, MSP430::AND16rm_POST))
772 return ResNode;
773 else if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000774 SelectIndexedBinOp(Node, Node->getOperand(1), Node->getOperand(0),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000775 MSP430::AND8rm_POST, MSP430::AND16rm_POST))
776 return ResNode;
777
778 // Other cases are autogenerated.
779 break;
780 case ISD::OR:
781 if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000782 SelectIndexedBinOp(Node,
783 Node->getOperand(0), Node->getOperand(1),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000784 MSP430::OR8rm_POST, MSP430::OR16rm_POST))
785 return ResNode;
786 else if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000787 SelectIndexedBinOp(Node, Node->getOperand(1), Node->getOperand(0),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000788 MSP430::OR8rm_POST, MSP430::OR16rm_POST))
789 return ResNode;
790
791 // Other cases are autogenerated.
792 break;
793 case ISD::XOR:
794 if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000795 SelectIndexedBinOp(Node,
796 Node->getOperand(0), Node->getOperand(1),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000797 MSP430::XOR8rm_POST, MSP430::XOR16rm_POST))
798 return ResNode;
799 else if (SDNode *ResNode =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000800 SelectIndexedBinOp(Node, Node->getOperand(1), Node->getOperand(0),
Anton Korobeynikov52f28e92009-11-08 14:27:38 +0000801 MSP430::XOR8rm_POST, MSP430::XOR16rm_POST))
802 return ResNode;
Anton Korobeynikov06ac0822009-11-07 17:15:25 +0000803
804 // Other cases are autogenerated.
805 break;
Anton Korobeynikov40477312009-05-03 13:10:26 +0000806 }
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000807
808 // Select the default instruction
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000809 SDNode *ResNode = SelectCode(Node);
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000810
Chris Lattner893e1c92009-08-23 06:49:22 +0000811 DEBUG(errs() << std::string(Indent-2, ' ') << "=> ");
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000812 if (ResNode == NULL || ResNode == Node)
813 DEBUG(Node->dump(CurDAG));
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000814 else
815 DEBUG(ResNode->dump(CurDAG));
Chris Lattner893e1c92009-08-23 06:49:22 +0000816 DEBUG(errs() << "\n");
Daniel Dunbar43ed2672009-08-23 08:50:52 +0000817 DEBUG(Indent -= 2);
Anton Korobeynikov43ed64a2009-05-03 12:58:58 +0000818
819 return ResNode;
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000820}