Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 1 | //===-- MipsLongBranch.cpp - Emit long branches ---------------------------===// |
| 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 pass expands a branch or jump instruction into a long branch if its |
| 11 | // offset is too large to fit into its immediate field. |
| 12 | // |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 13 | // FIXME: Fix pc-region jump instructions which cross 256MB segment boundaries. |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 16 | #include "Mips.h" |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 17 | #include "MCTargetDesc/MipsBaseInfo.h" |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 18 | #include "MCTargetDesc/MipsMCNaCl.h" |
Eric Christopher | 79cc1e3 | 2014-09-02 22:28:02 +0000 | [diff] [blame] | 19 | #include "MipsMachineFunction.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "MipsTargetMachine.h" |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Statistic.h" |
| 22 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 23 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Function.h" |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CommandLine.h" |
| 26 | #include "llvm/Support/MathExtras.h" |
| 27 | #include "llvm/Target/TargetInstrInfo.h" |
| 28 | #include "llvm/Target/TargetMachine.h" |
| 29 | #include "llvm/Target/TargetRegisterInfo.h" |
| 30 | |
| 31 | using namespace llvm; |
| 32 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 33 | #define DEBUG_TYPE "mips-long-branch" |
| 34 | |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 35 | STATISTIC(LongBranches, "Number of long branches."); |
| 36 | |
| 37 | static cl::opt<bool> SkipLongBranch( |
| 38 | "skip-mips-long-branch", |
| 39 | cl::init(false), |
| 40 | cl::desc("MIPS: Skip long branch pass."), |
| 41 | cl::Hidden); |
| 42 | |
| 43 | static cl::opt<bool> ForceLongBranch( |
| 44 | "force-mips-long-branch", |
| 45 | cl::init(false), |
| 46 | cl::desc("MIPS: Expand all branches to long format."), |
| 47 | cl::Hidden); |
| 48 | |
| 49 | namespace { |
| 50 | typedef MachineBasicBlock::iterator Iter; |
| 51 | typedef MachineBasicBlock::reverse_iterator ReverseIter; |
| 52 | |
| 53 | struct MBBInfo { |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 54 | uint64_t Size, Address; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 55 | bool HasLongBranch; |
| 56 | MachineInstr *Br; |
| 57 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 58 | MBBInfo() : Size(0), HasLongBranch(false), Br(nullptr) {} |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | class MipsLongBranch : public MachineFunctionPass { |
| 62 | |
| 63 | public: |
| 64 | static char ID; |
| 65 | MipsLongBranch(TargetMachine &tm) |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 66 | : MachineFunctionPass(ID), TM(tm), IsPIC(TM.isPositionIndependent()), |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 67 | ABI(static_cast<const MipsTargetMachine &>(TM).getABI()) {} |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 68 | |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 69 | StringRef getPassName() const override { return "Mips Long Branch"; } |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 70 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 71 | bool runOnMachineFunction(MachineFunction &F) override; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 72 | |
Derek Schuff | 1dbf7a5 | 2016-04-04 17:09:25 +0000 | [diff] [blame] | 73 | MachineFunctionProperties getRequiredProperties() const override { |
| 74 | return MachineFunctionProperties().set( |
Matthias Braun | 1eb4736 | 2016-08-25 01:27:13 +0000 | [diff] [blame] | 75 | MachineFunctionProperties::Property::NoVRegs); |
Derek Schuff | 1dbf7a5 | 2016-04-04 17:09:25 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 78 | private: |
| 79 | void splitMBB(MachineBasicBlock *MBB); |
| 80 | void initMBBInfo(); |
| 81 | int64_t computeOffset(const MachineInstr *Br); |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 82 | void replaceBranch(MachineBasicBlock &MBB, Iter Br, const DebugLoc &DL, |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 83 | MachineBasicBlock *MBBOpnd); |
| 84 | void expandToLongBranch(MBBInfo &Info); |
| 85 | |
| 86 | const TargetMachine &TM; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 87 | MachineFunction *MF; |
| 88 | SmallVector<MBBInfo, 16> MBBInfos; |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 89 | bool IsPIC; |
Daniel Sanders | e2e25da | 2014-10-24 16:15:27 +0000 | [diff] [blame] | 90 | MipsABIInfo ABI; |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 91 | unsigned LongBranchSeqSize; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | char MipsLongBranch::ID = 0; |
| 95 | } // end of anonymous namespace |
| 96 | |
| 97 | /// createMipsLongBranchPass - Returns a pass that converts branches to long |
| 98 | /// branches. |
| 99 | FunctionPass *llvm::createMipsLongBranchPass(MipsTargetMachine &tm) { |
| 100 | return new MipsLongBranch(tm); |
| 101 | } |
| 102 | |
| 103 | /// Iterate over list of Br's operands and search for a MachineBasicBlock |
| 104 | /// operand. |
| 105 | static MachineBasicBlock *getTargetMBB(const MachineInstr &Br) { |
| 106 | for (unsigned I = 0, E = Br.getDesc().getNumOperands(); I < E; ++I) { |
| 107 | const MachineOperand &MO = Br.getOperand(I); |
| 108 | |
| 109 | if (MO.isMBB()) |
| 110 | return MO.getMBB(); |
| 111 | } |
| 112 | |
Craig Topper | d3c02f1 | 2015-01-05 10:15:49 +0000 | [diff] [blame] | 113 | llvm_unreachable("This instruction does not have an MBB operand."); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | // Traverse the list of instructions backwards until a non-debug instruction is |
| 117 | // found or it reaches E. |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 118 | static ReverseIter getNonDebugInstr(ReverseIter B, const ReverseIter &E) { |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 119 | for (; B != E; ++B) |
| 120 | if (!B->isDebugValue()) |
| 121 | return B; |
| 122 | |
| 123 | return E; |
| 124 | } |
| 125 | |
| 126 | // Split MBB if it has two direct jumps/branches. |
| 127 | void MipsLongBranch::splitMBB(MachineBasicBlock *MBB) { |
| 128 | ReverseIter End = MBB->rend(); |
| 129 | ReverseIter LastBr = getNonDebugInstr(MBB->rbegin(), End); |
| 130 | |
| 131 | // Return if MBB has no branch instructions. |
| 132 | if ((LastBr == End) || |
| 133 | (!LastBr->isConditionalBranch() && !LastBr->isUnconditionalBranch())) |
| 134 | return; |
| 135 | |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 136 | ReverseIter FirstBr = getNonDebugInstr(std::next(LastBr), End); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 137 | |
| 138 | // MBB has only one branch instruction if FirstBr is not a branch |
| 139 | // instruction. |
| 140 | if ((FirstBr == End) || |
| 141 | (!FirstBr->isConditionalBranch() && !FirstBr->isUnconditionalBranch())) |
| 142 | return; |
| 143 | |
| 144 | assert(!FirstBr->isIndirectBranch() && "Unexpected indirect branch found."); |
| 145 | |
| 146 | // Create a new MBB. Move instructions in MBB to the newly created MBB. |
| 147 | MachineBasicBlock *NewMBB = |
| 148 | MF->CreateMachineBasicBlock(MBB->getBasicBlock()); |
| 149 | |
| 150 | // Insert NewMBB and fix control flow. |
| 151 | MachineBasicBlock *Tgt = getTargetMBB(*FirstBr); |
| 152 | NewMBB->transferSuccessors(MBB); |
Cong Hou | c106989 | 2015-12-13 09:26:17 +0000 | [diff] [blame] | 153 | NewMBB->removeSuccessor(Tgt, true); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 154 | MBB->addSuccessor(NewMBB); |
| 155 | MBB->addSuccessor(Tgt); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 156 | MF->insert(std::next(MachineFunction::iterator(MBB)), NewMBB); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 157 | |
Duncan P. N. Exon Smith | 1872096 | 2016-09-11 18:51:28 +0000 | [diff] [blame] | 158 | NewMBB->splice(NewMBB->end(), MBB, LastBr.getReverse(), MBB->end()); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | // Fill MBBInfos. |
| 162 | void MipsLongBranch::initMBBInfo() { |
| 163 | // Split the MBBs if they have two branches. Each basic block should have at |
| 164 | // most one branch after this loop is executed. |
Vasileios Kalintiris | 5a971a4 | 2016-04-15 20:43:17 +0000 | [diff] [blame] | 165 | for (auto &MBB : *MF) |
| 166 | splitMBB(&MBB); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 167 | |
| 168 | MF->RenumberBlocks(); |
| 169 | MBBInfos.clear(); |
| 170 | MBBInfos.resize(MF->size()); |
| 171 | |
Bill Wendling | ead89ef | 2013-06-07 07:04:14 +0000 | [diff] [blame] | 172 | const MipsInstrInfo *TII = |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 173 | static_cast<const MipsInstrInfo *>(MF->getSubtarget().getInstrInfo()); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 174 | for (unsigned I = 0, E = MBBInfos.size(); I < E; ++I) { |
| 175 | MachineBasicBlock *MBB = MF->getBlockNumbered(I); |
| 176 | |
| 177 | // Compute size of MBB. |
| 178 | for (MachineBasicBlock::instr_iterator MI = MBB->instr_begin(); |
| 179 | MI != MBB->instr_end(); ++MI) |
Sjoerd Meijer | 89217f8 | 2016-07-28 16:32:22 +0000 | [diff] [blame] | 180 | MBBInfos[I].Size += TII->getInstSizeInBytes(*MI); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 181 | |
| 182 | // Search for MBB's branch instruction. |
| 183 | ReverseIter End = MBB->rend(); |
| 184 | ReverseIter Br = getNonDebugInstr(MBB->rbegin(), End); |
| 185 | |
| 186 | if ((Br != End) && !Br->isIndirectBranch() && |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 187 | (Br->isConditionalBranch() || (Br->isUnconditionalBranch() && IsPIC))) |
Duncan P. N. Exon Smith | 1872096 | 2016-09-11 18:51:28 +0000 | [diff] [blame] | 188 | MBBInfos[I].Br = &*Br; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
| 192 | // Compute offset of branch in number of bytes. |
| 193 | int64_t MipsLongBranch::computeOffset(const MachineInstr *Br) { |
| 194 | int64_t Offset = 0; |
| 195 | int ThisMBB = Br->getParent()->getNumber(); |
| 196 | int TargetMBB = getTargetMBB(*Br)->getNumber(); |
| 197 | |
| 198 | // Compute offset of a forward branch. |
| 199 | if (ThisMBB < TargetMBB) { |
| 200 | for (int N = ThisMBB + 1; N < TargetMBB; ++N) |
| 201 | Offset += MBBInfos[N].Size; |
| 202 | |
| 203 | return Offset + 4; |
| 204 | } |
| 205 | |
| 206 | // Compute offset of a backward branch. |
| 207 | for (int N = ThisMBB; N >= TargetMBB; --N) |
| 208 | Offset += MBBInfos[N].Size; |
| 209 | |
| 210 | return -Offset + 4; |
| 211 | } |
| 212 | |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 213 | // Replace Br with a branch which has the opposite condition code and a |
| 214 | // MachineBasicBlock operand MBBOpnd. |
| 215 | void MipsLongBranch::replaceBranch(MachineBasicBlock &MBB, Iter Br, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 216 | const DebugLoc &DL, |
| 217 | MachineBasicBlock *MBBOpnd) { |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 218 | const MipsInstrInfo *TII = static_cast<const MipsInstrInfo *>( |
| 219 | MBB.getParent()->getSubtarget().getInstrInfo()); |
Akira Hatanaka | 067d815 | 2013-05-13 17:43:19 +0000 | [diff] [blame] | 220 | unsigned NewOpc = TII->getOppositeBranchOpc(Br->getOpcode()); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 221 | const MCInstrDesc &NewDesc = TII->get(NewOpc); |
| 222 | |
| 223 | MachineInstrBuilder MIB = BuildMI(MBB, Br, DL, NewDesc); |
| 224 | |
| 225 | for (unsigned I = 0, E = Br->getDesc().getNumOperands(); I < E; ++I) { |
| 226 | MachineOperand &MO = Br->getOperand(I); |
| 227 | |
| 228 | if (!MO.isReg()) { |
| 229 | assert(MO.isMBB() && "MBB operand expected."); |
| 230 | break; |
| 231 | } |
| 232 | |
| 233 | MIB.addReg(MO.getReg()); |
| 234 | } |
| 235 | |
| 236 | MIB.addMBB(MBBOpnd); |
| 237 | |
Jozef Kolek | 3b8ddb6 | 2014-11-21 22:04:35 +0000 | [diff] [blame] | 238 | if (Br->hasDelaySlot()) { |
| 239 | // Bundle the instruction in the delay slot to the newly created branch |
| 240 | // and erase the original branch. |
| 241 | assert(Br->isBundledWithSucc()); |
Duncan P. N. Exon Smith | 670900b | 2016-07-15 23:09:47 +0000 | [diff] [blame] | 242 | MachineBasicBlock::instr_iterator II = Br.getInstrIterator(); |
Jozef Kolek | 3b8ddb6 | 2014-11-21 22:04:35 +0000 | [diff] [blame] | 243 | MIBundleBuilder(&*MIB).append((++II)->removeFromBundle()); |
| 244 | } |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 245 | Br->eraseFromParent(); |
| 246 | } |
| 247 | |
| 248 | // Expand branch instructions to long branches. |
Jozef Kolek | 9761e96 | 2015-01-12 12:03:34 +0000 | [diff] [blame] | 249 | // TODO: This function has to be fixed for beqz16 and bnez16, because it |
| 250 | // currently assumes that all branches have 16-bit offsets, and will produce |
| 251 | // wrong code if branches whose allowed offsets are [-128, -126, ..., 126] |
| 252 | // are present. |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 253 | void MipsLongBranch::expandToLongBranch(MBBInfo &I) { |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 254 | MachineBasicBlock::iterator Pos; |
| 255 | MachineBasicBlock *MBB = I.Br->getParent(), *TgtMBB = getTargetMBB(*I.Br); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 256 | DebugLoc DL = I.Br->getDebugLoc(); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 257 | const BasicBlock *BB = MBB->getBasicBlock(); |
| 258 | MachineFunction::iterator FallThroughMBB = ++MachineFunction::iterator(MBB); |
| 259 | MachineBasicBlock *LongBrMBB = MF->CreateMachineBasicBlock(BB); |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 260 | const MipsSubtarget &Subtarget = |
| 261 | static_cast<const MipsSubtarget &>(MF->getSubtarget()); |
Bill Wendling | ead89ef | 2013-06-07 07:04:14 +0000 | [diff] [blame] | 262 | const MipsInstrInfo *TII = |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 263 | static_cast<const MipsInstrInfo *>(Subtarget.getInstrInfo()); |
Bill Wendling | ead89ef | 2013-06-07 07:04:14 +0000 | [diff] [blame] | 264 | |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 265 | MF->insert(FallThroughMBB, LongBrMBB); |
Cong Hou | d97c100 | 2015-12-01 05:29:22 +0000 | [diff] [blame] | 266 | MBB->replaceSuccessor(TgtMBB, LongBrMBB); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 267 | |
| 268 | if (IsPIC) { |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 269 | MachineBasicBlock *BalTgtMBB = MF->CreateMachineBasicBlock(BB); |
| 270 | MF->insert(FallThroughMBB, BalTgtMBB); |
| 271 | LongBrMBB->addSuccessor(BalTgtMBB); |
| 272 | BalTgtMBB->addSuccessor(TgtMBB); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 273 | |
Daniel Sanders | 86cb398 | 2014-06-13 13:02:52 +0000 | [diff] [blame] | 274 | // We must select between the MIPS32r6/MIPS64r6 BAL (which is a normal |
| 275 | // instruction) and the pre-MIPS32r6/MIPS64r6 definition (which is an |
| 276 | // pseudo-instruction wrapping BGEZAL). |
Daniel Sanders | 86cb398 | 2014-06-13 13:02:52 +0000 | [diff] [blame] | 277 | unsigned BalOp = Subtarget.hasMips32r6() ? Mips::BAL : Mips::BAL_BR; |
| 278 | |
Daniel Sanders | e2e25da | 2014-10-24 16:15:27 +0000 | [diff] [blame] | 279 | if (!ABI.IsN64()) { |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 280 | // $longbr: |
| 281 | // addiu $sp, $sp, -8 |
| 282 | // sw $ra, 0($sp) |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 283 | // lui $at, %hi($tgt - $baltgt) |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 284 | // bal $baltgt |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 285 | // addiu $at, $at, %lo($tgt - $baltgt) |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 286 | // $baltgt: |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 287 | // addu $at, $ra, $at |
| 288 | // lw $ra, 0($sp) |
| 289 | // jr $at |
| 290 | // addiu $sp, $sp, 8 |
| 291 | // $fallthrough: |
| 292 | // |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 293 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 294 | Pos = LongBrMBB->begin(); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 295 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 296 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP) |
| 297 | .addReg(Mips::SP).addImm(-8); |
| 298 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::SW)).addReg(Mips::RA) |
| 299 | .addReg(Mips::SP).addImm(0); |
Jakob Stoklund Olesen | 97030e0 | 2012-12-07 04:23:40 +0000 | [diff] [blame] | 300 | |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 301 | // LUi and ADDiu instructions create 32-bit offset of the target basic |
| 302 | // block from the target of BAL instruction. We cannot use immediate |
| 303 | // value for this offset because it cannot be determined accurately when |
| 304 | // the program has inline assembly statements. We therefore use the |
| 305 | // relocation expressions %hi($tgt-$baltgt) and %lo($tgt-$baltgt) which |
| 306 | // are resolved during the fixup, so the values will always be correct. |
| 307 | // |
| 308 | // Since we cannot create %hi($tgt-$baltgt) and %lo($tgt-$baltgt) |
| 309 | // expressions at this point (it is possible only at the MC layer), |
| 310 | // we replace LUi and ADDiu with pseudo instructions |
| 311 | // LONG_BRANCH_LUi and LONG_BRANCH_ADDiu, and add both basic |
| 312 | // blocks as operands to these instructions. When lowering these pseudo |
| 313 | // instructions to LUi and ADDiu in the MC layer, we will create |
| 314 | // %hi($tgt-$baltgt) and %lo($tgt-$baltgt) expressions and add them as |
| 315 | // operands to lowered instructions. |
| 316 | |
| 317 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi), Mips::AT) |
| 318 | .addMBB(TgtMBB).addMBB(BalTgtMBB); |
Jakob Stoklund Olesen | 97030e0 | 2012-12-07 04:23:40 +0000 | [diff] [blame] | 319 | MIBundleBuilder(*LongBrMBB, Pos) |
Daniel Sanders | 86cb398 | 2014-06-13 13:02:52 +0000 | [diff] [blame] | 320 | .append(BuildMI(*MF, DL, TII->get(BalOp)).addMBB(BalTgtMBB)) |
| 321 | .append(BuildMI(*MF, DL, TII->get(Mips::LONG_BRANCH_ADDiu), Mips::AT) |
| 322 | .addReg(Mips::AT) |
| 323 | .addMBB(TgtMBB) |
| 324 | .addMBB(BalTgtMBB)); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 325 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 326 | Pos = BalTgtMBB->begin(); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 327 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 328 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT) |
| 329 | .addReg(Mips::RA).addReg(Mips::AT); |
| 330 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LW), Mips::RA) |
| 331 | .addReg(Mips::SP).addImm(0); |
Jakob Stoklund Olesen | 97030e0 | 2012-12-07 04:23:40 +0000 | [diff] [blame] | 332 | |
Vasileios Kalintiris | 0cf68df | 2016-06-18 15:39:43 +0000 | [diff] [blame] | 333 | // In NaCl, modifying the sp is not allowed in branch delay slot. |
| 334 | if (Subtarget.isTargetNaCl()) |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 335 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP) |
| 336 | .addReg(Mips::SP).addImm(8); |
| 337 | |
Vasileios Kalintiris | 0cf68df | 2016-06-18 15:39:43 +0000 | [diff] [blame] | 338 | if (Subtarget.hasMips32r6()) |
| 339 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::JALR)) |
| 340 | .addReg(Mips::ZERO).addReg(Mips::AT); |
| 341 | else |
| 342 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::JR)).addReg(Mips::AT); |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 343 | |
Vasileios Kalintiris | 0cf68df | 2016-06-18 15:39:43 +0000 | [diff] [blame] | 344 | if (Subtarget.isTargetNaCl()) { |
| 345 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::NOP)); |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 346 | // Bundle-align the target of indirect branch JR. |
| 347 | TgtMBB->setAlignment(MIPS_NACL_BUNDLE_ALIGN); |
Vasileios Kalintiris | 0cf68df | 2016-06-18 15:39:43 +0000 | [diff] [blame] | 348 | } else |
| 349 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP) |
| 350 | .addReg(Mips::SP).addImm(8); |
| 351 | |
| 352 | BalTgtMBB->rbegin()->bundleWithPred(); |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 353 | } else { |
| 354 | // $longbr: |
| 355 | // daddiu $sp, $sp, -16 |
| 356 | // sd $ra, 0($sp) |
Sasa Stankovic | e41db2f | 2014-05-27 18:53:06 +0000 | [diff] [blame] | 357 | // daddiu $at, $zero, %hi($tgt - $baltgt) |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 358 | // dsll $at, $at, 16 |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 359 | // bal $baltgt |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 360 | // daddiu $at, $at, %lo($tgt - $baltgt) |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 361 | // $baltgt: |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 362 | // daddu $at, $ra, $at |
| 363 | // ld $ra, 0($sp) |
| 364 | // jr64 $at |
| 365 | // daddiu $sp, $sp, 16 |
| 366 | // $fallthrough: |
| 367 | // |
| 368 | |
Sasa Stankovic | e41db2f | 2014-05-27 18:53:06 +0000 | [diff] [blame] | 369 | // We assume the branch is within-function, and that offset is within |
| 370 | // +/- 2GB. High 32 bits will therefore always be zero. |
| 371 | |
| 372 | // Note that this will work even if the offset is negative, because |
| 373 | // of the +1 modification that's added in that case. For example, if the |
| 374 | // offset is -1MB (0xFFFFFFFFFFF00000), the computation for %higher is |
| 375 | // |
| 376 | // 0xFFFFFFFFFFF00000 + 0x80008000 = 0x000000007FF08000 |
| 377 | // |
| 378 | // and the bits [47:32] are zero. For %highest |
| 379 | // |
| 380 | // 0xFFFFFFFFFFF00000 + 0x800080008000 = 0x000080007FF08000 |
| 381 | // |
| 382 | // and the bits [63:48] are zero. |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 383 | |
| 384 | Pos = LongBrMBB->begin(); |
| 385 | |
| 386 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DADDiu), Mips::SP_64) |
| 387 | .addReg(Mips::SP_64).addImm(-16); |
| 388 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::SD)).addReg(Mips::RA_64) |
| 389 | .addReg(Mips::SP_64).addImm(0); |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 390 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_DADDiu), |
Sasa Stankovic | e41db2f | 2014-05-27 18:53:06 +0000 | [diff] [blame] | 391 | Mips::AT_64).addReg(Mips::ZERO_64) |
| 392 | .addMBB(TgtMBB, MipsII::MO_ABS_HI).addMBB(BalTgtMBB); |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 393 | BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DSLL), Mips::AT_64) |
| 394 | .addReg(Mips::AT_64).addImm(16); |
Jakob Stoklund Olesen | 97030e0 | 2012-12-07 04:23:40 +0000 | [diff] [blame] | 395 | |
| 396 | MIBundleBuilder(*LongBrMBB, Pos) |
Daniel Sanders | 86cb398 | 2014-06-13 13:02:52 +0000 | [diff] [blame] | 397 | .append(BuildMI(*MF, DL, TII->get(BalOp)).addMBB(BalTgtMBB)) |
| 398 | .append( |
| 399 | BuildMI(*MF, DL, TII->get(Mips::LONG_BRANCH_DADDiu), Mips::AT_64) |
| 400 | .addReg(Mips::AT_64) |
| 401 | .addMBB(TgtMBB, MipsII::MO_ABS_LO) |
| 402 | .addMBB(BalTgtMBB)); |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 403 | |
| 404 | Pos = BalTgtMBB->begin(); |
| 405 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 406 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::DADDu), Mips::AT_64) |
| 407 | .addReg(Mips::RA_64).addReg(Mips::AT_64); |
| 408 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LD), Mips::RA_64) |
| 409 | .addReg(Mips::SP_64).addImm(0); |
Jakob Stoklund Olesen | 97030e0 | 2012-12-07 04:23:40 +0000 | [diff] [blame] | 410 | |
Vasileios Kalintiris | 0cf68df | 2016-06-18 15:39:43 +0000 | [diff] [blame] | 411 | if (Subtarget.hasMips64r6()) |
| 412 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::JALR64)) |
| 413 | .addReg(Mips::ZERO_64).addReg(Mips::AT_64); |
| 414 | else |
| 415 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::JR64)).addReg(Mips::AT_64); |
| 416 | |
| 417 | BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::DADDiu), Mips::SP_64) |
| 418 | .addReg(Mips::SP_64).addImm(16); |
| 419 | BalTgtMBB->rbegin()->bundleWithPred(); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 420 | } |
Akira Hatanaka | 5fdeac3 | 2012-11-15 20:05:11 +0000 | [diff] [blame] | 421 | |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 422 | assert(LongBrMBB->size() + BalTgtMBB->size() == LongBranchSeqSize); |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 423 | } else { |
| 424 | // $longbr: |
| 425 | // j $tgt |
| 426 | // nop |
| 427 | // $fallthrough: |
| 428 | // |
| 429 | Pos = LongBrMBB->begin(); |
| 430 | LongBrMBB->addSuccessor(TgtMBB); |
Jakob Stoklund Olesen | 97030e0 | 2012-12-07 04:23:40 +0000 | [diff] [blame] | 431 | MIBundleBuilder(*LongBrMBB, Pos) |
| 432 | .append(BuildMI(*MF, DL, TII->get(Mips::J)).addMBB(TgtMBB)) |
| 433 | .append(BuildMI(*MF, DL, TII->get(Mips::NOP))); |
Akira Hatanaka | 5fdeac3 | 2012-11-15 20:05:11 +0000 | [diff] [blame] | 434 | |
| 435 | assert(LongBrMBB->size() == LongBranchSeqSize); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Akira Hatanaka | f72efdb | 2012-07-21 03:30:44 +0000 | [diff] [blame] | 438 | if (I.Br->isUnconditionalBranch()) { |
| 439 | // Change branch destination. |
| 440 | assert(I.Br->getDesc().getNumOperands() == 1); |
| 441 | I.Br->RemoveOperand(0); |
| 442 | I.Br->addOperand(MachineOperand::CreateMBB(LongBrMBB)); |
| 443 | } else |
| 444 | // Change branch destination and reverse condition. |
Duncan P. N. Exon Smith | 7869148 | 2015-10-20 00:15:20 +0000 | [diff] [blame] | 445 | replaceBranch(*MBB, I.Br, DL, &*FallThroughMBB); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | static void emitGPDisp(MachineFunction &F, const MipsInstrInfo *TII) { |
| 449 | MachineBasicBlock &MBB = F.front(); |
| 450 | MachineBasicBlock::iterator I = MBB.begin(); |
| 451 | DebugLoc DL = MBB.findDebugLoc(MBB.begin()); |
| 452 | BuildMI(MBB, I, DL, TII->get(Mips::LUi), Mips::V0) |
| 453 | .addExternalSymbol("_gp_disp", MipsII::MO_ABS_HI); |
| 454 | BuildMI(MBB, I, DL, TII->get(Mips::ADDiu), Mips::V0) |
| 455 | .addReg(Mips::V0).addExternalSymbol("_gp_disp", MipsII::MO_ABS_LO); |
| 456 | MBB.removeLiveIn(Mips::V0); |
| 457 | } |
| 458 | |
| 459 | bool MipsLongBranch::runOnMachineFunction(MachineFunction &F) { |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 460 | const MipsSubtarget &STI = |
| 461 | static_cast<const MipsSubtarget &>(F.getSubtarget()); |
Bill Wendling | ead89ef | 2013-06-07 07:04:14 +0000 | [diff] [blame] | 462 | const MipsInstrInfo *TII = |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 463 | static_cast<const MipsInstrInfo *>(STI.getInstrInfo()); |
| 464 | LongBranchSeqSize = |
| 465 | !IsPIC ? 2 : (ABI.IsN64() ? 10 : (!STI.isTargetNaCl() ? 9 : 10)); |
Bill Wendling | ead89ef | 2013-06-07 07:04:14 +0000 | [diff] [blame] | 466 | |
Eric Christopher | a08db01b | 2014-07-18 20:29:02 +0000 | [diff] [blame] | 467 | if (STI.inMips16Mode() || !STI.enableLongBranchPass()) |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 468 | return false; |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 469 | if (IsPIC && static_cast<const MipsTargetMachine &>(TM).getABI().IsO32() && |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 470 | F.getInfo<MipsFunctionInfo>()->globalBaseRegSet()) |
| 471 | emitGPDisp(F, TII); |
| 472 | |
| 473 | if (SkipLongBranch) |
Akira Hatanaka | 9f96bb8 | 2012-06-19 03:45:29 +0000 | [diff] [blame] | 474 | return true; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 475 | |
| 476 | MF = &F; |
| 477 | initMBBInfo(); |
| 478 | |
Craig Topper | af0dea1 | 2013-07-04 01:31:24 +0000 | [diff] [blame] | 479 | SmallVectorImpl<MBBInfo>::iterator I, E = MBBInfos.end(); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 480 | bool EverMadeChange = false, MadeChange = true; |
| 481 | |
| 482 | while (MadeChange) { |
| 483 | MadeChange = false; |
| 484 | |
| 485 | for (I = MBBInfos.begin(); I != E; ++I) { |
| 486 | // Skip if this MBB doesn't have a branch or the branch has already been |
| 487 | // converted to a long branch. |
| 488 | if (!I->Br || I->HasLongBranch) |
| 489 | continue; |
| 490 | |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 491 | int ShVal = STI.inMicroMipsMode() ? 2 : 4; |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 492 | int64_t Offset = computeOffset(I->Br) / ShVal; |
| 493 | |
Eric Christopher | 96e72c6 | 2015-01-29 23:27:36 +0000 | [diff] [blame] | 494 | if (STI.isTargetNaCl()) { |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 495 | // The offset calculation does not include sandboxing instructions |
| 496 | // that will be added later in the MC layer. Since at this point we |
| 497 | // don't know the exact amount of code that "sandboxing" will add, we |
| 498 | // conservatively estimate that code will not grow more than 100%. |
| 499 | Offset *= 2; |
| 500 | } |
Zoran Jovanovic | 9d86e26 | 2013-11-30 19:12:28 +0000 | [diff] [blame] | 501 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 502 | // Check if offset fits into 16-bit immediate field of branches. |
Sasa Stankovic | 6781426 | 2014-06-05 13:52:08 +0000 | [diff] [blame] | 503 | if (!ForceLongBranch && isInt<16>(Offset)) |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 504 | continue; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 505 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 506 | I->HasLongBranch = true; |
Akira Hatanaka | 206cefe | 2012-08-28 18:58:57 +0000 | [diff] [blame] | 507 | I->Size += LongBranchSeqSize * 4; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 508 | ++LongBranches; |
| 509 | EverMadeChange = MadeChange = true; |
| 510 | } |
| 511 | } |
| 512 | |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 513 | if (!EverMadeChange) |
| 514 | return true; |
| 515 | |
| 516 | // Compute basic block addresses. |
Rafael Espindola | b30e66b | 2016-06-28 14:33:28 +0000 | [diff] [blame] | 517 | if (IsPIC) { |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 518 | uint64_t Address = 0; |
| 519 | |
Akira Hatanaka | 206cefe | 2012-08-28 18:58:57 +0000 | [diff] [blame] | 520 | for (I = MBBInfos.begin(); I != E; Address += I->Size, ++I) |
Akira Hatanaka | b5af712 | 2012-08-28 03:03:05 +0000 | [diff] [blame] | 521 | I->Address = Address; |
| 522 | } |
| 523 | |
| 524 | // Do the expansion. |
| 525 | for (I = MBBInfos.begin(); I != E; ++I) |
| 526 | if (I->HasLongBranch) |
| 527 | expandToLongBranch(*I); |
| 528 | |
| 529 | MF->RenumberBlocks(); |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 530 | |
Akira Hatanaka | 9f96bb8 | 2012-06-19 03:45:29 +0000 | [diff] [blame] | 531 | return true; |
Akira Hatanaka | a215929 | 2012-06-14 01:22:24 +0000 | [diff] [blame] | 532 | } |