blob: 63724823f56da9bb121ba7ef1224cc22351590f2 [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//===- MSP430InstrInfo.cpp - MSP430 Instruction Information ---------------===//
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 contains the MSP430 implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "MSP430.h"
15#include "MSP430InstrInfo.h"
Anton Korobeynikovd5047cb2009-05-03 13:11:04 +000016#include "MSP430MachineFunctionInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000017#include "MSP430TargetMachine.h"
18#include "MSP430GenInstrInfo.inc"
19#include "llvm/Function.h"
Anton Korobeynikovaa299152009-05-03 13:09:57 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
22#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikovaa299152009-05-03 13:09:57 +000023#include "llvm/CodeGen/PseudoSourceValue.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000024#include "llvm/Support/ErrorHandling.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000025
26using namespace llvm;
27
28MSP430InstrInfo::MSP430InstrInfo(MSP430TargetMachine &tm)
29 : TargetInstrInfoImpl(MSP430Insts, array_lengthof(MSP430Insts)),
Anton Korobeynikovb5612642009-05-03 13:07:54 +000030 RI(tm, *this), TM(tm) {}
Anton Korobeynikov1df221f2009-05-03 13:02:04 +000031
Anton Korobeynikovaa299152009-05-03 13:09:57 +000032void MSP430InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
33 MachineBasicBlock::iterator MI,
34 unsigned SrcReg, bool isKill, int FrameIdx,
35 const TargetRegisterClass *RC) const {
36 DebugLoc DL = DebugLoc::getUnknownLoc();
37 if (MI != MBB.end()) DL = MI->getDebugLoc();
Anton Korobeynikov8046ef42009-11-07 17:13:57 +000038 MachineFunction &MF = *MBB.getParent();
39 MachineFrameInfo &MFI = *MF.getFrameInfo();
40
41 MachineMemOperand *MMO =
42 MF.getMachineMemOperand(PseudoSourceValue::getFixedStack(FrameIdx),
43 MachineMemOperand::MOStore, 0,
44 MFI.getObjectSize(FrameIdx),
45 MFI.getObjectAlignment(FrameIdx));
Anton Korobeynikovaa299152009-05-03 13:09:57 +000046
47 if (RC == &MSP430::GR16RegClass)
48 BuildMI(MBB, MI, DL, get(MSP430::MOV16mr))
49 .addFrameIndex(FrameIdx).addImm(0)
Anton Korobeynikov8046ef42009-11-07 17:13:57 +000050 .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO);
Anton Korobeynikovaa299152009-05-03 13:09:57 +000051 else if (RC == &MSP430::GR8RegClass)
52 BuildMI(MBB, MI, DL, get(MSP430::MOV8mr))
53 .addFrameIndex(FrameIdx).addImm(0)
Anton Korobeynikov8046ef42009-11-07 17:13:57 +000054 .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO);
Anton Korobeynikovaa299152009-05-03 13:09:57 +000055 else
Torok Edwinc23197a2009-07-14 16:55:14 +000056 llvm_unreachable("Cannot store this register to stack slot!");
Anton Korobeynikovaa299152009-05-03 13:09:57 +000057}
58
59void MSP430InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
60 MachineBasicBlock::iterator MI,
61 unsigned DestReg, int FrameIdx,
62 const TargetRegisterClass *RC) const{
63 DebugLoc DL = DebugLoc::getUnknownLoc();
64 if (MI != MBB.end()) DL = MI->getDebugLoc();
Anton Korobeynikov8046ef42009-11-07 17:13:57 +000065 MachineFunction &MF = *MBB.getParent();
66 MachineFrameInfo &MFI = *MF.getFrameInfo();
67
68 MachineMemOperand *MMO =
69 MF.getMachineMemOperand(PseudoSourceValue::getFixedStack(FrameIdx),
70 MachineMemOperand::MOLoad, 0,
71 MFI.getObjectSize(FrameIdx),
72 MFI.getObjectAlignment(FrameIdx));
Anton Korobeynikovaa299152009-05-03 13:09:57 +000073
74 if (RC == &MSP430::GR16RegClass)
75 BuildMI(MBB, MI, DL, get(MSP430::MOV16rm))
Anton Korobeynikov8046ef42009-11-07 17:13:57 +000076 .addReg(DestReg).addFrameIndex(FrameIdx).addImm(0).addMemOperand(MMO);
Anton Korobeynikovaa299152009-05-03 13:09:57 +000077 else if (RC == &MSP430::GR8RegClass)
78 BuildMI(MBB, MI, DL, get(MSP430::MOV8rm))
Anton Korobeynikov8046ef42009-11-07 17:13:57 +000079 .addReg(DestReg).addFrameIndex(FrameIdx).addImm(0).addMemOperand(MMO);
Anton Korobeynikovaa299152009-05-03 13:09:57 +000080 else
Torok Edwinc23197a2009-07-14 16:55:14 +000081 llvm_unreachable("Cannot store this register to stack slot!");
Anton Korobeynikovaa299152009-05-03 13:09:57 +000082}
83
Anton Korobeynikov1df221f2009-05-03 13:02:04 +000084bool MSP430InstrInfo::copyRegToReg(MachineBasicBlock &MBB,
85 MachineBasicBlock::iterator I,
86 unsigned DestReg, unsigned SrcReg,
87 const TargetRegisterClass *DestRC,
88 const TargetRegisterClass *SrcRC) const {
Anton Korobeynikov1df221f2009-05-03 13:02:04 +000089 DebugLoc DL = DebugLoc::getUnknownLoc();
90 if (I != MBB.end()) DL = I->getDebugLoc();
91
Anton Korobeynikov51c31d62009-05-03 13:05:42 +000092 if (DestRC == SrcRC) {
93 unsigned Opc;
94 if (DestRC == &MSP430::GR16RegClass) {
95 Opc = MSP430::MOV16rr;
96 } else if (DestRC == &MSP430::GR8RegClass) {
97 Opc = MSP430::MOV8rr;
98 } else {
99 return false;
100 }
101
102 BuildMI(MBB, I, DL, get(Opc), DestReg).addReg(SrcReg);
103 return true;
104 }
105
106 return false;
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000107}
108
109bool
110MSP430InstrInfo::isMoveInstr(const MachineInstr& MI,
111 unsigned &SrcReg, unsigned &DstReg,
112 unsigned &SrcSubIdx, unsigned &DstSubIdx) const {
113 SrcSubIdx = DstSubIdx = 0; // No sub-registers yet.
114
115 switch (MI.getOpcode()) {
116 default:
117 return false;
Anton Korobeynikov51c31d62009-05-03 13:05:42 +0000118 case MSP430::MOV8rr:
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000119 case MSP430::MOV16rr:
Anton Korobeynikov51c31d62009-05-03 13:05:42 +0000120 assert(MI.getNumOperands() >= 2 &&
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000121 MI.getOperand(0).isReg() &&
122 MI.getOperand(1).isReg() &&
123 "invalid register-register move instruction");
124 SrcReg = MI.getOperand(1).getReg();
125 DstReg = MI.getOperand(0).getReg();
126 return true;
127 }
128}
Anton Korobeynikovd5047cb2009-05-03 13:11:04 +0000129
130bool
131MSP430InstrInfo::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
132 MachineBasicBlock::iterator MI,
133 const std::vector<CalleeSavedInfo> &CSI) const {
134 if (CSI.empty())
135 return false;
136
137 DebugLoc DL = DebugLoc::getUnknownLoc();
138 if (MI != MBB.end()) DL = MI->getDebugLoc();
139
140 MachineFunction &MF = *MBB.getParent();
141 MSP430MachineFunctionInfo *MFI = MF.getInfo<MSP430MachineFunctionInfo>();
142 MFI->setCalleeSavedFrameSize(CSI.size() * 2);
143
144 for (unsigned i = CSI.size(); i != 0; --i) {
145 unsigned Reg = CSI[i-1].getReg();
146 // Add the callee-saved register as live-in. It's killed at the spill.
147 MBB.addLiveIn(Reg);
148 BuildMI(MBB, MI, DL, get(MSP430::PUSH16r))
Bill Wendling587daed2009-05-13 21:33:08 +0000149 .addReg(Reg, RegState::Kill);
Anton Korobeynikovd5047cb2009-05-03 13:11:04 +0000150 }
151 return true;
152}
153
154bool
155MSP430InstrInfo::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
156 MachineBasicBlock::iterator MI,
157 const std::vector<CalleeSavedInfo> &CSI) const {
158 if (CSI.empty())
159 return false;
160
161 DebugLoc DL = DebugLoc::getUnknownLoc();
162 if (MI != MBB.end()) DL = MI->getDebugLoc();
163
164 for (unsigned i = 0, e = CSI.size(); i != e; ++i)
165 BuildMI(MBB, MI, DL, get(MSP430::POP16r), CSI[i].getReg());
166
167 return true;
168}
Anton Korobeynikov8644af32009-05-03 13:15:22 +0000169
Anton Korobeynikov90593d22009-10-21 19:17:18 +0000170unsigned MSP430InstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
171 MachineBasicBlock::iterator I = MBB.end();
172 unsigned Count = 0;
173
174 while (I != MBB.begin()) {
175 --I;
176 if (I->getOpcode() != MSP430::JMP &&
177 I->getOpcode() != MSP430::JCC)
178 break;
179 // Remove the branch.
180 I->eraseFromParent();
181 I = MBB.end();
182 ++Count;
183 }
184
185 return Count;
186}
187
Anton Korobeynikov90593d22009-10-21 19:17:18 +0000188bool MSP430InstrInfo::
189ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
190 assert(Cond.size() == 1 && "Invalid Xbranch condition!");
191
192 MSP430CC::CondCodes CC = static_cast<MSP430CC::CondCodes>(Cond[0].getImm());
193
194 switch (CC) {
195 default:
196 assert(0 && "Invalid branch condition!");
197 break;
198 case MSP430CC::COND_E:
199 CC = MSP430CC::COND_NE;
200 break;
201 case MSP430CC::COND_NE:
202 CC = MSP430CC::COND_E;
203 break;
204 case MSP430CC::COND_L:
205 CC = MSP430CC::COND_GE;
206 break;
207 case MSP430CC::COND_GE:
208 CC = MSP430CC::COND_L;
209 break;
210 case MSP430CC::COND_HS:
211 CC = MSP430CC::COND_LO;
212 break;
213 case MSP430CC::COND_LO:
214 CC = MSP430CC::COND_HS;
215 break;
216 }
217
218 Cond[0].setImm(CC);
219 return false;
220}
221
Anton Korobeynikov90593d22009-10-21 19:17:18 +0000222bool MSP430InstrInfo::isUnpredicatedTerminator(const MachineInstr *MI) const {
223 const TargetInstrDesc &TID = MI->getDesc();
224 if (!TID.isTerminator()) return false;
225
226 // Conditional branch is a special case.
227 if (TID.isBranch() && !TID.isBarrier())
228 return true;
229 if (!TID.isPredicable())
230 return true;
231 return !isPredicated(MI);
232}
233
234bool MSP430InstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
235 MachineBasicBlock *&TBB,
236 MachineBasicBlock *&FBB,
237 SmallVectorImpl<MachineOperand> &Cond,
238 bool AllowModify) const {
239 // Start from the bottom of the block and work up, examining the
240 // terminator instructions.
241 MachineBasicBlock::iterator I = MBB.end();
242 while (I != MBB.begin()) {
243 --I;
244 // Working from the bottom, when we see a non-terminator
245 // instruction, we're done.
246 if (!isUnpredicatedTerminator(I))
247 break;
248
249 // A terminator that isn't a branch can't easily be handled
250 // by this analysis.
251 if (!I->getDesc().isBranch())
252 return true;
253
254 // Handle unconditional branches.
255 if (I->getOpcode() == MSP430::JMP) {
256 if (!AllowModify) {
257 TBB = I->getOperand(0).getMBB();
258 continue;
259 }
260
261 // If the block has any instructions after a JMP, delete them.
Chris Lattner7896c9f2009-12-03 00:50:42 +0000262 while (llvm::next(I) != MBB.end())
263 llvm::next(I)->eraseFromParent();
Anton Korobeynikov90593d22009-10-21 19:17:18 +0000264 Cond.clear();
265 FBB = 0;
266
267 // Delete the JMP if it's equivalent to a fall-through.
268 if (MBB.isLayoutSuccessor(I->getOperand(0).getMBB())) {
269 TBB = 0;
270 I->eraseFromParent();
271 I = MBB.end();
272 continue;
273 }
274
275 // TBB is used to indicate the unconditinal destination.
276 TBB = I->getOperand(0).getMBB();
277 continue;
278 }
279
280 // Handle conditional branches.
281 assert(I->getOpcode() == MSP430::JCC && "Invalid conditional branch");
282 MSP430CC::CondCodes BranchCode =
283 static_cast<MSP430CC::CondCodes>(I->getOperand(1).getImm());
284 if (BranchCode == MSP430CC::COND_INVALID)
285 return true; // Can't handle weird stuff.
286
287 // Working from the bottom, handle the first conditional branch.
288 if (Cond.empty()) {
289 FBB = TBB;
290 TBB = I->getOperand(0).getMBB();
291 Cond.push_back(MachineOperand::CreateImm(BranchCode));
292 continue;
293 }
294
295 // Handle subsequent conditional branches. Only handle the case where all
296 // conditional branches branch to the same destination.
297 assert(Cond.size() == 1);
298 assert(TBB);
299
300 // Only handle the case where all conditional branches branch to
301 // the same destination.
302 if (TBB != I->getOperand(0).getMBB())
303 return true;
304
305 MSP430CC::CondCodes OldBranchCode = (MSP430CC::CondCodes)Cond[0].getImm();
306 // If the conditions are the same, we can leave them alone.
307 if (OldBranchCode == BranchCode)
308 continue;
309
310 return true;
311 }
312
313 return false;
314}
315
Anton Korobeynikov8644af32009-05-03 13:15:22 +0000316unsigned
317MSP430InstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
318 MachineBasicBlock *FBB,
319 const SmallVectorImpl<MachineOperand> &Cond) const {
320 // FIXME this should probably have a DebugLoc operand
321 DebugLoc dl = DebugLoc::getUnknownLoc();
322
323 // Shouldn't be a fall through.
324 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
325 assert((Cond.size() == 1 || Cond.size() == 0) &&
326 "MSP430 branch conditions have one component!");
327
328 if (Cond.empty()) {
329 // Unconditional branch?
330 assert(!FBB && "Unconditional branch with multiple successors!");
331 BuildMI(&MBB, dl, get(MSP430::JMP)).addMBB(TBB);
332 return 1;
333 }
334
335 // Conditional branch.
336 unsigned Count = 0;
Anton Korobeynikov90593d22009-10-21 19:17:18 +0000337 BuildMI(&MBB, dl, get(MSP430::JCC)).addMBB(TBB).addImm(Cond[0].getImm());
338 ++Count;
Anton Korobeynikov8644af32009-05-03 13:15:22 +0000339
Anton Korobeynikov90593d22009-10-21 19:17:18 +0000340 if (FBB) {
341 // Two-way Conditional branch. Insert the second branch.
342 BuildMI(&MBB, dl, get(MSP430::JMP)).addMBB(FBB);
343 ++Count;
344 }
Anton Korobeynikov8644af32009-05-03 13:15:22 +0000345 return Count;
346}
Anton Korobeynikov702adab2010-01-15 21:19:05 +0000347
348/// GetInstSize - Return the number of bytes of code the specified
349/// instruction may be. This returns the maximum number of bytes.
350///
351unsigned MSP430InstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
352 const TargetInstrDesc &Desc = MI->getDesc();
353
354 switch (Desc.TSFlags & MSP430II::SizeMask) {
355 default:
356 switch (Desc.getOpcode()) {
357 default:
358 assert(0 && "Unknown instruction size!");
Chris Lattner518bb532010-02-09 19:54:29 +0000359 case TargetOpcode::DBG_LABEL:
360 case TargetOpcode::EH_LABEL:
361 case TargetOpcode::IMPLICIT_DEF:
362 case TargetOpcode::KILL:
Anton Korobeynikov702adab2010-01-15 21:19:05 +0000363 return 0;
Chris Lattner518bb532010-02-09 19:54:29 +0000364 case TargetOpcode::INLINEASM: {
Anton Korobeynikov702adab2010-01-15 21:19:05 +0000365 const MachineFunction *MF = MI->getParent()->getParent();
366 const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
367 return TII.getInlineAsmLength(MI->getOperand(0).getSymbolName(),
368 *MF->getTarget().getMCAsmInfo());
369 }
370 }
371 case MSP430II::SizeSpecial:
372 switch (MI->getOpcode()) {
373 default:
374 assert(0 && "Unknown instruction size!");
375 case MSP430::SAR8r1c:
376 case MSP430::SAR16r1c:
377 return 4;
378 }
379 case MSP430II::Size2Bytes:
380 return 2;
381 case MSP430II::Size4Bytes:
382 return 4;
383 case MSP430II::Size6Bytes:
384 return 6;
385 }
386
387 return 6;
388}