Jia Liu | c570711 | 2012-02-17 08:55:11 +0000 | [diff] [blame^] | 1 | //===-- MipsInstrInfo.cpp - Mips Instruction Information ------------------===// |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 7 | // |
Akira Hatanaka | 4552c9a | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file contains the Mips implementation of the TargetInstrInfo class. |
| 11 | // |
Akira Hatanaka | 4552c9a | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 13 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 14 | #include "MipsInstrInfo.h" |
Bruno Cardoso Lopes | 43d526d | 2008-07-14 14:42:54 +0000 | [diff] [blame] | 15 | #include "MipsTargetMachine.h" |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 16 | #include "MipsMachineFunction.h" |
Akira Hatanaka | 794bf17 | 2011-07-07 23:56:50 +0000 | [diff] [blame] | 17 | #include "InstPrinter/MipsInstPrinter.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 20 | #include "llvm/Support/ErrorHandling.h" |
Evan Cheng | 3e74d6f | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 21 | #include "llvm/Support/TargetRegistry.h" |
Evan Cheng | 59ee62d | 2011-07-11 03:57:24 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/STLExtras.h" |
Evan Cheng | 22fee2d | 2011-06-28 20:07:07 +0000 | [diff] [blame] | 23 | |
Evan Cheng | 4db3cff | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 24 | #define GET_INSTRINFO_CTOR |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 25 | #include "MipsGenInstrInfo.inc" |
| 26 | |
| 27 | using namespace llvm; |
| 28 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 29 | MipsInstrInfo::MipsInstrInfo(MipsTargetMachine &tm) |
Evan Cheng | 4db3cff | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 30 | : MipsGenInstrInfo(Mips::ADJCALLSTACKDOWN, Mips::ADJCALLSTACKUP), |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 31 | TM(tm), IsN64(TM.getSubtarget<MipsSubtarget>().isABI_N64()), |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 32 | RI(*TM.getSubtargetImpl(), *this), |
| 33 | UncondBrOpc(TM.getRelocationModel() == Reloc::PIC_ ? Mips::B : Mips::J) {} |
Akira Hatanaka | 794bf17 | 2011-07-07 23:56:50 +0000 | [diff] [blame] | 34 | |
| 35 | const MipsRegisterInfo &MipsInstrInfo::getRegisterInfo() const { |
| 36 | return RI; |
| 37 | } |
| 38 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 39 | static bool isZeroImm(const MachineOperand &op) { |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 40 | return op.isImm() && op.getImm() == 0; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 43 | /// isLoadFromStackSlot - If the specified machine instruction is a direct |
| 44 | /// load from a stack slot, return the virtual or physical register number of |
| 45 | /// the destination along with the FrameIndex of the loaded stack slot. If |
| 46 | /// not, return 0. This predicate must return 0 if the instruction has |
| 47 | /// any side effects other than loading from the stack slot. |
| 48 | unsigned MipsInstrInfo:: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 49 | isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 50 | { |
Akira Hatanaka | 1acb7df | 2011-10-11 01:12:52 +0000 | [diff] [blame] | 51 | unsigned Opc = MI->getOpcode(); |
| 52 | |
| 53 | if ((Opc == Mips::LW) || (Opc == Mips::LW_P8) || (Opc == Mips::LD) || |
| 54 | (Opc == Mips::LD_P8) || (Opc == Mips::LWC1) || (Opc == Mips::LWC1_P8) || |
| 55 | (Opc == Mips::LDC1) || (Opc == Mips::LDC164) || |
| 56 | (Opc == Mips::LDC164_P8)) { |
Akira Hatanaka | d3ac47f | 2011-07-07 18:57:00 +0000 | [diff] [blame] | 57 | if ((MI->getOperand(1).isFI()) && // is a stack slot |
| 58 | (MI->getOperand(2).isImm()) && // the imm is zero |
| 59 | (isZeroImm(MI->getOperand(2)))) { |
| 60 | FrameIndex = MI->getOperand(1).getIndex(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 61 | return MI->getOperand(0).getReg(); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | /// isStoreToStackSlot - If the specified machine instruction is a direct |
| 69 | /// store to a stack slot, return the virtual or physical register number of |
| 70 | /// the source reg along with the FrameIndex of the loaded stack slot. If |
| 71 | /// not, return 0. This predicate must return 0 if the instruction has |
| 72 | /// any side effects other than storing to the stack slot. |
| 73 | unsigned MipsInstrInfo:: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 74 | isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 75 | { |
Akira Hatanaka | 1acb7df | 2011-10-11 01:12:52 +0000 | [diff] [blame] | 76 | unsigned Opc = MI->getOpcode(); |
| 77 | |
| 78 | if ((Opc == Mips::SW) || (Opc == Mips::SW_P8) || (Opc == Mips::SD) || |
| 79 | (Opc == Mips::SD_P8) || (Opc == Mips::SWC1) || (Opc == Mips::SWC1_P8) || |
| 80 | (Opc == Mips::SDC1) || (Opc == Mips::SDC164) || |
| 81 | (Opc == Mips::SDC164_P8)) { |
Akira Hatanaka | d3ac47f | 2011-07-07 18:57:00 +0000 | [diff] [blame] | 82 | if ((MI->getOperand(1).isFI()) && // is a stack slot |
| 83 | (MI->getOperand(2).isImm()) && // the imm is zero |
| 84 | (isZeroImm(MI->getOperand(2)))) { |
| 85 | FrameIndex = MI->getOperand(1).getIndex(); |
Bruno Cardoso Lopes | 91ef849 | 2008-08-02 19:42:36 +0000 | [diff] [blame] | 86 | return MI->getOperand(0).getReg(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | return 0; |
| 90 | } |
| 91 | |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 92 | /// insertNoop - If data hazard condition is found insert the target nop |
| 93 | /// instruction. |
| 94 | void MipsInstrInfo:: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 95 | insertNoop(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI) const |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 96 | { |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 97 | DebugLoc DL; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 98 | BuildMI(MBB, MI, DL, get(Mips::NOP)); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 101 | void MipsInstrInfo:: |
| 102 | copyPhysReg(MachineBasicBlock &MBB, |
| 103 | MachineBasicBlock::iterator I, DebugLoc DL, |
| 104 | unsigned DestReg, unsigned SrcReg, |
| 105 | bool KillSrc) const { |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 106 | unsigned Opc = 0, ZeroReg = 0; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 107 | |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 108 | if (Mips::CPURegsRegClass.contains(DestReg)) { // Copy to CPU Reg. |
| 109 | if (Mips::CPURegsRegClass.contains(SrcReg)) |
| 110 | Opc = Mips::ADDu, ZeroReg = Mips::ZERO; |
| 111 | else if (Mips::CCRRegClass.contains(SrcReg)) |
| 112 | Opc = Mips::CFC1; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 113 | else if (Mips::FGR32RegClass.contains(SrcReg)) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 114 | Opc = Mips::MFC1; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 115 | else if (SrcReg == Mips::HI) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 116 | Opc = Mips::MFHI, SrcReg = 0; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 117 | else if (SrcReg == Mips::LO) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 118 | Opc = Mips::MFLO, SrcReg = 0; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 119 | } |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 120 | else if (Mips::CPURegsRegClass.contains(SrcReg)) { // Copy from CPU Reg. |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 121 | if (Mips::CCRRegClass.contains(DestReg)) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 122 | Opc = Mips::CTC1; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 123 | else if (Mips::FGR32RegClass.contains(DestReg)) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 124 | Opc = Mips::MTC1; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 125 | else if (DestReg == Mips::HI) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 126 | Opc = Mips::MTHI, DestReg = 0; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 127 | else if (DestReg == Mips::LO) |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 128 | Opc = Mips::MTLO, DestReg = 0; |
| 129 | } |
| 130 | else if (Mips::FGR32RegClass.contains(DestReg, SrcReg)) |
Akira Hatanaka | 4391bb7 | 2011-10-08 03:50:18 +0000 | [diff] [blame] | 131 | Opc = Mips::FMOV_S; |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 132 | else if (Mips::AFGR64RegClass.contains(DestReg, SrcReg)) |
| 133 | Opc = Mips::FMOV_D32; |
Akira Hatanaka | 29d525a | 2011-11-07 21:35:45 +0000 | [diff] [blame] | 134 | else if (Mips::FGR64RegClass.contains(DestReg, SrcReg)) |
| 135 | Opc = Mips::FMOV_D64; |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 136 | else if (Mips::CCRRegClass.contains(DestReg, SrcReg)) |
| 137 | Opc = Mips::MOVCCRToCCR; |
| 138 | else if (Mips::CPU64RegsRegClass.contains(DestReg)) { // Copy to CPU64 Reg. |
| 139 | if (Mips::CPU64RegsRegClass.contains(SrcReg)) |
| 140 | Opc = Mips::DADDu, ZeroReg = Mips::ZERO_64; |
| 141 | else if (SrcReg == Mips::HI64) |
| 142 | Opc = Mips::MFHI64, SrcReg = 0; |
| 143 | else if (SrcReg == Mips::LO64) |
| 144 | Opc = Mips::MFLO64, SrcReg = 0; |
Akira Hatanaka | 29d525a | 2011-11-07 21:35:45 +0000 | [diff] [blame] | 145 | else if (Mips::FGR64RegClass.contains(SrcReg)) |
| 146 | Opc = Mips::DMFC1; |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 147 | } |
| 148 | else if (Mips::CPU64RegsRegClass.contains(SrcReg)) { // Copy from CPU64 Reg. |
| 149 | if (DestReg == Mips::HI64) |
| 150 | Opc = Mips::MTHI64, DestReg = 0; |
| 151 | else if (DestReg == Mips::LO64) |
| 152 | Opc = Mips::MTLO64, DestReg = 0; |
Akira Hatanaka | 29d525a | 2011-11-07 21:35:45 +0000 | [diff] [blame] | 153 | else if (Mips::FGR64RegClass.contains(DestReg)) |
| 154 | Opc = Mips::DMTC1; |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 157 | assert(Opc && "Cannot copy registers"); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 158 | |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 159 | MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc)); |
| 160 | |
| 161 | if (DestReg) |
| 162 | MIB.addReg(DestReg, RegState::Define); |
Jakob Stoklund Olesen | 273c14f | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 163 | |
Akira Hatanaka | 2ad7668 | 2011-10-03 20:38:08 +0000 | [diff] [blame] | 164 | if (ZeroReg) |
| 165 | MIB.addReg(ZeroReg); |
| 166 | |
| 167 | if (SrcReg) |
| 168 | MIB.addReg(SrcReg, getKillRegState(KillSrc)); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Akira Hatanaka | fd1d925 | 2011-12-24 03:11:18 +0000 | [diff] [blame] | 171 | static MachineMemOperand* GetMemOperand(MachineBasicBlock &MBB, int FI, |
| 172 | unsigned Flag) { |
| 173 | MachineFunction &MF = *MBB.getParent(); |
| 174 | MachineFrameInfo &MFI = *MF.getFrameInfo(); |
| 175 | unsigned Align = MFI.getObjectAlignment(FI); |
| 176 | |
| 177 | return MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI), Flag, |
| 178 | MFI.getObjectSize(FI), Align); |
| 179 | } |
| 180 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 181 | void MipsInstrInfo:: |
| 182 | storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 183 | unsigned SrcReg, bool isKill, int FI, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 184 | const TargetRegisterClass *RC, |
| 185 | const TargetRegisterInfo *TRI) const { |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 186 | DebugLoc DL; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 187 | if (I != MBB.end()) DL = I->getDebugLoc(); |
Akira Hatanaka | fd1d925 | 2011-12-24 03:11:18 +0000 | [diff] [blame] | 188 | MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOStore); |
| 189 | |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 190 | unsigned Opc = 0; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 191 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 192 | if (RC == Mips::CPURegsRegisterClass) |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 193 | Opc = IsN64 ? Mips::SW_P8 : Mips::SW; |
| 194 | else if (RC == Mips::CPU64RegsRegisterClass) |
| 195 | Opc = IsN64 ? Mips::SD_P8 : Mips::SD; |
Bruno Cardoso Lopes | 302525b | 2009-11-25 00:36:00 +0000 | [diff] [blame] | 196 | else if (RC == Mips::FGR32RegisterClass) |
Akira Hatanaka | 1acb7df | 2011-10-11 01:12:52 +0000 | [diff] [blame] | 197 | Opc = IsN64 ? Mips::SWC1_P8 : Mips::SWC1; |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 198 | else if (RC == Mips::AFGR64RegisterClass) |
| 199 | Opc = Mips::SDC1; |
Akira Hatanaka | 1acb7df | 2011-10-11 01:12:52 +0000 | [diff] [blame] | 200 | else if (RC == Mips::FGR64RegisterClass) |
| 201 | Opc = IsN64 ? Mips::SDC164_P8 : Mips::SDC164; |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 202 | |
| 203 | assert(Opc && "Register class not handled!"); |
| 204 | BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill)) |
Akira Hatanaka | fd1d925 | 2011-12-24 03:11:18 +0000 | [diff] [blame] | 205 | .addFrameIndex(FI).addImm(0).addMemOperand(MMO); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 208 | void MipsInstrInfo:: |
| 209 | loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
| 210 | unsigned DestReg, int FI, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 211 | const TargetRegisterClass *RC, |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 212 | const TargetRegisterInfo *TRI) const |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 213 | { |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 214 | DebugLoc DL; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 215 | if (I != MBB.end()) DL = I->getDebugLoc(); |
Akira Hatanaka | fd1d925 | 2011-12-24 03:11:18 +0000 | [diff] [blame] | 216 | MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOLoad); |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 217 | unsigned Opc = 0; |
Bruno Cardoso Lopes | 302525b | 2009-11-25 00:36:00 +0000 | [diff] [blame] | 218 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 219 | if (RC == Mips::CPURegsRegisterClass) |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 220 | Opc = IsN64 ? Mips::LW_P8 : Mips::LW; |
| 221 | else if (RC == Mips::CPU64RegsRegisterClass) |
| 222 | Opc = IsN64 ? Mips::LD_P8 : Mips::LD; |
Bruno Cardoso Lopes | 302525b | 2009-11-25 00:36:00 +0000 | [diff] [blame] | 223 | else if (RC == Mips::FGR32RegisterClass) |
Akira Hatanaka | 1acb7df | 2011-10-11 01:12:52 +0000 | [diff] [blame] | 224 | Opc = IsN64 ? Mips::LWC1_P8 : Mips::LWC1; |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 225 | else if (RC == Mips::AFGR64RegisterClass) |
| 226 | Opc = Mips::LDC1; |
Akira Hatanaka | 1acb7df | 2011-10-11 01:12:52 +0000 | [diff] [blame] | 227 | else if (RC == Mips::FGR64RegisterClass) |
| 228 | Opc = IsN64 ? Mips::LDC164_P8 : Mips::LDC164; |
Akira Hatanaka | 43aed32 | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 229 | |
| 230 | assert(Opc && "Register class not handled!"); |
Akira Hatanaka | fd1d925 | 2011-12-24 03:11:18 +0000 | [diff] [blame] | 231 | BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(0) |
| 232 | .addMemOperand(MMO); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 233 | } |
| 234 | |
Akira Hatanaka | c4f24eb | 2011-07-01 01:04:43 +0000 | [diff] [blame] | 235 | MachineInstr* |
| 236 | MipsInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF, int FrameIx, |
| 237 | uint64_t Offset, const MDNode *MDPtr, |
| 238 | DebugLoc DL) const { |
| 239 | MachineInstrBuilder MIB = BuildMI(MF, DL, get(Mips::DBG_VALUE)) |
| 240 | .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr); |
| 241 | return &*MIB; |
| 242 | } |
| 243 | |
Akira Hatanaka | 4552c9a | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 244 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 245 | // Branch Analysis |
Akira Hatanaka | 4552c9a | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 246 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 247 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 248 | static unsigned GetAnalyzableBrOpc(unsigned Opc) { |
Akira Hatanaka | 3e3427a | 2011-10-11 18:49:17 +0000 | [diff] [blame] | 249 | return (Opc == Mips::BEQ || Opc == Mips::BNE || Opc == Mips::BGTZ || |
| 250 | Opc == Mips::BGEZ || Opc == Mips::BLTZ || Opc == Mips::BLEZ || |
| 251 | Opc == Mips::BEQ64 || Opc == Mips::BNE64 || Opc == Mips::BGTZ64 || |
| 252 | Opc == Mips::BGEZ64 || Opc == Mips::BLTZ64 || Opc == Mips::BLEZ64 || |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 253 | Opc == Mips::BC1T || Opc == Mips::BC1F || Opc == Mips::B || |
| 254 | Opc == Mips::J) ? |
Akira Hatanaka | 3e3427a | 2011-10-11 18:49:17 +0000 | [diff] [blame] | 255 | Opc : 0; |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 256 | } |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 257 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 258 | /// GetOppositeBranchOpc - Return the inverse of the specified |
| 259 | /// opcode, e.g. turning BEQ to BNE. |
| 260 | unsigned Mips::GetOppositeBranchOpc(unsigned Opc) |
| 261 | { |
| 262 | switch (Opc) { |
Akira Hatanaka | 8209968 | 2011-12-19 19:52:25 +0000 | [diff] [blame] | 263 | default: llvm_unreachable("Illegal opcode!"); |
| 264 | case Mips::BEQ: return Mips::BNE; |
| 265 | case Mips::BNE: return Mips::BEQ; |
| 266 | case Mips::BGTZ: return Mips::BLEZ; |
| 267 | case Mips::BGEZ: return Mips::BLTZ; |
| 268 | case Mips::BLTZ: return Mips::BGEZ; |
| 269 | case Mips::BLEZ: return Mips::BGTZ; |
| 270 | case Mips::BEQ64: return Mips::BNE64; |
| 271 | case Mips::BNE64: return Mips::BEQ64; |
| 272 | case Mips::BGTZ64: return Mips::BLEZ64; |
| 273 | case Mips::BGEZ64: return Mips::BLTZ64; |
| 274 | case Mips::BLTZ64: return Mips::BGEZ64; |
| 275 | case Mips::BLEZ64: return Mips::BGTZ64; |
| 276 | case Mips::BC1T: return Mips::BC1F; |
| 277 | case Mips::BC1F: return Mips::BC1T; |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 278 | } |
| 279 | } |
| 280 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 281 | static void AnalyzeCondBr(const MachineInstr* Inst, unsigned Opc, |
| 282 | MachineBasicBlock *&BB, |
| 283 | SmallVectorImpl<MachineOperand>& Cond) { |
| 284 | assert(GetAnalyzableBrOpc(Opc) && "Not an analyzable branch"); |
| 285 | int NumOp = Inst->getNumExplicitOperands(); |
| 286 | |
| 287 | // for both int and fp branches, the last explicit operand is the |
| 288 | // MBB. |
| 289 | BB = Inst->getOperand(NumOp-1).getMBB(); |
| 290 | Cond.push_back(MachineOperand::CreateImm(Opc)); |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 291 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 292 | for (int i=0; i<NumOp-1; i++) |
| 293 | Cond.push_back(Inst->getOperand(i)); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 294 | } |
| 295 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 296 | bool MipsInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB, |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 297 | MachineBasicBlock *&TBB, |
| 298 | MachineBasicBlock *&FBB, |
Evan Cheng | dc54d31 | 2009-02-09 07:14:22 +0000 | [diff] [blame] | 299 | SmallVectorImpl<MachineOperand> &Cond, |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 300 | bool AllowModify) const |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 301 | { |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 302 | MachineBasicBlock::reverse_iterator I = MBB.rbegin(), REnd = MBB.rend(); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 303 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 304 | // Skip all the debug instructions. |
| 305 | while (I != REnd && I->isDebugValue()) |
| 306 | ++I; |
| 307 | |
| 308 | if (I == REnd || !isUnpredicatedTerminator(&*I)) { |
| 309 | // If this block ends with no branches (it just falls through to its succ) |
| 310 | // just return false, leaving TBB/FBB null. |
| 311 | TBB = FBB = NULL; |
| 312 | return false; |
| 313 | } |
| 314 | |
| 315 | MachineInstr *LastInst = &*I; |
| 316 | unsigned LastOpc = LastInst->getOpcode(); |
| 317 | |
| 318 | // Not an analyzable branch (must be an indirect jump). |
| 319 | if (!GetAnalyzableBrOpc(LastOpc)) |
| 320 | return true; |
| 321 | |
| 322 | // Get the second to last instruction in the block. |
| 323 | unsigned SecondLastOpc = 0; |
| 324 | MachineInstr *SecondLastInst = NULL; |
| 325 | |
| 326 | if (++I != REnd) { |
| 327 | SecondLastInst = &*I; |
| 328 | SecondLastOpc = GetAnalyzableBrOpc(SecondLastInst->getOpcode()); |
| 329 | |
| 330 | // Not an analyzable branch (must be an indirect jump). |
| 331 | if (isUnpredicatedTerminator(SecondLastInst) && !SecondLastOpc) |
| 332 | return true; |
| 333 | } |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 334 | |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 335 | // If there is only one terminator instruction, process it. |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 336 | if (!SecondLastOpc) { |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 337 | // Unconditional branch |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 338 | if (LastOpc == UncondBrOpc) { |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 339 | TBB = LastInst->getOperand(0).getMBB(); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 340 | return false; |
| 341 | } |
| 342 | |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 343 | // Conditional branch |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 344 | AnalyzeCondBr(LastInst, LastOpc, TBB, Cond); |
| 345 | return false; |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 346 | } |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 347 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 348 | // If we reached here, there are two branches. |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 349 | // If there are three terminators, we don't know what sort of block this is. |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 350 | if (++I != REnd && isUnpredicatedTerminator(&*I)) |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 351 | return true; |
| 352 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 353 | // If second to last instruction is an unconditional branch, |
| 354 | // analyze it and remove the last instruction. |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 355 | if (SecondLastOpc == UncondBrOpc) { |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 356 | // Return if the last instruction cannot be removed. |
| 357 | if (!AllowModify) |
| 358 | return true; |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 359 | |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 360 | TBB = SecondLastInst->getOperand(0).getMBB(); |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 361 | LastInst->eraseFromParent(); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 362 | return false; |
| 363 | } |
| 364 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 365 | // Conditional branch followed by an unconditional branch. |
| 366 | // The last one must be unconditional. |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 367 | if (LastOpc != UncondBrOpc) |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 368 | return true; |
| 369 | |
| 370 | AnalyzeCondBr(SecondLastInst, SecondLastOpc, TBB, Cond); |
| 371 | FBB = LastInst->getOperand(0).getMBB(); |
| 372 | |
| 373 | return false; |
| 374 | } |
| 375 | |
| 376 | void MipsInstrInfo::BuildCondBr(MachineBasicBlock &MBB, |
| 377 | MachineBasicBlock *TBB, DebugLoc DL, |
| 378 | const SmallVectorImpl<MachineOperand>& Cond) |
| 379 | const { |
| 380 | unsigned Opc = Cond[0].getImm(); |
Evan Cheng | e837dea | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 381 | const MCInstrDesc &MCID = get(Opc); |
| 382 | MachineInstrBuilder MIB = BuildMI(&MBB, DL, MCID); |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 383 | |
| 384 | for (unsigned i = 1; i < Cond.size(); ++i) |
| 385 | MIB.addReg(Cond[i].getReg()); |
| 386 | |
| 387 | MIB.addMBB(TBB); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 390 | unsigned MipsInstrInfo:: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 391 | InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
Owen Anderson | 44eb65c | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 392 | MachineBasicBlock *FBB, |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 393 | const SmallVectorImpl<MachineOperand> &Cond, |
| 394 | DebugLoc DL) const { |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 395 | // Shouldn't be a fall through. |
| 396 | assert(TBB && "InsertBranch must not be told to insert a fallthrough"); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 397 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 398 | // # of condition operands: |
| 399 | // Unconditional branches: 0 |
| 400 | // Floating point branches: 1 (opc) |
| 401 | // Int BranchZero: 2 (opc, reg) |
| 402 | // Int Branch: 3 (opc, reg0, reg1) |
| 403 | assert((Cond.size() <= 3) && |
| 404 | "# of Mips branch conditions must be <= 3!"); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 405 | |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 406 | // Two-way Conditional branch. |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 407 | if (FBB) { |
| 408 | BuildCondBr(MBB, TBB, DL, Cond); |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 409 | BuildMI(&MBB, DL, get(UncondBrOpc)).addMBB(FBB); |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 410 | return 2; |
| 411 | } |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 412 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 413 | // One way branch. |
| 414 | // Unconditional branch. |
| 415 | if (Cond.empty()) |
Akira Hatanaka | 6e55ff5 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 416 | BuildMI(&MBB, DL, get(UncondBrOpc)).addMBB(TBB); |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 417 | else // Conditional branch. |
| 418 | BuildCondBr(MBB, TBB, DL, Cond); |
| 419 | return 1; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 420 | } |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 421 | |
| 422 | unsigned MipsInstrInfo:: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 423 | RemoveBranch(MachineBasicBlock &MBB) const |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 424 | { |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 425 | MachineBasicBlock::reverse_iterator I = MBB.rbegin(), REnd = MBB.rend(); |
| 426 | MachineBasicBlock::reverse_iterator FirstBr; |
| 427 | unsigned removed; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 428 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 429 | // Skip all the debug instructions. |
| 430 | while (I != REnd && I->isDebugValue()) |
| 431 | ++I; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 432 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 433 | FirstBr = I; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 434 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 435 | // Up to 2 branches are removed. |
| 436 | // Note that indirect branches are not removed. |
| 437 | for(removed = 0; I != REnd && removed < 2; ++I, ++removed) |
| 438 | if (!GetAnalyzableBrOpc(I->getOpcode())) |
| 439 | break; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 440 | |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 441 | MBB.erase(I.base(), FirstBr.base()); |
| 442 | |
| 443 | return removed; |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 444 | } |
| 445 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 446 | /// ReverseBranchCondition - Return the inverse opcode of the |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 447 | /// specified Branch instruction. |
| 448 | bool MipsInstrInfo:: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 449 | ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 450 | { |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 451 | assert( (Cond.size() && Cond.size() <= 3) && |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 452 | "Invalid Mips branch condition!"); |
Akira Hatanaka | 20ada98 | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 453 | Cond[0].setImm(Mips::GetOppositeBranchOpc(Cond[0].getImm())); |
Bruno Cardoso Lopes | 35d2a47 | 2007-08-18 01:56:48 +0000 | [diff] [blame] | 454 | return false; |
| 455 | } |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 456 | |
| 457 | /// getGlobalBaseReg - Return a virtual register initialized with the |
| 458 | /// the global base register value. Output instructions required to |
| 459 | /// initialize the register in the function entry block, if necessary. |
| 460 | /// |
| 461 | unsigned MipsInstrInfo::getGlobalBaseReg(MachineFunction *MF) const { |
| 462 | MipsFunctionInfo *MipsFI = MF->getInfo<MipsFunctionInfo>(); |
| 463 | unsigned GlobalBaseReg = MipsFI->getGlobalBaseReg(); |
| 464 | if (GlobalBaseReg != 0) |
| 465 | return GlobalBaseReg; |
| 466 | |
| 467 | // Insert the set of GlobalBaseReg into the first MBB of the function |
| 468 | MachineBasicBlock &FirstMBB = MF->front(); |
| 469 | MachineBasicBlock::iterator MBBI = FirstMBB.begin(); |
| 470 | MachineRegisterInfo &RegInfo = MF->getRegInfo(); |
| 471 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
Akira Hatanaka | 6c2cf8b | 2012-02-03 04:33:00 +0000 | [diff] [blame] | 472 | unsigned GP = IsN64 ? Mips::GP_64 : Mips::GP; |
| 473 | const TargetRegisterClass *RC |
| 474 | = IsN64 ? Mips::CPU64RegsRegisterClass : Mips::CPURegsRegisterClass; |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 475 | |
Akira Hatanaka | 6c2cf8b | 2012-02-03 04:33:00 +0000 | [diff] [blame] | 476 | GlobalBaseReg = RegInfo.createVirtualRegister(RC); |
Jakob Stoklund Olesen | 3ecf1f0 | 2010-07-10 22:43:03 +0000 | [diff] [blame] | 477 | BuildMI(FirstMBB, MBBI, DebugLoc(), TII->get(TargetOpcode::COPY), |
Akira Hatanaka | 6c2cf8b | 2012-02-03 04:33:00 +0000 | [diff] [blame] | 478 | GlobalBaseReg).addReg(GP); |
| 479 | RegInfo.addLiveIn(GP); |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 480 | |
| 481 | MipsFI->setGlobalBaseReg(GlobalBaseReg); |
| 482 | return GlobalBaseReg; |
| 483 | } |