Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- PPCBranchSelector.cpp - Emit long conditional branches ------------===// |
Misha Brukman | b440243 | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 2 | // |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 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. |
Misha Brukman | b440243 | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 7 | // |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Misha Brukman | b440243 | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 10 | // This file contains a pass that scans a machine function to determine which |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 11 | // conditional branches need more than 16 bits of displacement to reach their |
| 12 | // target basic block. It does this in two passes; a calculation of basic block |
Gabor Greif | 21fed66 | 2010-08-23 20:30:51 +0000 | [diff] [blame] | 13 | // positions pass, and a branch pseudo op to machine branch opcode pass. This |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 14 | // pass should be run last, just before the assembly printer. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | bfca1ab | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 18 | #include "PPC.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "MCTargetDesc/PPCPredicates.h" |
Chris Lattner | e80bf1b | 2005-10-14 23:45:43 +0000 | [diff] [blame] | 20 | #include "PPCInstrBuilder.h" |
Chris Lattner | 6f3b954 | 2005-10-14 23:59:06 +0000 | [diff] [blame] | 21 | #include "PPCInstrInfo.h" |
Chris Lattner | 96d7386 | 2006-11-16 18:13:49 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 24 | #include "llvm/Support/MathExtras.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetMachine.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetSubtargetInfo.h" |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 29 | #define DEBUG_TYPE "ppc-branch-select" |
| 30 | |
Chris Lattner | 1ef9cd4 | 2006-12-19 22:59:26 +0000 | [diff] [blame] | 31 | STATISTIC(NumExpanded, "Number of branches expanded to long format"); |
Chris Lattner | 96d7386 | 2006-11-16 18:13:49 +0000 | [diff] [blame] | 32 | |
Krzysztof Parzyszek | 2680b53 | 2013-02-13 17:40:07 +0000 | [diff] [blame] | 33 | namespace llvm { |
| 34 | void initializePPCBSelPass(PassRegistry&); |
| 35 | } |
| 36 | |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 37 | namespace { |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 38 | struct PPCBSel : public MachineFunctionPass { |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 39 | static char ID; |
Krzysztof Parzyszek | 2680b53 | 2013-02-13 17:40:07 +0000 | [diff] [blame] | 40 | PPCBSel() : MachineFunctionPass(ID) { |
| 41 | initializePPCBSelPass(*PassRegistry::getPassRegistry()); |
| 42 | } |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 44 | /// BlockSizes - The sizes of the basic blocks in the function. |
| 45 | std::vector<unsigned> BlockSizes; |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 46 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 47 | bool runOnMachineFunction(MachineFunction &Fn) override; |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 48 | |
Craig Topper | 0d3fa92 | 2014-04-29 07:57:37 +0000 | [diff] [blame] | 49 | const char *getPassName() const override { |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 50 | return "PowerPC Branch Selector"; |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 51 | } |
| 52 | }; |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 53 | char PPCBSel::ID = 0; |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Krzysztof Parzyszek | 2680b53 | 2013-02-13 17:40:07 +0000 | [diff] [blame] | 56 | INITIALIZE_PASS(PPCBSel, "ppc-branch-select", "PowerPC Branch Selector", |
| 57 | false, false) |
| 58 | |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 59 | /// createPPCBranchSelectionPass - returns an instance of the Branch Selection |
| 60 | /// Pass |
| 61 | /// |
| 62 | FunctionPass *llvm::createPPCBranchSelectionPass() { |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 63 | return new PPCBSel(); |
Misha Brukman | ef8cf02 | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 64 | } |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 65 | |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 66 | bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) { |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 67 | const PPCInstrInfo *TII = |
| 68 | static_cast<const PPCInstrInfo *>(Fn.getSubtarget().getInstrInfo()); |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 69 | // Give the blocks of the function a dense, in-order, numbering. |
| 70 | Fn.RenumberBlocks(); |
| 71 | BlockSizes.resize(Fn.getNumBlockIDs()); |
| 72 | |
| 73 | // Measure each MBB and compute a size for the entire function. |
| 74 | unsigned FuncSize = 0; |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 75 | for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E; |
| 76 | ++MFI) { |
| 77 | MachineBasicBlock *MBB = MFI; |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 78 | |
| 79 | unsigned BlockSize = 0; |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 80 | for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); |
| 81 | MBBI != EE; ++MBBI) |
Nicolas Geoffray | ae84bbd | 2008-04-16 20:10:13 +0000 | [diff] [blame] | 82 | BlockSize += TII->GetInstSizeInBytes(MBBI); |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 83 | |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 84 | BlockSizes[MBB->getNumber()] = BlockSize; |
| 85 | FuncSize += BlockSize; |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 88 | // If the entire function is smaller than the displacement of a branch field, |
| 89 | // we know we don't need to shrink any branches in this function. This is a |
| 90 | // common case. |
| 91 | if (FuncSize < (1 << 15)) { |
| 92 | BlockSizes.clear(); |
| 93 | return false; |
| 94 | } |
| 95 | |
| 96 | // For each conditional branch, if the offset to its destination is larger |
| 97 | // than the offset field allows, transform it into a long branch sequence |
| 98 | // like this: |
| 99 | // short branch: |
| 100 | // bCC MBB |
| 101 | // long branch: |
| 102 | // b!CC $PC+8 |
| 103 | // b MBB |
| 104 | // |
| 105 | bool MadeChange = true; |
| 106 | bool EverMadeChange = false; |
| 107 | while (MadeChange) { |
| 108 | // Iteratively expand branches until we reach a fixed point. |
| 109 | MadeChange = false; |
| 110 | |
| 111 | for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E; |
| 112 | ++MFI) { |
| 113 | MachineBasicBlock &MBB = *MFI; |
| 114 | unsigned MBBStartOffset = 0; |
| 115 | for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); |
| 116 | I != E; ++I) { |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 117 | MachineBasicBlock *Dest = nullptr; |
Hal Finkel | c521129 | 2013-05-21 14:21:09 +0000 | [diff] [blame] | 118 | if (I->getOpcode() == PPC::BCC && !I->getOperand(2).isImm()) |
| 119 | Dest = I->getOperand(2).getMBB(); |
Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 120 | else if ((I->getOpcode() == PPC::BC || I->getOpcode() == PPC::BCn) && |
| 121 | !I->getOperand(1).isImm()) |
| 122 | Dest = I->getOperand(1).getMBB(); |
Hal Finkel | c521129 | 2013-05-21 14:21:09 +0000 | [diff] [blame] | 123 | else if ((I->getOpcode() == PPC::BDNZ8 || I->getOpcode() == PPC::BDNZ || |
| 124 | I->getOpcode() == PPC::BDZ8 || I->getOpcode() == PPC::BDZ) && |
| 125 | !I->getOperand(0).isImm()) |
| 126 | Dest = I->getOperand(0).getMBB(); |
| 127 | |
| 128 | if (!Dest) { |
Nicolas Geoffray | ae84bbd | 2008-04-16 20:10:13 +0000 | [diff] [blame] | 129 | MBBStartOffset += TII->GetInstSizeInBytes(I); |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 130 | continue; |
| 131 | } |
| 132 | |
| 133 | // Determine the offset from the current branch to the destination |
| 134 | // block. |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 135 | int BranchSize; |
| 136 | if (Dest->getNumber() <= MBB.getNumber()) { |
| 137 | // If this is a backwards branch, the delta is the offset from the |
| 138 | // start of this block to this branch, plus the sizes of all blocks |
| 139 | // from this block to the dest. |
| 140 | BranchSize = MBBStartOffset; |
| 141 | |
| 142 | for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) |
| 143 | BranchSize += BlockSizes[i]; |
| 144 | } else { |
| 145 | // Otherwise, add the size of the blocks between this block and the |
| 146 | // dest to the number of bytes left in this block. |
| 147 | BranchSize = -MBBStartOffset; |
| 148 | |
| 149 | for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) |
| 150 | BranchSize += BlockSizes[i]; |
| 151 | } |
| 152 | |
| 153 | // If this branch is in range, ignore it. |
Benjamin Kramer | 2788f79 | 2010-03-29 21:13:41 +0000 | [diff] [blame] | 154 | if (isInt<16>(BranchSize)) { |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 155 | MBBStartOffset += 4; |
| 156 | continue; |
| 157 | } |
Hal Finkel | 96c2d4d | 2012-06-08 15:38:21 +0000 | [diff] [blame] | 158 | |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 159 | // Otherwise, we have to expand it to a long branch. |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 160 | MachineInstr *OldBranch = I; |
Dale Johannesen | e9f623e | 2009-02-13 02:27:39 +0000 | [diff] [blame] | 161 | DebugLoc dl = OldBranch->getDebugLoc(); |
Hal Finkel | 96c2d4d | 2012-06-08 15:38:21 +0000 | [diff] [blame] | 162 | |
| 163 | if (I->getOpcode() == PPC::BCC) { |
| 164 | // The BCC operands are: |
| 165 | // 0. PPC branch predicate |
| 166 | // 1. CR register |
| 167 | // 2. Target MBB |
| 168 | PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm(); |
| 169 | unsigned CRReg = I->getOperand(1).getReg(); |
| 170 | |
| 171 | // Jump over the uncond branch inst (i.e. $PC+8) on opposite condition. |
| 172 | BuildMI(MBB, I, dl, TII->get(PPC::BCC)) |
| 173 | .addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2); |
Hal Finkel | 940ab93 | 2014-02-28 00:27:01 +0000 | [diff] [blame] | 174 | } else if (I->getOpcode() == PPC::BC) { |
| 175 | unsigned CRBit = I->getOperand(0).getReg(); |
| 176 | BuildMI(MBB, I, dl, TII->get(PPC::BCn)).addReg(CRBit).addImm(2); |
| 177 | } else if (I->getOpcode() == PPC::BCn) { |
| 178 | unsigned CRBit = I->getOperand(0).getReg(); |
| 179 | BuildMI(MBB, I, dl, TII->get(PPC::BC)).addReg(CRBit).addImm(2); |
Hal Finkel | 96c2d4d | 2012-06-08 15:38:21 +0000 | [diff] [blame] | 180 | } else if (I->getOpcode() == PPC::BDNZ) { |
| 181 | BuildMI(MBB, I, dl, TII->get(PPC::BDZ)).addImm(2); |
| 182 | } else if (I->getOpcode() == PPC::BDNZ8) { |
| 183 | BuildMI(MBB, I, dl, TII->get(PPC::BDZ8)).addImm(2); |
| 184 | } else if (I->getOpcode() == PPC::BDZ) { |
| 185 | BuildMI(MBB, I, dl, TII->get(PPC::BDNZ)).addImm(2); |
| 186 | } else if (I->getOpcode() == PPC::BDZ8) { |
| 187 | BuildMI(MBB, I, dl, TII->get(PPC::BDNZ8)).addImm(2); |
| 188 | } else { |
| 189 | llvm_unreachable("Unhandled branch type!"); |
| 190 | } |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 191 | |
| 192 | // Uncond branch to the real destination. |
Dale Johannesen | e9f623e | 2009-02-13 02:27:39 +0000 | [diff] [blame] | 193 | I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest); |
Chris Lattner | 542dfd5 | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 194 | |
| 195 | // Remove the old branch from the function. |
| 196 | OldBranch->eraseFromParent(); |
| 197 | |
| 198 | // Remember that this instruction is 8-bytes, increase the size of the |
| 199 | // block by 4, remember to iterate. |
| 200 | BlockSizes[MBB.getNumber()] += 4; |
| 201 | MBBStartOffset += 8; |
| 202 | ++NumExpanded; |
| 203 | MadeChange = true; |
| 204 | } |
| 205 | } |
| 206 | EverMadeChange |= MadeChange; |
| 207 | } |
| 208 | |
| 209 | BlockSizes.clear(); |
Chris Lattner | 26e385a | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 210 | return true; |
| 211 | } |
| 212 | |