1 //===- XCoreInstrInfo.cpp - XCore Instruction Information -------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the XCore implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #include "XCoreMachineFunctionInfo.h"
15 #include "XCoreInstrInfo.h"
17 #include "llvm/ADT/STLExtras.h"
18 #include "llvm/CodeGen/MachineInstrBuilder.h"
19 #include "llvm/CodeGen/MachineFrameInfo.h"
20 #include "llvm/CodeGen/MachineLocation.h"
21 #include "llvm/CodeGen/MachineModuleInfo.h"
22 #include "XCoreGenInstrInfo.inc"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/ErrorHandling.h"
29 // XCore Condition Codes
40 XCoreInstrInfo::XCoreInstrInfo(void)
41 : TargetInstrInfoImpl(XCoreInsts
, array_lengthof(XCoreInsts
)),
45 static bool isZeroImm(const MachineOperand
&op
) {
46 return op
.isImm() && op
.getImm() == 0;
49 /// Return true if the instruction is a register to register move and
50 /// leave the source and dest operands in the passed parameters.
52 bool XCoreInstrInfo::isMoveInstr(const MachineInstr
&MI
,
53 unsigned &SrcReg
, unsigned &DstReg
,
54 unsigned &SrcSR
, unsigned &DstSR
) const {
55 SrcSR
= DstSR
= 0; // No sub-registers.
57 // We look for 4 kinds of patterns here:
62 if ((MI
.getOpcode() == XCore::ADD_2rus
|| MI
.getOpcode() == XCore::SUB_2rus
)
63 && isZeroImm(MI
.getOperand(2))) {
64 DstReg
= MI
.getOperand(0).getReg();
65 SrcReg
= MI
.getOperand(1).getReg();
67 } else if ((MI
.getOpcode() == XCore::OR_3r
|| MI
.getOpcode() == XCore::AND_3r
)
68 && MI
.getOperand(1).getReg() == MI
.getOperand(2).getReg()) {
69 DstReg
= MI
.getOperand(0).getReg();
70 SrcReg
= MI
.getOperand(1).getReg();
76 /// isLoadFromStackSlot - If the specified machine instruction is a direct
77 /// load from a stack slot, return the virtual or physical register number of
78 /// the destination along with the FrameIndex of the loaded stack slot. If
79 /// not, return 0. This predicate must return 0 if the instruction has
80 /// any side effects other than loading from the stack slot.
82 XCoreInstrInfo::isLoadFromStackSlot(const MachineInstr
*MI
, int &FrameIndex
) const{
83 int Opcode
= MI
->getOpcode();
84 if (Opcode
== XCore::LDWFI
)
86 if ((MI
->getOperand(1).isFI()) && // is a stack slot
87 (MI
->getOperand(2).isImm()) && // the imm is zero
88 (isZeroImm(MI
->getOperand(2))))
90 FrameIndex
= MI
->getOperand(1).getIndex();
91 return MI
->getOperand(0).getReg();
97 /// isStoreToStackSlot - If the specified machine instruction is a direct
98 /// store to a stack slot, return the virtual or physical register number of
99 /// the source reg along with the FrameIndex of the loaded stack slot. If
100 /// not, return 0. This predicate must return 0 if the instruction has
101 /// any side effects other than storing to the stack slot.
103 XCoreInstrInfo::isStoreToStackSlot(const MachineInstr
*MI
,
104 int &FrameIndex
) const {
105 int Opcode
= MI
->getOpcode();
106 if (Opcode
== XCore::STWFI
)
108 if ((MI
->getOperand(1).isFI()) && // is a stack slot
109 (MI
->getOperand(2).isImm()) && // the imm is zero
110 (isZeroImm(MI
->getOperand(2))))
112 FrameIndex
= MI
->getOperand(1).getIndex();
113 return MI
->getOperand(0).getReg();
119 /// isInvariantLoad - Return true if the specified instruction (which is marked
120 /// mayLoad) is loading from a location whose value is invariant across the
121 /// function. For example, loading a value from the constant pool or from
122 /// from the argument area of a function if it does not change. This should
123 /// only return true of *all* loads the instruction does are invariant (if it
124 /// does multiple loads).
126 XCoreInstrInfo::isInvariantLoad(const MachineInstr
*MI
) const {
127 // Loads from constants pools and loads from invariant argument slots are
129 int Opcode
= MI
->getOpcode();
130 if (Opcode
== XCore::LDWCP_ru6
|| Opcode
== XCore::LDWCP_lru6
) {
131 return MI
->getOperand(1).isCPI();
134 if (isLoadFromStackSlot(MI
, FrameIndex
)) {
135 const MachineFrameInfo
&MFI
=
136 *MI
->getParent()->getParent()->getFrameInfo();
137 return MFI
.isFixedObjectIndex(FrameIndex
) &&
138 MFI
.isImmutableObjectIndex(FrameIndex
);
143 //===----------------------------------------------------------------------===//
145 //===----------------------------------------------------------------------===//
147 static inline bool IsBRU(unsigned BrOpc
) {
148 return BrOpc
== XCore::BRFU_u6
149 || BrOpc
== XCore::BRFU_lu6
150 || BrOpc
== XCore::BRBU_u6
151 || BrOpc
== XCore::BRBU_lu6
;
154 static inline bool IsBRT(unsigned BrOpc
) {
155 return BrOpc
== XCore::BRFT_ru6
156 || BrOpc
== XCore::BRFT_lru6
157 || BrOpc
== XCore::BRBT_ru6
158 || BrOpc
== XCore::BRBT_lru6
;
161 static inline bool IsBRF(unsigned BrOpc
) {
162 return BrOpc
== XCore::BRFF_ru6
163 || BrOpc
== XCore::BRFF_lru6
164 || BrOpc
== XCore::BRBF_ru6
165 || BrOpc
== XCore::BRBF_lru6
;
168 static inline bool IsCondBranch(unsigned BrOpc
) {
169 return IsBRF(BrOpc
) || IsBRT(BrOpc
);
172 /// GetCondFromBranchOpc - Return the XCore CC that matches
173 /// the correspondent Branch instruction opcode.
174 static XCore::CondCode
GetCondFromBranchOpc(unsigned BrOpc
)
177 return XCore::COND_TRUE
;
178 } else if (IsBRF(BrOpc
)) {
179 return XCore::COND_FALSE
;
181 return XCore::COND_INVALID
;
185 /// GetCondBranchFromCond - Return the Branch instruction
186 /// opcode that matches the cc.
187 static inline unsigned GetCondBranchFromCond(XCore::CondCode CC
)
190 default: llvm_unreachable("Illegal condition code!");
191 case XCore::COND_TRUE
: return XCore::BRFT_lru6
;
192 case XCore::COND_FALSE
: return XCore::BRFF_lru6
;
196 /// GetOppositeBranchCondition - Return the inverse of the specified
197 /// condition, e.g. turning COND_E to COND_NE.
198 static inline XCore::CondCode
GetOppositeBranchCondition(XCore::CondCode CC
)
201 default: llvm_unreachable("Illegal condition code!");
202 case XCore::COND_TRUE
: return XCore::COND_FALSE
;
203 case XCore::COND_FALSE
: return XCore::COND_TRUE
;
207 /// AnalyzeBranch - Analyze the branching code at the end of MBB, returning
208 /// true if it cannot be understood (e.g. it's a switch dispatch or isn't
209 /// implemented for a target). Upon success, this returns false and returns
210 /// with the following information in various cases:
212 /// 1. If this block ends with no branches (it just falls through to its succ)
213 /// just return false, leaving TBB/FBB null.
214 /// 2. If this block ends with only an unconditional branch, it sets TBB to be
215 /// the destination block.
216 /// 3. If this block ends with an conditional branch and it falls through to
217 /// an successor block, it sets TBB to be the branch destination block and a
218 /// list of operands that evaluate the condition. These
219 /// operands can be passed to other TargetInstrInfo methods to create new
221 /// 4. If this block ends with an conditional branch and an unconditional
222 /// block, it returns the 'true' destination in TBB, the 'false' destination
223 /// in FBB, and a list of operands that evaluate the condition. These
224 /// operands can be passed to other TargetInstrInfo methods to create new
227 /// Note that RemoveBranch and InsertBranch must be implemented to support
228 /// cases where this method returns success.
231 XCoreInstrInfo::AnalyzeBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*&TBB
,
232 MachineBasicBlock
*&FBB
,
233 SmallVectorImpl
<MachineOperand
> &Cond
,
234 bool AllowModify
) const {
235 // If the block has no terminators, it just falls into the block after it.
236 MachineBasicBlock::iterator I
= MBB
.end();
237 if (I
== MBB
.begin() || !isUnpredicatedTerminator(--I
))
240 // Get the last instruction in the block.
241 MachineInstr
*LastInst
= I
;
243 // If there is only one terminator instruction, process it.
244 if (I
== MBB
.begin() || !isUnpredicatedTerminator(--I
)) {
245 if (IsBRU(LastInst
->getOpcode())) {
246 TBB
= LastInst
->getOperand(0).getMBB();
250 XCore::CondCode BranchCode
= GetCondFromBranchOpc(LastInst
->getOpcode());
251 if (BranchCode
== XCore::COND_INVALID
)
252 return true; // Can't handle indirect branch.
254 // Conditional branch
255 // Block ends with fall-through condbranch.
257 TBB
= LastInst
->getOperand(1).getMBB();
258 Cond
.push_back(MachineOperand::CreateImm(BranchCode
));
259 Cond
.push_back(LastInst
->getOperand(0));
263 // Get the instruction before it if it's a terminator.
264 MachineInstr
*SecondLastInst
= I
;
266 // If there are three terminators, we don't know what sort of block this is.
267 if (SecondLastInst
&& I
!= MBB
.begin() &&
268 isUnpredicatedTerminator(--I
))
271 unsigned SecondLastOpc
= SecondLastInst
->getOpcode();
272 XCore::CondCode BranchCode
= GetCondFromBranchOpc(SecondLastOpc
);
274 // If the block ends with conditional branch followed by unconditional,
276 if (BranchCode
!= XCore::COND_INVALID
277 && IsBRU(LastInst
->getOpcode())) {
279 TBB
= SecondLastInst
->getOperand(1).getMBB();
280 Cond
.push_back(MachineOperand::CreateImm(BranchCode
));
281 Cond
.push_back(SecondLastInst
->getOperand(0));
283 FBB
= LastInst
->getOperand(0).getMBB();
287 // If the block ends with two unconditional branches, handle it. The second
288 // one is not executed, so remove it.
289 if (IsBRU(SecondLastInst
->getOpcode()) &&
290 IsBRU(LastInst
->getOpcode())) {
291 TBB
= SecondLastInst
->getOperand(0).getMBB();
294 I
->eraseFromParent();
298 // Otherwise, can't handle this.
303 XCoreInstrInfo::InsertBranch(MachineBasicBlock
&MBB
,MachineBasicBlock
*TBB
,
304 MachineBasicBlock
*FBB
,
305 const SmallVectorImpl
<MachineOperand
> &Cond
)const{
306 // FIXME there should probably be a DebugLoc argument here
307 DebugLoc dl
= DebugLoc::getUnknownLoc();
308 // Shouldn't be a fall through.
309 assert(TBB
&& "InsertBranch must not be told to insert a fallthrough");
310 assert((Cond
.size() == 2 || Cond
.size() == 0) &&
311 "Unexpected number of components!");
313 if (FBB
== 0) { // One way branch.
315 // Unconditional branch
316 BuildMI(&MBB
, dl
, get(XCore::BRFU_lu6
)).addMBB(TBB
);
318 // Conditional branch.
319 unsigned Opc
= GetCondBranchFromCond((XCore::CondCode
)Cond
[0].getImm());
320 BuildMI(&MBB
, dl
, get(Opc
)).addReg(Cond
[1].getReg())
326 // Two-way Conditional branch.
327 assert(Cond
.size() == 2 && "Unexpected number of components!");
328 unsigned Opc
= GetCondBranchFromCond((XCore::CondCode
)Cond
[0].getImm());
329 BuildMI(&MBB
, dl
, get(Opc
)).addReg(Cond
[1].getReg())
331 BuildMI(&MBB
, dl
, get(XCore::BRFU_lu6
)).addMBB(FBB
);
336 XCoreInstrInfo::RemoveBranch(MachineBasicBlock
&MBB
) const {
337 MachineBasicBlock::iterator I
= MBB
.end();
338 if (I
== MBB
.begin()) return 0;
340 if (!IsBRU(I
->getOpcode()) && !IsCondBranch(I
->getOpcode()))
343 // Remove the branch.
344 I
->eraseFromParent();
348 if (I
== MBB
.begin()) return 1;
350 if (!IsCondBranch(I
->getOpcode()))
353 // Remove the branch.
354 I
->eraseFromParent();
358 bool XCoreInstrInfo::copyRegToReg(MachineBasicBlock
&MBB
,
359 MachineBasicBlock::iterator I
,
360 unsigned DestReg
, unsigned SrcReg
,
361 const TargetRegisterClass
*DestRC
,
362 const TargetRegisterClass
*SrcRC
) const {
363 DebugLoc DL
= DebugLoc::getUnknownLoc();
364 if (I
!= MBB
.end()) DL
= I
->getDebugLoc();
366 if (DestRC
== SrcRC
) {
367 if (DestRC
== XCore::GRRegsRegisterClass
) {
368 BuildMI(MBB
, I
, DL
, get(XCore::ADD_2rus
), DestReg
)
377 if (SrcRC
== XCore::RRegsRegisterClass
&& SrcReg
== XCore::SP
&&
378 DestRC
== XCore::GRRegsRegisterClass
) {
379 BuildMI(MBB
, I
, DL
, get(XCore::LDAWSP_ru6
), DestReg
)
383 if (DestRC
== XCore::RRegsRegisterClass
&& DestReg
== XCore::SP
&&
384 SrcRC
== XCore::GRRegsRegisterClass
) {
385 BuildMI(MBB
, I
, DL
, get(XCore::SETSP_1r
))
392 void XCoreInstrInfo::storeRegToStackSlot(MachineBasicBlock
&MBB
,
393 MachineBasicBlock::iterator I
,
394 unsigned SrcReg
, bool isKill
,
396 const TargetRegisterClass
*RC
) const
398 DebugLoc DL
= DebugLoc::getUnknownLoc();
399 if (I
!= MBB
.end()) DL
= I
->getDebugLoc();
400 BuildMI(MBB
, I
, DL
, get(XCore::STWFI
))
401 .addReg(SrcReg
, getKillRegState(isKill
))
402 .addFrameIndex(FrameIndex
)
406 void XCoreInstrInfo::loadRegFromStackSlot(MachineBasicBlock
&MBB
,
407 MachineBasicBlock::iterator I
,
408 unsigned DestReg
, int FrameIndex
,
409 const TargetRegisterClass
*RC
) const
411 DebugLoc DL
= DebugLoc::getUnknownLoc();
412 if (I
!= MBB
.end()) DL
= I
->getDebugLoc();
413 BuildMI(MBB
, I
, DL
, get(XCore::LDWFI
), DestReg
)
414 .addFrameIndex(FrameIndex
)
418 bool XCoreInstrInfo::spillCalleeSavedRegisters(MachineBasicBlock
&MBB
,
419 MachineBasicBlock::iterator MI
,
420 const std::vector
<CalleeSavedInfo
> &CSI
) const
425 MachineFunction
*MF
= MBB
.getParent();
426 const MachineFrameInfo
*MFI
= MF
->getFrameInfo();
427 MachineModuleInfo
*MMI
= MFI
->getMachineModuleInfo();
428 XCoreFunctionInfo
*XFI
= MF
->getInfo
<XCoreFunctionInfo
>();
430 bool emitFrameMoves
= XCoreRegisterInfo::needsFrameMoves(*MF
);
432 DebugLoc DL
= DebugLoc::getUnknownLoc();
433 if (MI
!= MBB
.end()) DL
= MI
->getDebugLoc();
435 for (std::vector
<CalleeSavedInfo
>::const_iterator it
= CSI
.begin();
436 it
!= CSI
.end(); ++it
) {
437 // Add the callee-saved register as live-in. It's killed at the spill.
438 MBB
.addLiveIn(it
->getReg());
440 storeRegToStackSlot(MBB
, MI
, it
->getReg(), true,
441 it
->getFrameIdx(), it
->getRegClass());
442 if (emitFrameMoves
) {
443 unsigned SaveLabelId
= MMI
->NextLabelID();
444 BuildMI(MBB
, MI
, DL
, get(XCore::DBG_LABEL
)).addImm(SaveLabelId
);
445 XFI
->getSpillLabels().push_back(
446 std::pair
<unsigned, CalleeSavedInfo
>(SaveLabelId
, *it
));
452 bool XCoreInstrInfo::restoreCalleeSavedRegisters(MachineBasicBlock
&MBB
,
453 MachineBasicBlock::iterator MI
,
454 const std::vector
<CalleeSavedInfo
> &CSI
) const
456 bool AtStart
= MI
== MBB
.begin();
457 MachineBasicBlock::iterator BeforeI
= MI
;
460 for (std::vector
<CalleeSavedInfo
>::const_iterator it
= CSI
.begin();
461 it
!= CSI
.end(); ++it
) {
463 loadRegFromStackSlot(MBB
, MI
, it
->getReg(),
466 assert(MI
!= MBB
.begin() &&
467 "loadRegFromStackSlot didn't insert any code!");
468 // Insert in reverse order. loadRegFromStackSlot can insert multiple
480 /// BlockHasNoFallThrough - Analyse if MachineBasicBlock does not
481 /// fall-through into its successor block.
482 bool XCoreInstrInfo::
483 BlockHasNoFallThrough(const MachineBasicBlock
&MBB
) const
485 if (MBB
.empty()) return false;
487 switch (MBB
.back().getOpcode()) {
488 case XCore::RETSP_u6
: // Return.
489 case XCore::RETSP_lu6
:
490 case XCore::BAU_1r
: // Indirect branch.
491 case XCore::BRFU_u6
: // Uncond branch.
492 case XCore::BRFU_lu6
:
494 case XCore::BRBU_lu6
:
496 default: return false;
500 /// ReverseBranchCondition - Return the inverse opcode of the
501 /// specified Branch instruction.
502 bool XCoreInstrInfo::
503 ReverseBranchCondition(SmallVectorImpl
<MachineOperand
> &Cond
) const
505 assert((Cond
.size() == 2) &&
506 "Invalid XCore branch condition!");
507 Cond
[0].setImm(GetOppositeBranchCondition((XCore::CondCode
)Cond
[0].getImm()));