1 //===-- MSP430InstrInfo.cpp - MSP430 Instruction Information --------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file contains the MSP430 implementation of the TargetInstrInfo class.
11 //===----------------------------------------------------------------------===//
13 #include "MSP430InstrInfo.h"
15 #include "MSP430MachineFunctionInfo.h"
16 #include "MSP430TargetMachine.h"
17 #include "llvm/CodeGen/MachineFrameInfo.h"
18 #include "llvm/CodeGen/MachineInstrBuilder.h"
19 #include "llvm/CodeGen/MachineRegisterInfo.h"
20 #include "llvm/IR/Function.h"
21 #include "llvm/MC/TargetRegistry.h"
22 #include "llvm/Support/ErrorHandling.h"
26 #define GET_INSTRINFO_CTOR_DTOR
27 #include "MSP430GenInstrInfo.inc"
29 // Pin the vtable to this file.
30 void MSP430InstrInfo::anchor() {}
32 MSP430InstrInfo::MSP430InstrInfo(MSP430Subtarget
&STI
)
33 : MSP430GenInstrInfo(MSP430::ADJCALLSTACKDOWN
, MSP430::ADJCALLSTACKUP
),
36 void MSP430InstrInfo::storeRegToStackSlot(
37 MachineBasicBlock
&MBB
, MachineBasicBlock::iterator MI
, Register SrcReg
,
38 bool isKill
, int FrameIdx
, const TargetRegisterClass
*RC
,
39 const TargetRegisterInfo
*TRI
, Register VReg
) const {
41 if (MI
!= MBB
.end()) DL
= MI
->getDebugLoc();
42 MachineFunction
&MF
= *MBB
.getParent();
43 MachineFrameInfo
&MFI
= MF
.getFrameInfo();
45 MachineMemOperand
*MMO
= MF
.getMachineMemOperand(
46 MachinePointerInfo::getFixedStack(MF
, FrameIdx
),
47 MachineMemOperand::MOStore
, MFI
.getObjectSize(FrameIdx
),
48 MFI
.getObjectAlign(FrameIdx
));
50 if (RC
== &MSP430::GR16RegClass
)
51 BuildMI(MBB
, MI
, DL
, get(MSP430::MOV16mr
))
52 .addFrameIndex(FrameIdx
).addImm(0)
53 .addReg(SrcReg
, getKillRegState(isKill
)).addMemOperand(MMO
);
54 else if (RC
== &MSP430::GR8RegClass
)
55 BuildMI(MBB
, MI
, DL
, get(MSP430::MOV8mr
))
56 .addFrameIndex(FrameIdx
).addImm(0)
57 .addReg(SrcReg
, getKillRegState(isKill
)).addMemOperand(MMO
);
59 llvm_unreachable("Cannot store this register to stack slot!");
62 void MSP430InstrInfo::loadRegFromStackSlot(MachineBasicBlock
&MBB
,
63 MachineBasicBlock::iterator MI
,
64 Register DestReg
, int FrameIdx
,
65 const TargetRegisterClass
*RC
,
66 const TargetRegisterInfo
*TRI
,
67 Register VReg
) const {
69 if (MI
!= MBB
.end()) DL
= MI
->getDebugLoc();
70 MachineFunction
&MF
= *MBB
.getParent();
71 MachineFrameInfo
&MFI
= MF
.getFrameInfo();
73 MachineMemOperand
*MMO
= MF
.getMachineMemOperand(
74 MachinePointerInfo::getFixedStack(MF
, FrameIdx
),
75 MachineMemOperand::MOLoad
, MFI
.getObjectSize(FrameIdx
),
76 MFI
.getObjectAlign(FrameIdx
));
78 if (RC
== &MSP430::GR16RegClass
)
79 BuildMI(MBB
, MI
, DL
, get(MSP430::MOV16rm
))
80 .addReg(DestReg
, getDefRegState(true)).addFrameIndex(FrameIdx
)
81 .addImm(0).addMemOperand(MMO
);
82 else if (RC
== &MSP430::GR8RegClass
)
83 BuildMI(MBB
, MI
, DL
, get(MSP430::MOV8rm
))
84 .addReg(DestReg
, getDefRegState(true)).addFrameIndex(FrameIdx
)
85 .addImm(0).addMemOperand(MMO
);
87 llvm_unreachable("Cannot store this register to stack slot!");
90 void MSP430InstrInfo::copyPhysReg(MachineBasicBlock
&MBB
,
91 MachineBasicBlock::iterator I
,
92 const DebugLoc
&DL
, MCRegister DestReg
,
93 MCRegister SrcReg
, bool KillSrc
) const {
95 if (MSP430::GR16RegClass
.contains(DestReg
, SrcReg
))
96 Opc
= MSP430::MOV16rr
;
97 else if (MSP430::GR8RegClass
.contains(DestReg
, SrcReg
))
100 llvm_unreachable("Impossible reg-to-reg copy");
102 BuildMI(MBB
, I
, DL
, get(Opc
), DestReg
)
103 .addReg(SrcReg
, getKillRegState(KillSrc
));
106 unsigned MSP430InstrInfo::removeBranch(MachineBasicBlock
&MBB
,
107 int *BytesRemoved
) const {
108 assert(!BytesRemoved
&& "code size not handled");
110 MachineBasicBlock::iterator I
= MBB
.end();
113 while (I
!= MBB
.begin()) {
115 if (I
->isDebugInstr())
117 if (I
->getOpcode() != MSP430::JMP
&&
118 I
->getOpcode() != MSP430::JCC
&&
119 I
->getOpcode() != MSP430::Bi
&&
120 I
->getOpcode() != MSP430::Br
&&
121 I
->getOpcode() != MSP430::Bm
)
123 // Remove the branch.
124 I
->eraseFromParent();
132 bool MSP430InstrInfo::
133 reverseBranchCondition(SmallVectorImpl
<MachineOperand
> &Cond
) const {
134 assert(Cond
.size() == 1 && "Invalid Xbranch condition!");
136 MSP430CC::CondCodes CC
= static_cast<MSP430CC::CondCodes
>(Cond
[0].getImm());
139 default: llvm_unreachable("Invalid branch condition!");
140 case MSP430CC::COND_E
:
141 CC
= MSP430CC::COND_NE
;
143 case MSP430CC::COND_NE
:
144 CC
= MSP430CC::COND_E
;
146 case MSP430CC::COND_L
:
147 CC
= MSP430CC::COND_GE
;
149 case MSP430CC::COND_GE
:
150 CC
= MSP430CC::COND_L
;
152 case MSP430CC::COND_HS
:
153 CC
= MSP430CC::COND_LO
;
155 case MSP430CC::COND_LO
:
156 CC
= MSP430CC::COND_HS
;
164 bool MSP430InstrInfo::analyzeBranch(MachineBasicBlock
&MBB
,
165 MachineBasicBlock
*&TBB
,
166 MachineBasicBlock
*&FBB
,
167 SmallVectorImpl
<MachineOperand
> &Cond
,
168 bool AllowModify
) const {
169 // Start from the bottom of the block and work up, examining the
170 // terminator instructions.
171 MachineBasicBlock::iterator I
= MBB
.end();
172 while (I
!= MBB
.begin()) {
174 if (I
->isDebugInstr())
177 // Working from the bottom, when we see a non-terminator
178 // instruction, we're done.
179 if (!isUnpredicatedTerminator(*I
))
182 // A terminator that isn't a branch can't easily be handled
187 // Cannot handle indirect branches.
188 if (I
->getOpcode() == MSP430::Br
||
189 I
->getOpcode() == MSP430::Bm
)
192 // Handle unconditional branches.
193 if (I
->getOpcode() == MSP430::JMP
|| I
->getOpcode() == MSP430::Bi
) {
195 TBB
= I
->getOperand(0).getMBB();
199 // If the block has any instructions after a JMP, delete them.
200 MBB
.erase(std::next(I
), MBB
.end());
204 // Delete the JMP if it's equivalent to a fall-through.
205 if (MBB
.isLayoutSuccessor(I
->getOperand(0).getMBB())) {
207 I
->eraseFromParent();
212 // TBB is used to indicate the unconditinal destination.
213 TBB
= I
->getOperand(0).getMBB();
217 // Handle conditional branches.
218 assert(I
->getOpcode() == MSP430::JCC
&& "Invalid conditional branch");
219 MSP430CC::CondCodes BranchCode
=
220 static_cast<MSP430CC::CondCodes
>(I
->getOperand(1).getImm());
221 if (BranchCode
== MSP430CC::COND_INVALID
)
222 return true; // Can't handle weird stuff.
224 // Working from the bottom, handle the first conditional branch.
227 TBB
= I
->getOperand(0).getMBB();
228 Cond
.push_back(MachineOperand::CreateImm(BranchCode
));
232 // Handle subsequent conditional branches. Only handle the case where all
233 // conditional branches branch to the same destination.
234 assert(Cond
.size() == 1);
237 // Only handle the case where all conditional branches branch to
238 // the same destination.
239 if (TBB
!= I
->getOperand(0).getMBB())
242 MSP430CC::CondCodes OldBranchCode
= (MSP430CC::CondCodes
)Cond
[0].getImm();
243 // If the conditions are the same, we can leave them alone.
244 if (OldBranchCode
== BranchCode
)
253 unsigned MSP430InstrInfo::insertBranch(MachineBasicBlock
&MBB
,
254 MachineBasicBlock
*TBB
,
255 MachineBasicBlock
*FBB
,
256 ArrayRef
<MachineOperand
> Cond
,
258 int *BytesAdded
) const {
259 // Shouldn't be a fall through.
260 assert(TBB
&& "insertBranch must not be told to insert a fallthrough");
261 assert((Cond
.size() == 1 || Cond
.size() == 0) &&
262 "MSP430 branch conditions have one component!");
263 assert(!BytesAdded
&& "code size not handled");
266 // Unconditional branch?
267 assert(!FBB
&& "Unconditional branch with multiple successors!");
268 BuildMI(&MBB
, DL
, get(MSP430::JMP
)).addMBB(TBB
);
272 // Conditional branch.
274 BuildMI(&MBB
, DL
, get(MSP430::JCC
)).addMBB(TBB
).addImm(Cond
[0].getImm());
278 // Two-way Conditional branch. Insert the second branch.
279 BuildMI(&MBB
, DL
, get(MSP430::JMP
)).addMBB(FBB
);
285 /// GetInstSize - Return the number of bytes of code the specified
286 /// instruction may be. This returns the maximum number of bytes.
288 unsigned MSP430InstrInfo::getInstSizeInBytes(const MachineInstr
&MI
) const {
289 const MCInstrDesc
&Desc
= MI
.getDesc();
291 switch (Desc
.getOpcode()) {
292 case TargetOpcode::CFI_INSTRUCTION
:
293 case TargetOpcode::EH_LABEL
:
294 case TargetOpcode::IMPLICIT_DEF
:
295 case TargetOpcode::KILL
:
296 case TargetOpcode::DBG_VALUE
:
298 case TargetOpcode::INLINEASM
:
299 case TargetOpcode::INLINEASM_BR
: {
300 const MachineFunction
*MF
= MI
.getParent()->getParent();
301 const TargetInstrInfo
&TII
= *MF
->getSubtarget().getInstrInfo();
302 return TII
.getInlineAsmLength(MI
.getOperand(0).getSymbolName(),
303 *MF
->getTarget().getMCAsmInfo());
307 return Desc
.getSize();