1 //===- MipsInstrInfo.cpp - Mips 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 Mips implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #include "MipsInstrInfo.h"
15 #include "MipsTargetMachine.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/CodeGen/MachineInstrBuilder.h"
18 #include "MipsGenInstrInfo.inc"
22 MipsInstrInfo::MipsInstrInfo(MipsTargetMachine
&tm
)
23 : TargetInstrInfoImpl(MipsInsts
, array_lengthof(MipsInsts
)),
24 TM(tm
), RI(*TM
.getSubtargetImpl(), *this) {}
26 static bool isZeroImm(const MachineOperand
&op
) {
27 return op
.isImm() && op
.getImm() == 0;
30 /// Return true if the instruction is a register to register move and
31 /// leave the source and dest operands in the passed parameters.
33 isMoveInstr(const MachineInstr
&MI
, unsigned &SrcReg
, unsigned &DstReg
,
34 unsigned &SrcSubIdx
, unsigned &DstSubIdx
) const
36 SrcSubIdx
= DstSubIdx
= 0; // No sub-registers.
38 // addu $dst, $src, $zero || addu $dst, $zero, $src
39 // or $dst, $src, $zero || or $dst, $zero, $src
40 if ((MI
.getOpcode() == Mips::ADDu
) || (MI
.getOpcode() == Mips::OR
)) {
41 if (MI
.getOperand(1).getReg() == Mips::ZERO
) {
42 DstReg
= MI
.getOperand(0).getReg();
43 SrcReg
= MI
.getOperand(2).getReg();
45 } else if (MI
.getOperand(2).getReg() == Mips::ZERO
) {
46 DstReg
= MI
.getOperand(0).getReg();
47 SrcReg
= MI
.getOperand(1).getReg();
55 if (MI
.getOpcode() == Mips::FMOV_SO32
|| MI
.getOpcode() == Mips::FMOV_AS32
||
56 MI
.getOpcode() == Mips::FMOV_D32
|| MI
.getOpcode() == Mips::MFC1A
||
57 MI
.getOpcode() == Mips::MFC1
|| MI
.getOpcode() == Mips::MTC1A
||
58 MI
.getOpcode() == Mips::MTC1
) {
59 DstReg
= MI
.getOperand(0).getReg();
60 SrcReg
= MI
.getOperand(1).getReg();
64 // addiu $dst, $src, 0
65 if (MI
.getOpcode() == Mips::ADDiu
) {
66 if ((MI
.getOperand(1).isReg()) && (isZeroImm(MI
.getOperand(2)))) {
67 DstReg
= MI
.getOperand(0).getReg();
68 SrcReg
= MI
.getOperand(1).getReg();
75 /// isLoadFromStackSlot - If the specified machine instruction is a direct
76 /// load from a stack slot, return the virtual or physical register number of
77 /// the destination along with the FrameIndex of the loaded stack slot. If
78 /// not, return 0. This predicate must return 0 if the instruction has
79 /// any side effects other than loading from the stack slot.
80 unsigned MipsInstrInfo::
81 isLoadFromStackSlot(const MachineInstr
*MI
, int &FrameIndex
) const
83 if ((MI
->getOpcode() == Mips::LW
) || (MI
->getOpcode() == Mips::LWC1
) ||
84 (MI
->getOpcode() == Mips::LWC1A
) || (MI
->getOpcode() == Mips::LDC1
)) {
85 if ((MI
->getOperand(2).isFI()) && // is a stack slot
86 (MI
->getOperand(1).isImm()) && // the imm is zero
87 (isZeroImm(MI
->getOperand(1)))) {
88 FrameIndex
= MI
->getOperand(2).getIndex();
89 return MI
->getOperand(0).getReg();
96 /// isStoreToStackSlot - If the specified machine instruction is a direct
97 /// store to a stack slot, return the virtual or physical register number of
98 /// the source reg along with the FrameIndex of the loaded stack slot. If
99 /// not, return 0. This predicate must return 0 if the instruction has
100 /// any side effects other than storing to the stack slot.
101 unsigned MipsInstrInfo::
102 isStoreToStackSlot(const MachineInstr
*MI
, int &FrameIndex
) const
104 if ((MI
->getOpcode() == Mips::SW
) || (MI
->getOpcode() == Mips::SWC1
) ||
105 (MI
->getOpcode() == Mips::SWC1A
) || (MI
->getOpcode() == Mips::SDC1
)) {
106 if ((MI
->getOperand(2).isFI()) && // is a stack slot
107 (MI
->getOperand(1).isImm()) && // the imm is zero
108 (isZeroImm(MI
->getOperand(1)))) {
109 FrameIndex
= MI
->getOperand(2).getIndex();
110 return MI
->getOperand(0).getReg();
116 /// insertNoop - If data hazard condition is found insert the target nop
119 insertNoop(MachineBasicBlock
&MBB
, MachineBasicBlock::iterator MI
) const
121 DebugLoc DL
= DebugLoc::getUnknownLoc();
122 if (MI
!= MBB
.end()) DL
= MI
->getDebugLoc();
123 BuildMI(MBB
, MI
, DL
, get(Mips::NOP
));
127 copyRegToReg(MachineBasicBlock
&MBB
, MachineBasicBlock::iterator I
,
128 unsigned DestReg
, unsigned SrcReg
,
129 const TargetRegisterClass
*DestRC
,
130 const TargetRegisterClass
*SrcRC
) const {
131 DebugLoc DL
= DebugLoc::getUnknownLoc();
132 if (I
!= MBB
.end()) DL
= I
->getDebugLoc();
134 if (DestRC
!= SrcRC
) {
135 if ((DestRC
== Mips::CPURegsRegisterClass
) &&
136 (SrcRC
== Mips::FGR32RegisterClass
))
137 BuildMI(MBB
, I
, DL
, get(Mips::MFC1
), DestReg
).addReg(SrcReg
);
138 else if ((DestRC
== Mips::CPURegsRegisterClass
) &&
139 (SrcRC
== Mips::AFGR32RegisterClass
))
140 BuildMI(MBB
, I
, DL
, get(Mips::MFC1A
), DestReg
).addReg(SrcReg
);
141 else if ((DestRC
== Mips::FGR32RegisterClass
) &&
142 (SrcRC
== Mips::CPURegsRegisterClass
))
143 BuildMI(MBB
, I
, DL
, get(Mips::MTC1
), DestReg
).addReg(SrcReg
);
144 else if ((DestRC
== Mips::AFGR32RegisterClass
) &&
145 (SrcRC
== Mips::CPURegsRegisterClass
))
146 BuildMI(MBB
, I
, DL
, get(Mips::MTC1A
), DestReg
).addReg(SrcReg
);
147 else if ((DestRC
== Mips::AFGR32RegisterClass
) &&
148 (SrcRC
== Mips::CPURegsRegisterClass
))
149 BuildMI(MBB
, I
, DL
, get(Mips::MTC1A
), DestReg
).addReg(SrcReg
);
150 else if ((SrcRC
== Mips::CCRRegisterClass
) &&
151 (SrcReg
== Mips::FCR31
))
152 return true; // This register is used implicitly, no copy needed.
153 else if ((DestRC
== Mips::CCRRegisterClass
) &&
154 (DestReg
== Mips::FCR31
))
155 return true; // This register is used implicitly, no copy needed.
156 else if ((DestRC
== Mips::HILORegisterClass
) &&
157 (SrcRC
== Mips::CPURegsRegisterClass
)) {
158 unsigned Opc
= (DestReg
== Mips::HI
) ? Mips::MTHI
: Mips::MTLO
;
159 BuildMI(MBB
, I
, DL
, get(Opc
), DestReg
);
160 } else if ((SrcRC
== Mips::HILORegisterClass
) &&
161 (DestRC
== Mips::CPURegsRegisterClass
)) {
162 unsigned Opc
= (SrcReg
== Mips::HI
) ? Mips::MFHI
: Mips::MFLO
;
163 BuildMI(MBB
, I
, DL
, get(Opc
), DestReg
);
165 // DestRC != SrcRC, Can't copy this register
171 if (DestRC
== Mips::CPURegsRegisterClass
)
172 BuildMI(MBB
, I
, DL
, get(Mips::ADDu
), DestReg
).addReg(Mips::ZERO
)
174 else if (DestRC
== Mips::FGR32RegisterClass
)
175 BuildMI(MBB
, I
, DL
, get(Mips::FMOV_SO32
), DestReg
).addReg(SrcReg
);
176 else if (DestRC
== Mips::AFGR32RegisterClass
)
177 BuildMI(MBB
, I
, DL
, get(Mips::FMOV_AS32
), DestReg
).addReg(SrcReg
);
178 else if (DestRC
== Mips::AFGR64RegisterClass
)
179 BuildMI(MBB
, I
, DL
, get(Mips::FMOV_D32
), DestReg
).addReg(SrcReg
);
181 // Can't copy this register
188 storeRegToStackSlot(MachineBasicBlock
&MBB
, MachineBasicBlock::iterator I
,
189 unsigned SrcReg
, bool isKill
, int FI
,
190 const TargetRegisterClass
*RC
) const
194 DebugLoc DL
= DebugLoc::getUnknownLoc();
195 if (I
!= MBB
.end()) DL
= I
->getDebugLoc();
197 if (RC
== Mips::CPURegsRegisterClass
)
199 else if (RC
== Mips::FGR32RegisterClass
)
201 else if (RC
== Mips::AFGR32RegisterClass
)
203 else if (RC
== Mips::AFGR64RegisterClass
)
206 assert(0 && "Can't store this register to stack slot");
208 BuildMI(MBB
, I
, DL
, get(Opc
)).addReg(SrcReg
, false, false, isKill
)
209 .addImm(0).addFrameIndex(FI
);
212 void MipsInstrInfo::storeRegToAddr(MachineFunction
&MF
, unsigned SrcReg
,
213 bool isKill
, SmallVectorImpl
<MachineOperand
> &Addr
,
214 const TargetRegisterClass
*RC
, SmallVectorImpl
<MachineInstr
*> &NewMIs
) const
217 if (RC
== Mips::CPURegsRegisterClass
)
219 else if (RC
== Mips::FGR32RegisterClass
)
221 else if (RC
== Mips::AFGR32RegisterClass
)
223 else if (RC
== Mips::AFGR64RegisterClass
)
226 assert(0 && "Can't store this register");
228 DebugLoc DL
= DebugLoc::getUnknownLoc();
229 MachineInstrBuilder MIB
= BuildMI(MF
, DL
, get(Opc
))
230 .addReg(SrcReg
, false, false, isKill
);
231 for (unsigned i
= 0, e
= Addr
.size(); i
!= e
; ++i
)
232 MIB
.addOperand(Addr
[i
]);
233 NewMIs
.push_back(MIB
);
238 loadRegFromStackSlot(MachineBasicBlock
&MBB
, MachineBasicBlock::iterator I
,
239 unsigned DestReg
, int FI
,
240 const TargetRegisterClass
*RC
) const
243 if (RC
== Mips::CPURegsRegisterClass
)
245 else if (RC
== Mips::FGR32RegisterClass
)
247 else if (RC
== Mips::AFGR32RegisterClass
)
249 else if (RC
== Mips::AFGR64RegisterClass
)
252 assert(0 && "Can't load this register from stack slot");
254 DebugLoc DL
= DebugLoc::getUnknownLoc();
255 if (I
!= MBB
.end()) DL
= I
->getDebugLoc();
256 BuildMI(MBB
, I
, DL
, get(Opc
), DestReg
).addImm(0).addFrameIndex(FI
);
259 void MipsInstrInfo::loadRegFromAddr(MachineFunction
&MF
, unsigned DestReg
,
260 SmallVectorImpl
<MachineOperand
> &Addr
,
261 const TargetRegisterClass
*RC
,
262 SmallVectorImpl
<MachineInstr
*> &NewMIs
) const {
264 if (RC
== Mips::CPURegsRegisterClass
)
266 else if (RC
== Mips::FGR32RegisterClass
)
268 else if (RC
== Mips::AFGR32RegisterClass
)
270 else if (RC
== Mips::AFGR64RegisterClass
)
273 assert(0 && "Can't load this register");
275 DebugLoc DL
= DebugLoc::getUnknownLoc();
276 MachineInstrBuilder MIB
= BuildMI(MF
, DL
, get(Opc
), DestReg
);
277 for (unsigned i
= 0, e
= Addr
.size(); i
!= e
; ++i
)
278 MIB
.addOperand(Addr
[i
]);
279 NewMIs
.push_back(MIB
);
283 MachineInstr
*MipsInstrInfo::
284 foldMemoryOperandImpl(MachineFunction
&MF
,
286 const SmallVectorImpl
<unsigned> &Ops
, int FI
) const
288 if (Ops
.size() != 1) return NULL
;
290 MachineInstr
*NewMI
= NULL
;
292 switch (MI
->getOpcode()) {
294 if ((MI
->getOperand(0).isReg()) &&
295 (MI
->getOperand(1).isReg()) &&
296 (MI
->getOperand(1).getReg() == Mips::ZERO
) &&
297 (MI
->getOperand(2).isReg())) {
298 if (Ops
[0] == 0) { // COPY -> STORE
299 unsigned SrcReg
= MI
->getOperand(2).getReg();
300 bool isKill
= MI
->getOperand(2).isKill();
301 NewMI
= BuildMI(MF
, MI
->getDebugLoc(), get(Mips::SW
))
302 .addReg(SrcReg
, false, false, isKill
)
303 .addImm(0).addFrameIndex(FI
);
304 } else { // COPY -> LOAD
305 unsigned DstReg
= MI
->getOperand(0).getReg();
306 bool isDead
= MI
->getOperand(0).isDead();
307 NewMI
= BuildMI(MF
, MI
->getDebugLoc(), get(Mips::LW
))
308 .addReg(DstReg
, true, false, false, isDead
)
309 .addImm(0).addFrameIndex(FI
);
313 case Mips::FMOV_SO32
:
314 case Mips::FMOV_AS32
:
316 if ((MI
->getOperand(0).isReg()) &&
317 (MI
->getOperand(1).isReg())) {
318 const TargetRegisterClass
319 *RC
= RI
.getRegClass(MI
->getOperand(0).getReg());
320 unsigned StoreOpc
, LoadOpc
;
322 if (RC
== Mips::FGR32RegisterClass
) {
323 LoadOpc
= Mips::LWC1
; StoreOpc
= Mips::SWC1
;
324 } else if (RC
== Mips::AFGR32RegisterClass
) {
325 LoadOpc
= Mips::LWC1A
; StoreOpc
= Mips::SWC1A
;
326 } else if (RC
== Mips::AFGR64RegisterClass
) {
327 LoadOpc
= Mips::LDC1
; StoreOpc
= Mips::SDC1
;
329 assert(0 && "foldMemoryOperandImpl register unknown");
331 if (Ops
[0] == 0) { // COPY -> STORE
332 unsigned SrcReg
= MI
->getOperand(1).getReg();
333 bool isKill
= MI
->getOperand(1).isKill();
334 NewMI
= BuildMI(MF
, MI
->getDebugLoc(), get(StoreOpc
))
335 .addReg(SrcReg
, false, false, isKill
)
336 .addImm(0).addFrameIndex(FI
) ;
337 } else { // COPY -> LOAD
338 unsigned DstReg
= MI
->getOperand(0).getReg();
339 bool isDead
= MI
->getOperand(0).isDead();
340 NewMI
= BuildMI(MF
, MI
->getDebugLoc(), get(LoadOpc
))
341 .addReg(DstReg
, true, false, false, isDead
)
342 .addImm(0).addFrameIndex(FI
);
351 //===----------------------------------------------------------------------===//
353 //===----------------------------------------------------------------------===//
355 /// GetCondFromBranchOpc - Return the Mips CC that matches
356 /// the correspondent Branch instruction opcode.
357 static Mips::CondCode
GetCondFromBranchOpc(unsigned BrOpc
)
360 default: return Mips::COND_INVALID
;
361 case Mips::BEQ
: return Mips::COND_E
;
362 case Mips::BNE
: return Mips::COND_NE
;
363 case Mips::BGTZ
: return Mips::COND_GZ
;
364 case Mips::BGEZ
: return Mips::COND_GEZ
;
365 case Mips::BLTZ
: return Mips::COND_LZ
;
366 case Mips::BLEZ
: return Mips::COND_LEZ
;
368 // We dont do fp branch analysis yet!
370 case Mips::BC1F
: return Mips::COND_INVALID
;
374 /// GetCondBranchFromCond - Return the Branch instruction
375 /// opcode that matches the cc.
376 unsigned Mips::GetCondBranchFromCond(Mips::CondCode CC
)
379 default: assert(0 && "Illegal condition code!");
380 case Mips::COND_E
: return Mips::BEQ
;
381 case Mips::COND_NE
: return Mips::BNE
;
382 case Mips::COND_GZ
: return Mips::BGTZ
;
383 case Mips::COND_GEZ
: return Mips::BGEZ
;
384 case Mips::COND_LZ
: return Mips::BLTZ
;
385 case Mips::COND_LEZ
: return Mips::BLEZ
;
390 case Mips::FCOND_UEQ
:
391 case Mips::FCOND_OLT
:
392 case Mips::FCOND_ULT
:
393 case Mips::FCOND_OLE
:
394 case Mips::FCOND_ULE
:
396 case Mips::FCOND_NGLE
:
397 case Mips::FCOND_SEQ
:
398 case Mips::FCOND_NGL
:
400 case Mips::FCOND_NGE
:
402 case Mips::FCOND_NGT
: return Mips::BC1T
;
406 case Mips::FCOND_NEQ
:
407 case Mips::FCOND_OGL
:
408 case Mips::FCOND_UGE
:
409 case Mips::FCOND_OGE
:
410 case Mips::FCOND_UGT
:
411 case Mips::FCOND_OGT
:
413 case Mips::FCOND_GLE
:
414 case Mips::FCOND_SNE
:
416 case Mips::FCOND_NLT
:
418 case Mips::FCOND_NLE
:
419 case Mips::FCOND_GT
: return Mips::BC1F
;
423 /// GetOppositeBranchCondition - Return the inverse of the specified
424 /// condition, e.g. turning COND_E to COND_NE.
425 Mips::CondCode
Mips::GetOppositeBranchCondition(Mips::CondCode CC
)
428 default: assert(0 && "Illegal condition code!");
429 case Mips::COND_E
: return Mips::COND_NE
;
430 case Mips::COND_NE
: return Mips::COND_E
;
431 case Mips::COND_GZ
: return Mips::COND_LEZ
;
432 case Mips::COND_GEZ
: return Mips::COND_LZ
;
433 case Mips::COND_LZ
: return Mips::COND_GEZ
;
434 case Mips::COND_LEZ
: return Mips::COND_GZ
;
435 case Mips::FCOND_F
: return Mips::FCOND_T
;
436 case Mips::FCOND_UN
: return Mips::FCOND_OR
;
437 case Mips::FCOND_EQ
: return Mips::FCOND_NEQ
;
438 case Mips::FCOND_UEQ
: return Mips::FCOND_OGL
;
439 case Mips::FCOND_OLT
: return Mips::FCOND_UGE
;
440 case Mips::FCOND_ULT
: return Mips::FCOND_OGE
;
441 case Mips::FCOND_OLE
: return Mips::FCOND_UGT
;
442 case Mips::FCOND_ULE
: return Mips::FCOND_OGT
;
443 case Mips::FCOND_SF
: return Mips::FCOND_ST
;
444 case Mips::FCOND_NGLE
:return Mips::FCOND_GLE
;
445 case Mips::FCOND_SEQ
: return Mips::FCOND_SNE
;
446 case Mips::FCOND_NGL
: return Mips::FCOND_GL
;
447 case Mips::FCOND_LT
: return Mips::FCOND_NLT
;
448 case Mips::FCOND_NGE
: return Mips::FCOND_GE
;
449 case Mips::FCOND_LE
: return Mips::FCOND_NLE
;
450 case Mips::FCOND_NGT
: return Mips::FCOND_GT
;
454 bool MipsInstrInfo::AnalyzeBranch(MachineBasicBlock
&MBB
,
455 MachineBasicBlock
*&TBB
,
456 MachineBasicBlock
*&FBB
,
457 SmallVectorImpl
<MachineOperand
> &Cond
,
458 bool AllowModify
) const
460 // If the block has no terminators, it just falls into the block after it.
461 MachineBasicBlock::iterator I
= MBB
.end();
462 if (I
== MBB
.begin() || !isUnpredicatedTerminator(--I
))
465 // Get the last instruction in the block.
466 MachineInstr
*LastInst
= I
;
468 // If there is only one terminator instruction, process it.
469 unsigned LastOpc
= LastInst
->getOpcode();
470 if (I
== MBB
.begin() || !isUnpredicatedTerminator(--I
)) {
471 if (!LastInst
->getDesc().isBranch())
474 // Unconditional branch
475 if (LastOpc
== Mips::J
) {
476 TBB
= LastInst
->getOperand(0).getMBB();
480 Mips::CondCode BranchCode
= GetCondFromBranchOpc(LastInst
->getOpcode());
481 if (BranchCode
== Mips::COND_INVALID
)
482 return true; // Can't handle indirect branch.
484 // Conditional branch
485 // Block ends with fall-through condbranch.
486 if (LastOpc
!= Mips::COND_INVALID
) {
487 int LastNumOp
= LastInst
->getNumOperands();
489 TBB
= LastInst
->getOperand(LastNumOp
-1).getMBB();
490 Cond
.push_back(MachineOperand::CreateImm(BranchCode
));
492 for (int i
=0; i
<LastNumOp
-1; i
++) {
493 Cond
.push_back(LastInst
->getOperand(i
));
500 // Get the instruction before it if it is a terminator.
501 MachineInstr
*SecondLastInst
= I
;
503 // If there are three terminators, we don't know what sort of block this is.
504 if (SecondLastInst
&& I
!= MBB
.begin() && isUnpredicatedTerminator(--I
))
507 // If the block ends with Mips::J and a Mips::BNE/Mips::BEQ, handle it.
508 unsigned SecondLastOpc
= SecondLastInst
->getOpcode();
509 Mips::CondCode BranchCode
= GetCondFromBranchOpc(SecondLastOpc
);
511 if (BranchCode
!= Mips::COND_INVALID
&& LastOpc
== Mips::J
) {
512 int SecondNumOp
= SecondLastInst
->getNumOperands();
514 TBB
= SecondLastInst
->getOperand(SecondNumOp
-1).getMBB();
515 Cond
.push_back(MachineOperand::CreateImm(BranchCode
));
517 for (int i
=0; i
<SecondNumOp
-1; i
++) {
518 Cond
.push_back(SecondLastInst
->getOperand(i
));
521 FBB
= LastInst
->getOperand(0).getMBB();
525 // If the block ends with two unconditional branches, handle it. The last
526 // one is not executed, so remove it.
527 if ((SecondLastOpc
== Mips::J
) && (LastOpc
== Mips::J
)) {
528 TBB
= SecondLastInst
->getOperand(0).getMBB();
531 I
->eraseFromParent();
535 // Otherwise, can't handle this.
539 unsigned MipsInstrInfo::
540 InsertBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*TBB
,
541 MachineBasicBlock
*FBB
,
542 const SmallVectorImpl
<MachineOperand
> &Cond
) const {
543 // FIXME this should probably have a DebugLoc argument
544 DebugLoc dl
= DebugLoc::getUnknownLoc();
545 // Shouldn't be a fall through.
546 assert(TBB
&& "InsertBranch must not be told to insert a fallthrough");
547 assert((Cond
.size() == 3 || Cond
.size() == 2 || Cond
.size() == 0) &&
548 "Mips branch conditions can have two|three components!");
550 if (FBB
== 0) { // One way branch.
552 // Unconditional branch?
553 BuildMI(&MBB
, dl
, get(Mips::J
)).addMBB(TBB
);
555 // Conditional branch.
556 unsigned Opc
= GetCondBranchFromCond((Mips::CondCode
)Cond
[0].getImm());
557 const TargetInstrDesc
&TID
= get(Opc
);
559 if (TID
.getNumOperands() == 3)
560 BuildMI(&MBB
, dl
, TID
).addReg(Cond
[1].getReg())
561 .addReg(Cond
[2].getReg())
564 BuildMI(&MBB
, dl
, TID
).addReg(Cond
[1].getReg())
571 // Two-way Conditional branch.
572 unsigned Opc
= GetCondBranchFromCond((Mips::CondCode
)Cond
[0].getImm());
573 const TargetInstrDesc
&TID
= get(Opc
);
575 if (TID
.getNumOperands() == 3)
576 BuildMI(&MBB
, dl
, TID
).addReg(Cond
[1].getReg()).addReg(Cond
[2].getReg())
579 BuildMI(&MBB
, dl
, TID
).addReg(Cond
[1].getReg()).addMBB(TBB
);
581 BuildMI(&MBB
, dl
, get(Mips::J
)).addMBB(FBB
);
585 unsigned MipsInstrInfo::
586 RemoveBranch(MachineBasicBlock
&MBB
) const
588 MachineBasicBlock::iterator I
= MBB
.end();
589 if (I
== MBB
.begin()) return 0;
591 if (I
->getOpcode() != Mips::J
&&
592 GetCondFromBranchOpc(I
->getOpcode()) == Mips::COND_INVALID
)
595 // Remove the branch.
596 I
->eraseFromParent();
600 if (I
== MBB
.begin()) return 1;
602 if (GetCondFromBranchOpc(I
->getOpcode()) == Mips::COND_INVALID
)
605 // Remove the branch.
606 I
->eraseFromParent();
610 /// BlockHasNoFallThrough - Analyze if MachineBasicBlock does not
611 /// fall-through into its successor block.
613 BlockHasNoFallThrough(const MachineBasicBlock
&MBB
) const
615 if (MBB
.empty()) return false;
617 switch (MBB
.back().getOpcode()) {
618 case Mips::RET
: // Return.
619 case Mips::JR
: // Indirect branch.
620 case Mips::J
: // Uncond branch.
622 default: return false;
626 /// ReverseBranchCondition - Return the inverse opcode of the
627 /// specified Branch instruction.
629 ReverseBranchCondition(SmallVectorImpl
<MachineOperand
> &Cond
) const
631 assert( (Cond
.size() == 3 || Cond
.size() == 2) &&
632 "Invalid Mips branch condition!");
633 Cond
[0].setImm(GetOppositeBranchCondition((Mips::CondCode
)Cond
[0].getImm()));