Nate Begeman | 21e463b | 2005-10-16 05:39:50 +0000 | [diff] [blame] | 1 | //===-- PPCBranchSelector.cpp - Emit long conditional branches-----*- C++ -*-=// |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 2 | // |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 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. |
Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 7 | // |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Misha Brukman | b5f662f | 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 | 999d9cf | 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 |
| 13 | // positions pass, and a branch psuedo op to machine branch opcode pass. This |
| 14 | // pass should be run last, just before the assembly printer. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | 95b2c7d | 2006-12-19 22:59:26 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "ppc-branch-select" |
Chris Lattner | 2668959 | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 19 | #include "PPC.h" |
Chris Lattner | 26bd0d4 | 2005-10-14 23:45:43 +0000 | [diff] [blame] | 20 | #include "PPCInstrBuilder.h" |
Chris Lattner | 16e71f2 | 2005-10-14 23:59:06 +0000 | [diff] [blame] | 21 | #include "PPCInstrInfo.h" |
Chris Lattner | df4ed63 | 2006-11-17 22:10:59 +0000 | [diff] [blame] | 22 | #include "PPCPredicates.h" |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Chris Lattner | eea52d3 | 2006-10-13 17:56:02 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | cb53595 | 2006-11-16 18:13:49 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/Statistic.h" |
| 26 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 27 | #include "llvm/Support/MathExtras.h" |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
Chris Lattner | 95b2c7d | 2006-12-19 22:59:26 +0000 | [diff] [blame] | 30 | STATISTIC(NumExpanded, "Number of branches expanded to long format"); |
Chris Lattner | cb53595 | 2006-11-16 18:13:49 +0000 | [diff] [blame] | 31 | |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 32 | namespace { |
Chris Lattner | 9525528 | 2006-06-28 23:17:24 +0000 | [diff] [blame] | 33 | struct VISIBILITY_HIDDEN PPCBSel : public MachineFunctionPass { |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 34 | static char ID; |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 35 | PPCBSel() : MachineFunctionPass((intptr_t)&ID) {} |
| 36 | |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 37 | /// BlockSizes - The sizes of the basic blocks in the function. |
| 38 | std::vector<unsigned> BlockSizes; |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 39 | |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 40 | virtual bool runOnMachineFunction(MachineFunction &Fn); |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 41 | |
| 42 | virtual const char *getPassName() const { |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 43 | return "PowerPC Branch Selector"; |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 44 | } |
| 45 | }; |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 46 | char PPCBSel::ID = 0; |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | /// createPPCBranchSelectionPass - returns an instance of the Branch Selection |
| 50 | /// Pass |
| 51 | /// |
| 52 | FunctionPass *llvm::createPPCBranchSelectionPass() { |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 53 | return new PPCBSel(); |
Misha Brukman | 999d9cf | 2004-07-27 18:33:06 +0000 | [diff] [blame] | 54 | } |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 56 | bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) { |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 57 | const TargetInstrInfo *TII = Fn.getTarget().getInstrInfo(); |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 58 | // Give the blocks of the function a dense, in-order, numbering. |
| 59 | Fn.RenumberBlocks(); |
| 60 | BlockSizes.resize(Fn.getNumBlockIDs()); |
| 61 | |
| 62 | // Measure each MBB and compute a size for the entire function. |
| 63 | unsigned FuncSize = 0; |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 64 | for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E; |
| 65 | ++MFI) { |
| 66 | MachineBasicBlock *MBB = MFI; |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 67 | |
| 68 | unsigned BlockSize = 0; |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 69 | for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); |
| 70 | MBBI != EE; ++MBBI) |
Nicolas Geoffray | 52e724a | 2008-04-16 20:10:13 +0000 | [diff] [blame^] | 71 | BlockSize += TII->GetInstSizeInBytes(MBBI); |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 73 | BlockSizes[MBB->getNumber()] = BlockSize; |
| 74 | FuncSize += BlockSize; |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 77 | // If the entire function is smaller than the displacement of a branch field, |
| 78 | // we know we don't need to shrink any branches in this function. This is a |
| 79 | // common case. |
| 80 | if (FuncSize < (1 << 15)) { |
| 81 | BlockSizes.clear(); |
| 82 | return false; |
| 83 | } |
| 84 | |
| 85 | // For each conditional branch, if the offset to its destination is larger |
| 86 | // than the offset field allows, transform it into a long branch sequence |
| 87 | // like this: |
| 88 | // short branch: |
| 89 | // bCC MBB |
| 90 | // long branch: |
| 91 | // b!CC $PC+8 |
| 92 | // b MBB |
| 93 | // |
| 94 | bool MadeChange = true; |
| 95 | bool EverMadeChange = false; |
| 96 | while (MadeChange) { |
| 97 | // Iteratively expand branches until we reach a fixed point. |
| 98 | MadeChange = false; |
| 99 | |
| 100 | for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E; |
| 101 | ++MFI) { |
| 102 | MachineBasicBlock &MBB = *MFI; |
| 103 | unsigned MBBStartOffset = 0; |
| 104 | for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); |
| 105 | I != E; ++I) { |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 106 | if (I->getOpcode() != PPC::BCC || I->getOperand(2).isImmediate()) { |
Nicolas Geoffray | 52e724a | 2008-04-16 20:10:13 +0000 | [diff] [blame^] | 107 | MBBStartOffset += TII->GetInstSizeInBytes(I); |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 108 | continue; |
| 109 | } |
| 110 | |
| 111 | // Determine the offset from the current branch to the destination |
| 112 | // block. |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 113 | MachineBasicBlock *Dest = I->getOperand(2).getMBB(); |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 114 | |
| 115 | int BranchSize; |
| 116 | if (Dest->getNumber() <= MBB.getNumber()) { |
| 117 | // If this is a backwards branch, the delta is the offset from the |
| 118 | // start of this block to this branch, plus the sizes of all blocks |
| 119 | // from this block to the dest. |
| 120 | BranchSize = MBBStartOffset; |
| 121 | |
| 122 | for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) |
| 123 | BranchSize += BlockSizes[i]; |
| 124 | } else { |
| 125 | // Otherwise, add the size of the blocks between this block and the |
| 126 | // dest to the number of bytes left in this block. |
| 127 | BranchSize = -MBBStartOffset; |
| 128 | |
| 129 | for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) |
| 130 | BranchSize += BlockSizes[i]; |
| 131 | } |
| 132 | |
| 133 | // If this branch is in range, ignore it. |
| 134 | if (isInt16(BranchSize)) { |
| 135 | MBBStartOffset += 4; |
| 136 | continue; |
| 137 | } |
| 138 | |
| 139 | // Otherwise, we have to expand it to a long branch. |
| 140 | // The BCC operands are: |
| 141 | // 0. PPC branch predicate |
| 142 | // 1. CR register |
| 143 | // 2. Target MBB |
| 144 | PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm(); |
| 145 | unsigned CRReg = I->getOperand(1).getReg(); |
| 146 | |
| 147 | MachineInstr *OldBranch = I; |
| 148 | |
| 149 | // Jump over the uncond branch inst (i.e. $PC+8) on opposite condition. |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 150 | BuildMI(MBB, I, TII->get(PPC::BCC)) |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 151 | .addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2); |
| 152 | |
| 153 | // Uncond branch to the real destination. |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 154 | I = BuildMI(MBB, I, TII->get(PPC::B)).addMBB(Dest); |
Chris Lattner | 54e853b | 2006-11-18 00:32:03 +0000 | [diff] [blame] | 155 | |
| 156 | // Remove the old branch from the function. |
| 157 | OldBranch->eraseFromParent(); |
| 158 | |
| 159 | // Remember that this instruction is 8-bytes, increase the size of the |
| 160 | // block by 4, remember to iterate. |
| 161 | BlockSizes[MBB.getNumber()] += 4; |
| 162 | MBBStartOffset += 8; |
| 163 | ++NumExpanded; |
| 164 | MadeChange = true; |
| 165 | } |
| 166 | } |
| 167 | EverMadeChange |= MadeChange; |
| 168 | } |
| 169 | |
| 170 | BlockSizes.clear(); |
Chris Lattner | 6f4a072 | 2006-02-08 19:33:26 +0000 | [diff] [blame] | 171 | return true; |
| 172 | } |
| 173 | |