blob: 2fad72e25c83cc5e7d1f8c2ecffb7131e20198c7 [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===-- ARMConstantIslandPass.cpp - ARM constant islands --------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenga8e29892007-01-19 07:51:42 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a pass that splits the constant pool up into 'islands'
11// which are scattered through-out the function. This is required due to the
12// limited pc-relative displacements that ARM has.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "arm-cp-islands"
17#include "ARM.h"
Evan Chengd3d9d662009-07-23 18:27:47 +000018#include "ARMAddressingModes.h"
Evan Chengaf5cbcb2007-01-25 03:12:46 +000019#include "ARMMachineFunctionInfo.h"
Evan Chenga8e29892007-01-19 07:51:42 +000020#include "ARMInstrInfo.h"
21#include "llvm/CodeGen/MachineConstantPool.h"
22#include "llvm/CodeGen/MachineFunctionPass.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Cheng5657c012009-07-29 02:18:14 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga8e29892007-01-19 07:51:42 +000025#include "llvm/Target/TargetData.h"
26#include "llvm/Target/TargetMachine.h"
27#include "llvm/Support/Compiler.h"
28#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Chris Lattner705e07f2009-08-23 03:41:05 +000030#include "llvm/Support/raw_ostream.h"
Evan Chengc99ef082007-02-09 20:54:44 +000031#include "llvm/ADT/SmallVector.h"
Evan Chenga8e29892007-01-19 07:51:42 +000032#include "llvm/ADT/STLExtras.h"
33#include "llvm/ADT/Statistic.h"
Evan Chenga8e29892007-01-19 07:51:42 +000034using namespace llvm;
35
Evan Chenga1efbbd2009-08-14 00:32:16 +000036STATISTIC(NumCPEs, "Number of constpool entries");
37STATISTIC(NumSplit, "Number of uncond branches inserted");
38STATISTIC(NumCBrFixed, "Number of cond branches fixed");
39STATISTIC(NumUBrFixed, "Number of uncond branches fixed");
40STATISTIC(NumTBs, "Number of table branches generated");
41STATISTIC(NumT2CPShrunk, "Number of Thumb2 constantpool instructions shrunk");
Evan Cheng31b99dd2009-08-14 18:31:44 +000042STATISTIC(NumT2BrShrunk, "Number of Thumb2 immediate branches shrunk");
Evan Chenga8e29892007-01-19 07:51:42 +000043
44namespace {
Dale Johannesen88e37ae2007-02-23 05:02:36 +000045 /// ARMConstantIslands - Due to limited PC-relative displacements, ARM
Evan Chenga8e29892007-01-19 07:51:42 +000046 /// requires constant pool entries to be scattered among the instructions
47 /// inside a function. To do this, it completely ignores the normal LLVM
Dale Johannesen88e37ae2007-02-23 05:02:36 +000048 /// constant pool; instead, it places constants wherever it feels like with
Evan Chenga8e29892007-01-19 07:51:42 +000049 /// special instructions.
50 ///
51 /// The terminology used in this pass includes:
52 /// Islands - Clumps of constants placed in the function.
53 /// Water - Potential places where an island could be formed.
54 /// CPE - A constant pool entry that has been placed somewhere, which
55 /// tracks a list of users.
56 class VISIBILITY_HIDDEN ARMConstantIslands : public MachineFunctionPass {
Evan Chenga8e29892007-01-19 07:51:42 +000057 /// BBSizes - The size of each MachineBasicBlock in bytes of code, indexed
Dale Johannesen8593e412007-04-29 19:19:30 +000058 /// by MBB Number. The two-byte pads required for Thumb alignment are
59 /// counted as part of the following block (i.e., the offset and size for
60 /// a padded block will both be ==2 mod 4).
Evan Chenge03cff62007-02-09 23:59:14 +000061 std::vector<unsigned> BBSizes;
Bob Wilson84945262009-05-12 17:09:30 +000062
Dale Johannesen99c49a42007-02-25 00:47:03 +000063 /// BBOffsets - the offset of each MBB in bytes, starting from 0.
Dale Johannesen8593e412007-04-29 19:19:30 +000064 /// The two-byte pads required for Thumb alignment are counted as part of
65 /// the following block.
Dale Johannesen99c49a42007-02-25 00:47:03 +000066 std::vector<unsigned> BBOffsets;
67
Evan Chenga8e29892007-01-19 07:51:42 +000068 /// WaterList - A sorted list of basic blocks where islands could be placed
69 /// (i.e. blocks that don't fall through to the following block, due
70 /// to a return, unreachable, or unconditional branch).
Evan Chenge03cff62007-02-09 23:59:14 +000071 std::vector<MachineBasicBlock*> WaterList;
Evan Chengc99ef082007-02-09 20:54:44 +000072
Bob Wilson034de5f2009-10-12 18:52:13 +000073 typedef std::vector<MachineBasicBlock*>::iterator water_iterator;
74
Evan Chenga8e29892007-01-19 07:51:42 +000075 /// CPUser - One user of a constant pool, keeping the machine instruction
76 /// pointer, the constant pool being referenced, and the max displacement
77 /// allowed from the instruction to the CP.
78 struct CPUser {
79 MachineInstr *MI;
80 MachineInstr *CPEMI;
81 unsigned MaxDisp;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +000082 bool NegOk;
Evan Chengd3d9d662009-07-23 18:27:47 +000083 bool IsSoImm;
84 CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp,
85 bool neg, bool soimm)
86 : MI(mi), CPEMI(cpemi), MaxDisp(maxdisp), NegOk(neg), IsSoImm(soimm) {}
Evan Chenga8e29892007-01-19 07:51:42 +000087 };
Bob Wilson84945262009-05-12 17:09:30 +000088
Evan Chenga8e29892007-01-19 07:51:42 +000089 /// CPUsers - Keep track of all of the machine instructions that use various
90 /// constant pools and their max displacement.
Evan Chenge03cff62007-02-09 23:59:14 +000091 std::vector<CPUser> CPUsers;
Bob Wilson84945262009-05-12 17:09:30 +000092
Evan Chengc99ef082007-02-09 20:54:44 +000093 /// CPEntry - One per constant pool entry, keeping the machine instruction
94 /// pointer, the constpool index, and the number of CPUser's which
95 /// reference this entry.
96 struct CPEntry {
97 MachineInstr *CPEMI;
98 unsigned CPI;
99 unsigned RefCount;
100 CPEntry(MachineInstr *cpemi, unsigned cpi, unsigned rc = 0)
101 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
102 };
103
104 /// CPEntries - Keep track of all of the constant pool entry machine
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000105 /// instructions. For each original constpool index (i.e. those that
106 /// existed upon entry to this pass), it keeps a vector of entries.
107 /// Original elements are cloned as we go along; the clones are
108 /// put in the vector of the original element, but have distinct CPIs.
Evan Chengc99ef082007-02-09 20:54:44 +0000109 std::vector<std::vector<CPEntry> > CPEntries;
Bob Wilson84945262009-05-12 17:09:30 +0000110
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000111 /// ImmBranch - One per immediate branch, keeping the machine instruction
112 /// pointer, conditional or unconditional, the max displacement,
113 /// and (if isCond is true) the corresponding unconditional branch
114 /// opcode.
115 struct ImmBranch {
116 MachineInstr *MI;
Evan Chengc2854142007-01-25 23:18:59 +0000117 unsigned MaxDisp : 31;
118 bool isCond : 1;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000119 int UncondBr;
Evan Chengc2854142007-01-25 23:18:59 +0000120 ImmBranch(MachineInstr *mi, unsigned maxdisp, bool cond, int ubr)
121 : MI(mi), MaxDisp(maxdisp), isCond(cond), UncondBr(ubr) {}
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000122 };
123
Evan Cheng2706f972007-05-16 05:14:06 +0000124 /// ImmBranches - Keep track of all the immediate branch instructions.
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000125 ///
Evan Chenge03cff62007-02-09 23:59:14 +0000126 std::vector<ImmBranch> ImmBranches;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000127
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000128 /// PushPopMIs - Keep track of all the Thumb push / pop instructions.
129 ///
Evan Chengc99ef082007-02-09 20:54:44 +0000130 SmallVector<MachineInstr*, 4> PushPopMIs;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000131
Evan Cheng5657c012009-07-29 02:18:14 +0000132 /// T2JumpTables - Keep track of all the Thumb2 jumptable instructions.
133 SmallVector<MachineInstr*, 4> T2JumpTables;
134
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000135 /// HasFarJump - True if any far jump instruction has been emitted during
136 /// the branch fix up pass.
137 bool HasFarJump;
138
Evan Chenga8e29892007-01-19 07:51:42 +0000139 const TargetInstrInfo *TII;
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000140 const ARMSubtarget *STI;
Dale Johannesen8593e412007-04-29 19:19:30 +0000141 ARMFunctionInfo *AFI;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000142 bool isThumb;
Evan Chengd3d9d662009-07-23 18:27:47 +0000143 bool isThumb1;
David Goodwin5e47a9a2009-06-30 18:04:13 +0000144 bool isThumb2;
Evan Chenga8e29892007-01-19 07:51:42 +0000145 public:
Devang Patel19974732007-05-03 01:11:54 +0000146 static char ID;
Dan Gohmanae73dc12008-09-04 17:05:41 +0000147 ARMConstantIslands() : MachineFunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +0000148
Evan Cheng5657c012009-07-29 02:18:14 +0000149 virtual bool runOnMachineFunction(MachineFunction &MF);
Evan Chenga8e29892007-01-19 07:51:42 +0000150
151 virtual const char *getPassName() const {
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000152 return "ARM constant island placement and branch shortening pass";
Evan Chenga8e29892007-01-19 07:51:42 +0000153 }
Bob Wilson84945262009-05-12 17:09:30 +0000154
Evan Chenga8e29892007-01-19 07:51:42 +0000155 private:
Evan Cheng5657c012009-07-29 02:18:14 +0000156 void DoInitialPlacement(MachineFunction &MF,
Evan Chenge03cff62007-02-09 23:59:14 +0000157 std::vector<MachineInstr*> &CPEMIs);
Evan Chengc99ef082007-02-09 20:54:44 +0000158 CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
Evan Cheng5657c012009-07-29 02:18:14 +0000159 void InitialFunctionScan(MachineFunction &MF,
Evan Chenge03cff62007-02-09 23:59:14 +0000160 const std::vector<MachineInstr*> &CPEMIs);
Evan Cheng0c615842007-01-31 02:22:22 +0000161 MachineBasicBlock *SplitBlockBeforeInstr(MachineInstr *MI);
Evan Chenga8e29892007-01-19 07:51:42 +0000162 void UpdateForInsertedWaterBlock(MachineBasicBlock *NewBB);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000163 void AdjustBBOffsetsAfter(MachineBasicBlock *BB, int delta);
Evan Chenged884f32007-04-03 23:39:48 +0000164 bool DecrementOldEntry(unsigned CPI, MachineInstr* CPEMI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000165 int LookForExistingCPEntry(CPUser& U, unsigned UserOffset);
Bob Wilson84945262009-05-12 17:09:30 +0000166 bool LookForWater(CPUser&U, unsigned UserOffset,
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000167 MachineBasicBlock** NewMBB);
Bob Wilson84945262009-05-12 17:09:30 +0000168 MachineBasicBlock* AcceptWater(MachineBasicBlock *WaterBB,
Bob Wilson034de5f2009-10-12 18:52:13 +0000169 water_iterator IP);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000170 void CreateNewWater(unsigned CPUserIndex, unsigned UserOffset,
171 MachineBasicBlock** NewMBB);
Evan Cheng5657c012009-07-29 02:18:14 +0000172 bool HandleConstantPoolUser(MachineFunction &MF, unsigned CPUserIndex);
Evan Chenged884f32007-04-03 23:39:48 +0000173 void RemoveDeadCPEMI(MachineInstr *CPEMI);
174 bool RemoveUnusedCPEntries();
Bob Wilson84945262009-05-12 17:09:30 +0000175 bool CPEIsInRange(MachineInstr *MI, unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000176 MachineInstr *CPEMI, unsigned Disp, bool NegOk,
177 bool DoDump = false);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000178 bool WaterIsInRange(unsigned UserOffset, MachineBasicBlock *Water,
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000179 CPUser &U);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000180 bool OffsetIsInRange(unsigned UserOffset, unsigned TrialOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +0000181 unsigned Disp, bool NegativeOK, bool IsSoImm = false);
Evan Chengc0dbec72007-01-31 19:57:44 +0000182 bool BBIsInRange(MachineInstr *MI, MachineBasicBlock *BB, unsigned Disp);
Evan Cheng5657c012009-07-29 02:18:14 +0000183 bool FixUpImmediateBr(MachineFunction &MF, ImmBranch &Br);
184 bool FixUpConditionalBr(MachineFunction &MF, ImmBranch &Br);
185 bool FixUpUnconditionalBr(MachineFunction &MF, ImmBranch &Br);
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000186 bool UndoLRSpillRestore();
Evan Chenga1efbbd2009-08-14 00:32:16 +0000187 bool OptimizeThumb2Instructions(MachineFunction &MF);
188 bool OptimizeThumb2Branches(MachineFunction &MF);
Evan Cheng5657c012009-07-29 02:18:14 +0000189 bool OptimizeThumb2JumpTables(MachineFunction &MF);
Evan Chenga8e29892007-01-19 07:51:42 +0000190
Evan Chenga8e29892007-01-19 07:51:42 +0000191 unsigned GetOffsetOf(MachineInstr *MI) const;
Dale Johannesen8593e412007-04-29 19:19:30 +0000192 void dumpBBs();
Evan Cheng5657c012009-07-29 02:18:14 +0000193 void verify(MachineFunction &MF);
Evan Chenga8e29892007-01-19 07:51:42 +0000194 };
Devang Patel19974732007-05-03 01:11:54 +0000195 char ARMConstantIslands::ID = 0;
Evan Chenga8e29892007-01-19 07:51:42 +0000196}
197
Dale Johannesen8593e412007-04-29 19:19:30 +0000198/// verify - check BBOffsets, BBSizes, alignment of islands
Evan Cheng5657c012009-07-29 02:18:14 +0000199void ARMConstantIslands::verify(MachineFunction &MF) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000200 assert(BBOffsets.size() == BBSizes.size());
201 for (unsigned i = 1, e = BBOffsets.size(); i != e; ++i)
202 assert(BBOffsets[i-1]+BBSizes[i-1] == BBOffsets[i]);
Evan Chengd3d9d662009-07-23 18:27:47 +0000203 if (!isThumb)
204 return;
205#ifndef NDEBUG
Evan Cheng5657c012009-07-29 02:18:14 +0000206 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
Evan Chengd3d9d662009-07-23 18:27:47 +0000207 MBBI != E; ++MBBI) {
208 MachineBasicBlock *MBB = MBBI;
209 if (!MBB->empty() &&
210 MBB->begin()->getOpcode() == ARM::CONSTPOOL_ENTRY) {
211 unsigned MBBId = MBB->getNumber();
212 assert((BBOffsets[MBBId]%4 == 0 && BBSizes[MBBId]%4 == 0) ||
213 (BBOffsets[MBBId]%4 != 0 && BBSizes[MBBId]%4 != 0));
Dale Johannesen8593e412007-04-29 19:19:30 +0000214 }
215 }
Evan Chengd3d9d662009-07-23 18:27:47 +0000216#endif
Dale Johannesen8593e412007-04-29 19:19:30 +0000217}
218
219/// print block size and offset information - debugging
220void ARMConstantIslands::dumpBBs() {
221 for (unsigned J = 0, E = BBOffsets.size(); J !=E; ++J) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000222 DEBUG(errs() << "block " << J << " offset " << BBOffsets[J]
223 << " size " << BBSizes[J] << "\n");
Dale Johannesen8593e412007-04-29 19:19:30 +0000224 }
225}
226
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000227/// createARMConstantIslandPass - returns an instance of the constpool
228/// island pass.
Evan Chenga8e29892007-01-19 07:51:42 +0000229FunctionPass *llvm::createARMConstantIslandPass() {
230 return new ARMConstantIslands();
231}
232
Evan Cheng5657c012009-07-29 02:18:14 +0000233bool ARMConstantIslands::runOnMachineFunction(MachineFunction &MF) {
234 MachineConstantPool &MCP = *MF.getConstantPool();
Bob Wilson84945262009-05-12 17:09:30 +0000235
Evan Cheng5657c012009-07-29 02:18:14 +0000236 TII = MF.getTarget().getInstrInfo();
237 AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000238 STI = &MF.getTarget().getSubtarget<ARMSubtarget>();
239
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000240 isThumb = AFI->isThumbFunction();
Evan Chengd3d9d662009-07-23 18:27:47 +0000241 isThumb1 = AFI->isThumb1OnlyFunction();
David Goodwin5e47a9a2009-06-30 18:04:13 +0000242 isThumb2 = AFI->isThumb2Function();
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000243
244 HasFarJump = false;
245
Evan Chenga8e29892007-01-19 07:51:42 +0000246 // Renumber all of the machine basic blocks in the function, guaranteeing that
247 // the numbers agree with the position of the block in the function.
Evan Cheng5657c012009-07-29 02:18:14 +0000248 MF.RenumberBlocks();
Evan Chenga8e29892007-01-19 07:51:42 +0000249
Evan Chengd26b14c2009-07-31 18:28:05 +0000250 // Thumb1 functions containing constant pools get 4-byte alignment.
Evan Chengd3d9d662009-07-23 18:27:47 +0000251 // This is so we can keep exact track of where the alignment padding goes.
252
Evan Chengd26b14c2009-07-31 18:28:05 +0000253 // Set default. Thumb1 function is 2-byte aligned, ARM and Thumb2 are 4-byte
Evan Chengd3d9d662009-07-23 18:27:47 +0000254 // aligned.
255 AFI->setAlign(isThumb1 ? 1U : 2U);
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000256
Evan Chenga8e29892007-01-19 07:51:42 +0000257 // Perform the initial placement of the constant pool entries. To start with,
258 // we put them all at the end of the function.
Evan Chenge03cff62007-02-09 23:59:14 +0000259 std::vector<MachineInstr*> CPEMIs;
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000260 if (!MCP.isEmpty()) {
Evan Cheng5657c012009-07-29 02:18:14 +0000261 DoInitialPlacement(MF, CPEMIs);
Evan Chengd3d9d662009-07-23 18:27:47 +0000262 if (isThumb1)
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000263 AFI->setAlign(2U);
264 }
Bob Wilson84945262009-05-12 17:09:30 +0000265
Evan Chenga8e29892007-01-19 07:51:42 +0000266 /// The next UID to take is the first unused one.
Evan Chengf1bbb952008-11-08 00:51:41 +0000267 AFI->initConstPoolEntryUId(CPEMIs.size());
Bob Wilson84945262009-05-12 17:09:30 +0000268
Evan Chenga8e29892007-01-19 07:51:42 +0000269 // Do the initial scan of the function, building up information about the
270 // sizes of each block, the location of all the water, and finding all of the
271 // constant pool users.
Evan Cheng5657c012009-07-29 02:18:14 +0000272 InitialFunctionScan(MF, CPEMIs);
Evan Chenga8e29892007-01-19 07:51:42 +0000273 CPEMIs.clear();
Bob Wilson84945262009-05-12 17:09:30 +0000274
Evan Chenged884f32007-04-03 23:39:48 +0000275 /// Remove dead constant pool entries.
276 RemoveUnusedCPEntries();
277
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000278 // Iteratively place constant pool entries and fix up branches until there
279 // is no change.
280 bool MadeChange = false;
Evan Chengb6879b22009-08-07 07:35:21 +0000281 unsigned NoCPIters = 0, NoBRIters = 0;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000282 while (true) {
Evan Chengb6879b22009-08-07 07:35:21 +0000283 bool CPChange = false;
Evan Chenga8e29892007-01-19 07:51:42 +0000284 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i)
Evan Chengb6879b22009-08-07 07:35:21 +0000285 CPChange |= HandleConstantPoolUser(MF, i);
286 if (CPChange && ++NoCPIters > 30)
287 llvm_unreachable("Constant Island pass failed to converge!");
Evan Cheng82020102007-07-10 22:00:16 +0000288 DEBUG(dumpBBs());
Evan Chengb6879b22009-08-07 07:35:21 +0000289
290 bool BRChange = false;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000291 for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i)
Evan Chengb6879b22009-08-07 07:35:21 +0000292 BRChange |= FixUpImmediateBr(MF, ImmBranches[i]);
293 if (BRChange && ++NoBRIters > 30)
294 llvm_unreachable("Branch Fix Up pass failed to converge!");
Evan Cheng82020102007-07-10 22:00:16 +0000295 DEBUG(dumpBBs());
Evan Chengb6879b22009-08-07 07:35:21 +0000296
297 if (!CPChange && !BRChange)
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000298 break;
299 MadeChange = true;
300 }
Evan Chenged884f32007-04-03 23:39:48 +0000301
Evan Chenga1efbbd2009-08-14 00:32:16 +0000302 // Shrink 32-bit Thumb2 branch, load, and store instructions.
303 if (isThumb2)
304 MadeChange |= OptimizeThumb2Instructions(MF);
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000305
Dale Johannesen8593e412007-04-29 19:19:30 +0000306 // After a while, this might be made debug-only, but it is not expensive.
Evan Cheng5657c012009-07-29 02:18:14 +0000307 verify(MF);
Dale Johannesen8593e412007-04-29 19:19:30 +0000308
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000309 // If LR has been forced spilled and no far jumps (i.e. BL) has been issued.
310 // Undo the spill / restore of LR if possible.
Evan Cheng5657c012009-07-29 02:18:14 +0000311 if (isThumb && !HasFarJump && AFI->isLRSpilledForFarJump())
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000312 MadeChange |= UndoLRSpillRestore();
313
Evan Chenga8e29892007-01-19 07:51:42 +0000314 BBSizes.clear();
Dale Johannesen99c49a42007-02-25 00:47:03 +0000315 BBOffsets.clear();
Evan Chenga8e29892007-01-19 07:51:42 +0000316 WaterList.clear();
317 CPUsers.clear();
Evan Chengc99ef082007-02-09 20:54:44 +0000318 CPEntries.clear();
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000319 ImmBranches.clear();
Evan Chengc99ef082007-02-09 20:54:44 +0000320 PushPopMIs.clear();
Evan Cheng5657c012009-07-29 02:18:14 +0000321 T2JumpTables.clear();
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000322
323 return MadeChange;
Evan Chenga8e29892007-01-19 07:51:42 +0000324}
325
326/// DoInitialPlacement - Perform the initial placement of the constant pool
327/// entries. To start with, we put them all at the end of the function.
Evan Cheng5657c012009-07-29 02:18:14 +0000328void ARMConstantIslands::DoInitialPlacement(MachineFunction &MF,
Bob Wilson84945262009-05-12 17:09:30 +0000329 std::vector<MachineInstr*> &CPEMIs) {
Evan Chenga8e29892007-01-19 07:51:42 +0000330 // Create the basic block to hold the CPE's.
Evan Cheng5657c012009-07-29 02:18:14 +0000331 MachineBasicBlock *BB = MF.CreateMachineBasicBlock();
332 MF.push_back(BB);
Bob Wilson84945262009-05-12 17:09:30 +0000333
Evan Chenga8e29892007-01-19 07:51:42 +0000334 // Add all of the constants from the constant pool to the end block, use an
335 // identity mapping of CPI's to CPE's.
336 const std::vector<MachineConstantPoolEntry> &CPs =
Evan Cheng5657c012009-07-29 02:18:14 +0000337 MF.getConstantPool()->getConstants();
Bob Wilson84945262009-05-12 17:09:30 +0000338
Evan Cheng5657c012009-07-29 02:18:14 +0000339 const TargetData &TD = *MF.getTarget().getTargetData();
Evan Chenga8e29892007-01-19 07:51:42 +0000340 for (unsigned i = 0, e = CPs.size(); i != e; ++i) {
Duncan Sands777d2302009-05-09 07:06:46 +0000341 unsigned Size = TD.getTypeAllocSize(CPs[i].getType());
Evan Chenga8e29892007-01-19 07:51:42 +0000342 // Verify that all constant pool entries are a multiple of 4 bytes. If not,
343 // we would have to pad them out or something so that instructions stay
344 // aligned.
345 assert((Size & 3) == 0 && "CP Entry not multiple of 4 bytes!");
346 MachineInstr *CPEMI =
Dale Johannesenb6728402009-02-13 02:25:56 +0000347 BuildMI(BB, DebugLoc::getUnknownLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
Evan Chenga8e29892007-01-19 07:51:42 +0000348 .addImm(i).addConstantPoolIndex(i).addImm(Size);
349 CPEMIs.push_back(CPEMI);
Evan Chengc99ef082007-02-09 20:54:44 +0000350
351 // Add a new CPEntry, but no corresponding CPUser yet.
352 std::vector<CPEntry> CPEs;
353 CPEs.push_back(CPEntry(CPEMI, i));
354 CPEntries.push_back(CPEs);
355 NumCPEs++;
Chris Lattner893e1c92009-08-23 06:49:22 +0000356 DEBUG(errs() << "Moved CPI#" << i << " to end of function as #" << i
357 << "\n");
Evan Chenga8e29892007-01-19 07:51:42 +0000358 }
359}
360
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000361/// BBHasFallthrough - Return true if the specified basic block can fallthrough
Evan Chenga8e29892007-01-19 07:51:42 +0000362/// into the block immediately after it.
363static bool BBHasFallthrough(MachineBasicBlock *MBB) {
364 // Get the next machine basic block in the function.
365 MachineFunction::iterator MBBI = MBB;
366 if (next(MBBI) == MBB->getParent()->end()) // Can't fall off end of function.
367 return false;
Bob Wilson84945262009-05-12 17:09:30 +0000368
Evan Chenga8e29892007-01-19 07:51:42 +0000369 MachineBasicBlock *NextBB = next(MBBI);
370 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
371 E = MBB->succ_end(); I != E; ++I)
372 if (*I == NextBB)
373 return true;
Bob Wilson84945262009-05-12 17:09:30 +0000374
Evan Chenga8e29892007-01-19 07:51:42 +0000375 return false;
376}
377
Evan Chengc99ef082007-02-09 20:54:44 +0000378/// findConstPoolEntry - Given the constpool index and CONSTPOOL_ENTRY MI,
379/// look up the corresponding CPEntry.
380ARMConstantIslands::CPEntry
381*ARMConstantIslands::findConstPoolEntry(unsigned CPI,
382 const MachineInstr *CPEMI) {
383 std::vector<CPEntry> &CPEs = CPEntries[CPI];
384 // Number of entries per constpool index should be small, just do a
385 // linear search.
386 for (unsigned i = 0, e = CPEs.size(); i != e; ++i) {
387 if (CPEs[i].CPEMI == CPEMI)
388 return &CPEs[i];
389 }
390 return NULL;
391}
392
Evan Chenga8e29892007-01-19 07:51:42 +0000393/// InitialFunctionScan - Do the initial scan of the function, building up
394/// information about the sizes of each block, the location of all the water,
395/// and finding all of the constant pool users.
Evan Cheng5657c012009-07-29 02:18:14 +0000396void ARMConstantIslands::InitialFunctionScan(MachineFunction &MF,
Evan Chenge03cff62007-02-09 23:59:14 +0000397 const std::vector<MachineInstr*> &CPEMIs) {
Dale Johannesen99c49a42007-02-25 00:47:03 +0000398 unsigned Offset = 0;
Evan Cheng5657c012009-07-29 02:18:14 +0000399 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
Evan Chenga8e29892007-01-19 07:51:42 +0000400 MBBI != E; ++MBBI) {
401 MachineBasicBlock &MBB = *MBBI;
Bob Wilson84945262009-05-12 17:09:30 +0000402
Evan Chenga8e29892007-01-19 07:51:42 +0000403 // If this block doesn't fall through into the next MBB, then this is
404 // 'water' that a constant pool island could be placed.
405 if (!BBHasFallthrough(&MBB))
406 WaterList.push_back(&MBB);
Bob Wilson84945262009-05-12 17:09:30 +0000407
Evan Chenga8e29892007-01-19 07:51:42 +0000408 unsigned MBBSize = 0;
409 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
410 I != E; ++I) {
411 // Add instruction size to MBBSize.
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000412 MBBSize += TII->GetInstSizeInBytes(I);
Evan Chenga8e29892007-01-19 07:51:42 +0000413
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000414 int Opc = I->getOpcode();
Chris Lattner749c6f62008-01-07 07:27:27 +0000415 if (I->getDesc().isBranch()) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000416 bool isCond = false;
417 unsigned Bits = 0;
418 unsigned Scale = 1;
419 int UOpc = Opc;
420 switch (Opc) {
Evan Cheng5657c012009-07-29 02:18:14 +0000421 default:
422 continue; // Ignore other JT branches
Dale Johannesen8593e412007-04-29 19:19:30 +0000423 case ARM::tBR_JTr:
Evan Cheng66ac5312009-07-25 00:33:29 +0000424 // A Thumb1 table jump may involve padding; for the offsets to
Dale Johannesen8593e412007-04-29 19:19:30 +0000425 // be right, functions containing these must be 4-byte aligned.
426 AFI->setAlign(2U);
427 if ((Offset+MBBSize)%4 != 0)
Evan Cheng5657c012009-07-29 02:18:14 +0000428 // FIXME: Add a pseudo ALIGN instruction instead.
Dale Johannesen8593e412007-04-29 19:19:30 +0000429 MBBSize += 2; // padding
430 continue; // Does not get an entry in ImmBranches
Evan Cheng5657c012009-07-29 02:18:14 +0000431 case ARM::t2BR_JT:
432 T2JumpTables.push_back(I);
433 continue; // Does not get an entry in ImmBranches
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000434 case ARM::Bcc:
435 isCond = true;
436 UOpc = ARM::B;
437 // Fallthrough
438 case ARM::B:
439 Bits = 24;
440 Scale = 4;
441 break;
442 case ARM::tBcc:
443 isCond = true;
444 UOpc = ARM::tB;
445 Bits = 8;
446 Scale = 2;
447 break;
448 case ARM::tB:
449 Bits = 11;
450 Scale = 2;
451 break;
David Goodwin5e47a9a2009-06-30 18:04:13 +0000452 case ARM::t2Bcc:
453 isCond = true;
454 UOpc = ARM::t2B;
455 Bits = 20;
456 Scale = 2;
457 break;
458 case ARM::t2B:
459 Bits = 24;
460 Scale = 2;
461 break;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000462 }
Evan Chengb43216e2007-02-01 10:16:15 +0000463
464 // Record this immediate branch.
Evan Chengbd5d3db2007-02-03 02:08:34 +0000465 unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
Evan Chengb43216e2007-02-01 10:16:15 +0000466 ImmBranches.push_back(ImmBranch(I, MaxOffs, isCond, UOpc));
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000467 }
468
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000469 if (Opc == ARM::tPUSH || Opc == ARM::tPOP_RET)
470 PushPopMIs.push_back(I);
471
Evan Chengd3d9d662009-07-23 18:27:47 +0000472 if (Opc == ARM::CONSTPOOL_ENTRY)
473 continue;
474
Evan Chenga8e29892007-01-19 07:51:42 +0000475 // Scan the instructions for constant pool operands.
476 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op)
Dan Gohmand735b802008-10-03 15:45:36 +0000477 if (I->getOperand(op).isCPI()) {
Evan Chenga8e29892007-01-19 07:51:42 +0000478 // We found one. The addressing mode tells us the max displacement
479 // from the PC that this instruction permits.
Bob Wilson84945262009-05-12 17:09:30 +0000480
Evan Chenga8e29892007-01-19 07:51:42 +0000481 // Basic size info comes from the TSFlags field.
Evan Chengb43216e2007-02-01 10:16:15 +0000482 unsigned Bits = 0;
483 unsigned Scale = 1;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000484 bool NegOk = false;
Evan Chengd3d9d662009-07-23 18:27:47 +0000485 bool IsSoImm = false;
486
487 switch (Opc) {
Bob Wilson84945262009-05-12 17:09:30 +0000488 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000489 llvm_unreachable("Unknown addressing mode for CP reference!");
Evan Chengd3d9d662009-07-23 18:27:47 +0000490 break;
491
492 // Taking the address of a CP entry.
493 case ARM::LEApcrel:
494 // This takes a SoImm, which is 8 bit immediate rotated. We'll
495 // pretend the maximum offset is 255 * 4. Since each instruction
496 // 4 byte wide, this is always correct. We'llc heck for other
497 // displacements that fits in a SoImm as well.
Evan Chengb43216e2007-02-01 10:16:15 +0000498 Bits = 8;
Evan Chengd3d9d662009-07-23 18:27:47 +0000499 Scale = 4;
500 NegOk = true;
501 IsSoImm = true;
502 break;
503 case ARM::t2LEApcrel:
504 Bits = 12;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000505 NegOk = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000506 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000507 case ARM::tLEApcrel:
508 Bits = 8;
509 Scale = 4;
510 break;
511
512 case ARM::LDR:
513 case ARM::LDRcp:
514 case ARM::t2LDRpci:
Evan Cheng556f33c2007-02-01 20:44:52 +0000515 Bits = 12; // +-offset_12
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000516 NegOk = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000517 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000518
519 case ARM::tLDRpci:
520 case ARM::tLDRcp:
Evan Chengb43216e2007-02-01 10:16:15 +0000521 Bits = 8;
522 Scale = 4; // +(offset_8*4)
Evan Cheng012f2d92007-01-24 08:53:17 +0000523 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000524
525 case ARM::FLDD:
526 case ARM::FLDS:
527 Bits = 8;
528 Scale = 4; // +-(offset_8*4)
529 NegOk = true;
Evan Cheng055b0312009-06-29 07:51:04 +0000530 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000531 }
Evan Chengb43216e2007-02-01 10:16:15 +0000532
Evan Chenga8e29892007-01-19 07:51:42 +0000533 // Remember that this is a user of a CP entry.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000534 unsigned CPI = I->getOperand(op).getIndex();
Evan Chengc99ef082007-02-09 20:54:44 +0000535 MachineInstr *CPEMI = CPEMIs[CPI];
Evan Cheng31b99dd2009-08-14 18:31:44 +0000536 unsigned MaxOffs = ((1 << Bits)-1) * Scale;
Evan Chengd3d9d662009-07-23 18:27:47 +0000537 CPUsers.push_back(CPUser(I, CPEMI, MaxOffs, NegOk, IsSoImm));
Evan Chengc99ef082007-02-09 20:54:44 +0000538
539 // Increment corresponding CPEntry reference count.
540 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
541 assert(CPE && "Cannot find a corresponding CPEntry!");
542 CPE->RefCount++;
Bob Wilson84945262009-05-12 17:09:30 +0000543
Evan Chenga8e29892007-01-19 07:51:42 +0000544 // Instructions can only use one CP entry, don't bother scanning the
545 // rest of the operands.
546 break;
547 }
548 }
Evan Cheng2021abe2007-02-01 01:09:47 +0000549
Dale Johannesen8593e412007-04-29 19:19:30 +0000550 // In thumb mode, if this block is a constpool island, we may need padding
551 // so it's aligned on 4 byte boundary.
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000552 if (isThumb &&
Evan Cheng05cc4242007-02-02 19:09:19 +0000553 !MBB.empty() &&
Dale Johannesen8593e412007-04-29 19:19:30 +0000554 MBB.begin()->getOpcode() == ARM::CONSTPOOL_ENTRY &&
555 (Offset%4) != 0)
Evan Cheng2021abe2007-02-01 01:09:47 +0000556 MBBSize += 2;
557
Evan Chenga8e29892007-01-19 07:51:42 +0000558 BBSizes.push_back(MBBSize);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000559 BBOffsets.push_back(Offset);
560 Offset += MBBSize;
Evan Chenga8e29892007-01-19 07:51:42 +0000561 }
562}
563
Evan Chenga8e29892007-01-19 07:51:42 +0000564/// GetOffsetOf - Return the current offset of the specified machine instruction
565/// from the start of the function. This offset changes as stuff is moved
566/// around inside the function.
567unsigned ARMConstantIslands::GetOffsetOf(MachineInstr *MI) const {
568 MachineBasicBlock *MBB = MI->getParent();
Bob Wilson84945262009-05-12 17:09:30 +0000569
Evan Chenga8e29892007-01-19 07:51:42 +0000570 // The offset is composed of two things: the sum of the sizes of all MBB's
571 // before this instruction's block, and the offset from the start of the block
572 // it is in.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000573 unsigned Offset = BBOffsets[MBB->getNumber()];
Evan Chenga8e29892007-01-19 07:51:42 +0000574
Dale Johannesen8593e412007-04-29 19:19:30 +0000575 // If we're looking for a CONSTPOOL_ENTRY in Thumb, see if this block has
576 // alignment padding, and compensate if so.
Bob Wilson84945262009-05-12 17:09:30 +0000577 if (isThumb &&
578 MI->getOpcode() == ARM::CONSTPOOL_ENTRY &&
Dale Johannesen8593e412007-04-29 19:19:30 +0000579 Offset%4 != 0)
580 Offset += 2;
581
Evan Chenga8e29892007-01-19 07:51:42 +0000582 // Sum instructions before MI in MBB.
583 for (MachineBasicBlock::iterator I = MBB->begin(); ; ++I) {
584 assert(I != MBB->end() && "Didn't find MI in its own basic block?");
585 if (&*I == MI) return Offset;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000586 Offset += TII->GetInstSizeInBytes(I);
Evan Chenga8e29892007-01-19 07:51:42 +0000587 }
588}
589
590/// CompareMBBNumbers - Little predicate function to sort the WaterList by MBB
591/// ID.
592static bool CompareMBBNumbers(const MachineBasicBlock *LHS,
593 const MachineBasicBlock *RHS) {
594 return LHS->getNumber() < RHS->getNumber();
595}
596
597/// UpdateForInsertedWaterBlock - When a block is newly inserted into the
598/// machine function, it upsets all of the block numbers. Renumber the blocks
599/// and update the arrays that parallel this numbering.
600void ARMConstantIslands::UpdateForInsertedWaterBlock(MachineBasicBlock *NewBB) {
601 // Renumber the MBB's to keep them consequtive.
602 NewBB->getParent()->RenumberBlocks(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000603
Evan Chenga8e29892007-01-19 07:51:42 +0000604 // Insert a size into BBSizes to align it properly with the (newly
605 // renumbered) block numbers.
606 BBSizes.insert(BBSizes.begin()+NewBB->getNumber(), 0);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000607
608 // Likewise for BBOffsets.
609 BBOffsets.insert(BBOffsets.begin()+NewBB->getNumber(), 0);
Bob Wilson84945262009-05-12 17:09:30 +0000610
611 // Next, update WaterList. Specifically, we need to add NewMBB as having
Evan Chenga8e29892007-01-19 07:51:42 +0000612 // available water after it.
Bob Wilson034de5f2009-10-12 18:52:13 +0000613 water_iterator IP =
Evan Chenga8e29892007-01-19 07:51:42 +0000614 std::lower_bound(WaterList.begin(), WaterList.end(), NewBB,
615 CompareMBBNumbers);
616 WaterList.insert(IP, NewBB);
617}
618
619
620/// Split the basic block containing MI into two blocks, which are joined by
621/// an unconditional branch. Update datastructures and renumber blocks to
Evan Cheng0c615842007-01-31 02:22:22 +0000622/// account for this change and returns the newly created block.
623MachineBasicBlock *ARMConstantIslands::SplitBlockBeforeInstr(MachineInstr *MI) {
Evan Chenga8e29892007-01-19 07:51:42 +0000624 MachineBasicBlock *OrigBB = MI->getParent();
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000625 MachineFunction &MF = *OrigBB->getParent();
Evan Chenga8e29892007-01-19 07:51:42 +0000626
627 // Create a new MBB for the code after the OrigBB.
Bob Wilson84945262009-05-12 17:09:30 +0000628 MachineBasicBlock *NewBB =
629 MF.CreateMachineBasicBlock(OrigBB->getBasicBlock());
Evan Chenga8e29892007-01-19 07:51:42 +0000630 MachineFunction::iterator MBBI = OrigBB; ++MBBI;
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000631 MF.insert(MBBI, NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000632
Evan Chenga8e29892007-01-19 07:51:42 +0000633 // Splice the instructions starting with MI over to NewBB.
634 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
Bob Wilson84945262009-05-12 17:09:30 +0000635
Evan Chenga8e29892007-01-19 07:51:42 +0000636 // Add an unconditional branch from OrigBB to NewBB.
Evan Chenga9b8b8d2007-01-31 18:29:27 +0000637 // Note the new unconditional branch is not being recorded.
Dale Johannesenb6728402009-02-13 02:25:56 +0000638 // There doesn't seem to be meaningful DebugInfo available; this doesn't
639 // correspond to anything in the source.
Evan Cheng58541fd2009-07-07 01:16:41 +0000640 unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B;
641 BuildMI(OrigBB, DebugLoc::getUnknownLoc(), TII->get(Opc)).addMBB(NewBB);
Evan Chenga8e29892007-01-19 07:51:42 +0000642 NumSplit++;
Bob Wilson84945262009-05-12 17:09:30 +0000643
Evan Chenga8e29892007-01-19 07:51:42 +0000644 // Update the CFG. All succs of OrigBB are now succs of NewBB.
645 while (!OrigBB->succ_empty()) {
646 MachineBasicBlock *Succ = *OrigBB->succ_begin();
647 OrigBB->removeSuccessor(Succ);
648 NewBB->addSuccessor(Succ);
Bob Wilson84945262009-05-12 17:09:30 +0000649
Evan Chenga8e29892007-01-19 07:51:42 +0000650 // This pass should be run after register allocation, so there should be no
651 // PHI nodes to update.
652 assert((Succ->empty() || Succ->begin()->getOpcode() != TargetInstrInfo::PHI)
653 && "PHI nodes should be eliminated by now!");
654 }
Bob Wilson84945262009-05-12 17:09:30 +0000655
Evan Chenga8e29892007-01-19 07:51:42 +0000656 // OrigBB branches to NewBB.
657 OrigBB->addSuccessor(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000658
Evan Chenga8e29892007-01-19 07:51:42 +0000659 // Update internal data structures to account for the newly inserted MBB.
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000660 // This is almost the same as UpdateForInsertedWaterBlock, except that
661 // the Water goes after OrigBB, not NewBB.
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000662 MF.RenumberBlocks(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000663
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000664 // Insert a size into BBSizes to align it properly with the (newly
665 // renumbered) block numbers.
666 BBSizes.insert(BBSizes.begin()+NewBB->getNumber(), 0);
Bob Wilson84945262009-05-12 17:09:30 +0000667
Dale Johannesen99c49a42007-02-25 00:47:03 +0000668 // Likewise for BBOffsets.
669 BBOffsets.insert(BBOffsets.begin()+NewBB->getNumber(), 0);
670
Bob Wilson84945262009-05-12 17:09:30 +0000671 // Next, update WaterList. Specifically, we need to add OrigMBB as having
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000672 // available water after it (but not if it's already there, which happens
673 // when splitting before a conditional branch that is followed by an
674 // unconditional branch - in that case we want to insert NewBB).
Bob Wilson034de5f2009-10-12 18:52:13 +0000675 water_iterator IP =
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000676 std::lower_bound(WaterList.begin(), WaterList.end(), OrigBB,
677 CompareMBBNumbers);
678 MachineBasicBlock* WaterBB = *IP;
679 if (WaterBB == OrigBB)
680 WaterList.insert(next(IP), NewBB);
681 else
682 WaterList.insert(IP, OrigBB);
683
Dale Johannesen8593e412007-04-29 19:19:30 +0000684 // Figure out how large the first NewMBB is. (It cannot
685 // contain a constpool_entry or tablejump.)
Evan Chenga8e29892007-01-19 07:51:42 +0000686 unsigned NewBBSize = 0;
687 for (MachineBasicBlock::iterator I = NewBB->begin(), E = NewBB->end();
688 I != E; ++I)
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000689 NewBBSize += TII->GetInstSizeInBytes(I);
Bob Wilson84945262009-05-12 17:09:30 +0000690
Dale Johannesen99c49a42007-02-25 00:47:03 +0000691 unsigned OrigBBI = OrigBB->getNumber();
692 unsigned NewBBI = NewBB->getNumber();
Evan Chenga8e29892007-01-19 07:51:42 +0000693 // Set the size of NewBB in BBSizes.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000694 BBSizes[NewBBI] = NewBBSize;
Bob Wilson84945262009-05-12 17:09:30 +0000695
Evan Chenga8e29892007-01-19 07:51:42 +0000696 // We removed instructions from UserMBB, subtract that off from its size.
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000697 // Add 2 or 4 to the block to count the unconditional branch we added to it.
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000698 int delta = isThumb1 ? 2 : 4;
Dale Johannesen99c49a42007-02-25 00:47:03 +0000699 BBSizes[OrigBBI] -= NewBBSize - delta;
700
701 // ...and adjust BBOffsets for NewBB accordingly.
702 BBOffsets[NewBBI] = BBOffsets[OrigBBI] + BBSizes[OrigBBI];
703
704 // All BBOffsets following these blocks must be modified.
705 AdjustBBOffsetsAfter(NewBB, delta);
Evan Cheng0c615842007-01-31 02:22:22 +0000706
707 return NewBB;
Evan Chenga8e29892007-01-19 07:51:42 +0000708}
709
Dale Johannesen8593e412007-04-29 19:19:30 +0000710/// OffsetIsInRange - Checks whether UserOffset (the location of a constant pool
Bob Wilson84945262009-05-12 17:09:30 +0000711/// reference) is within MaxDisp of TrialOffset (a proposed location of a
Dale Johannesen8593e412007-04-29 19:19:30 +0000712/// constant pool entry).
Bob Wilson84945262009-05-12 17:09:30 +0000713bool ARMConstantIslands::OffsetIsInRange(unsigned UserOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +0000714 unsigned TrialOffset, unsigned MaxDisp,
715 bool NegativeOK, bool IsSoImm) {
Bob Wilson84945262009-05-12 17:09:30 +0000716 // On Thumb offsets==2 mod 4 are rounded down by the hardware for
717 // purposes of the displacement computation; compensate for that here.
Dale Johannesen8593e412007-04-29 19:19:30 +0000718 // Effectively, the valid range of displacements is 2 bytes smaller for such
719 // references.
Evan Cheng31b99dd2009-08-14 18:31:44 +0000720 unsigned TotalAdj = 0;
721 if (isThumb && UserOffset%4 !=0) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000722 UserOffset -= 2;
Evan Cheng31b99dd2009-08-14 18:31:44 +0000723 TotalAdj = 2;
724 }
Dale Johannesen8593e412007-04-29 19:19:30 +0000725 // CPEs will be rounded up to a multiple of 4.
Evan Cheng31b99dd2009-08-14 18:31:44 +0000726 if (isThumb && TrialOffset%4 != 0) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000727 TrialOffset += 2;
Evan Cheng31b99dd2009-08-14 18:31:44 +0000728 TotalAdj += 2;
729 }
730
731 // In Thumb2 mode, later branch adjustments can shift instructions up and
732 // cause alignment change. In the worst case scenario this can cause the
733 // user's effective address to be subtracted by 2 and the CPE's address to
734 // be plus 2.
735 if (isThumb2 && TotalAdj != 4)
736 MaxDisp -= (4 - TotalAdj);
Dale Johannesen8593e412007-04-29 19:19:30 +0000737
Dale Johannesen99c49a42007-02-25 00:47:03 +0000738 if (UserOffset <= TrialOffset) {
739 // User before the Trial.
Evan Chengd3d9d662009-07-23 18:27:47 +0000740 if (TrialOffset - UserOffset <= MaxDisp)
741 return true;
Evan Cheng40efc252009-07-24 19:31:03 +0000742 // FIXME: Make use full range of soimm values.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000743 } else if (NegativeOK) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000744 if (UserOffset - TrialOffset <= MaxDisp)
745 return true;
Evan Cheng40efc252009-07-24 19:31:03 +0000746 // FIXME: Make use full range of soimm values.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000747 }
748 return false;
749}
750
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000751/// WaterIsInRange - Returns true if a CPE placed after the specified
752/// Water (a basic block) will be in range for the specific MI.
753
754bool ARMConstantIslands::WaterIsInRange(unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000755 MachineBasicBlock* Water, CPUser &U) {
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000756 unsigned MaxDisp = U.MaxDisp;
Bob Wilson84945262009-05-12 17:09:30 +0000757 unsigned CPEOffset = BBOffsets[Water->getNumber()] +
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000758 BBSizes[Water->getNumber()];
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000759
Dale Johannesend959aa42007-04-02 20:31:06 +0000760 // If the CPE is to be inserted before the instruction, that will raise
Dale Johannesen8593e412007-04-29 19:19:30 +0000761 // the offset of the instruction. (Currently applies only to ARM, so
762 // no alignment compensation attempted here.)
Dale Johannesend959aa42007-04-02 20:31:06 +0000763 if (CPEOffset < UserOffset)
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000764 UserOffset += U.CPEMI->getOperand(2).getImm();
Dale Johannesend959aa42007-04-02 20:31:06 +0000765
Evan Chengd3d9d662009-07-23 18:27:47 +0000766 return OffsetIsInRange(UserOffset, CPEOffset, MaxDisp, U.NegOk, U.IsSoImm);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000767}
768
769/// CPEIsInRange - Returns true if the distance between specific MI and
Evan Chengc0dbec72007-01-31 19:57:44 +0000770/// specific ConstPool entry instruction can fit in MI's displacement field.
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000771bool ARMConstantIslands::CPEIsInRange(MachineInstr *MI, unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000772 MachineInstr *CPEMI, unsigned MaxDisp,
773 bool NegOk, bool DoDump) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000774 unsigned CPEOffset = GetOffsetOf(CPEMI);
775 assert(CPEOffset%4 == 0 && "Misaligned CPE");
Evan Cheng2021abe2007-02-01 01:09:47 +0000776
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000777 if (DoDump) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000778 DEBUG(errs() << "User of CPE#" << CPEMI->getOperand(0).getImm()
779 << " max delta=" << MaxDisp
780 << " insn address=" << UserOffset
781 << " CPE address=" << CPEOffset
782 << " offset=" << int(CPEOffset-UserOffset) << "\t" << *MI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000783 }
Evan Chengc0dbec72007-01-31 19:57:44 +0000784
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000785 return OffsetIsInRange(UserOffset, CPEOffset, MaxDisp, NegOk);
Evan Chengc0dbec72007-01-31 19:57:44 +0000786}
787
Evan Chengd1e7d9a2009-01-28 00:53:34 +0000788#ifndef NDEBUG
Evan Chengc99ef082007-02-09 20:54:44 +0000789/// BBIsJumpedOver - Return true of the specified basic block's only predecessor
790/// unconditionally branches to its only successor.
791static bool BBIsJumpedOver(MachineBasicBlock *MBB) {
792 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
793 return false;
794
795 MachineBasicBlock *Succ = *MBB->succ_begin();
796 MachineBasicBlock *Pred = *MBB->pred_begin();
797 MachineInstr *PredMI = &Pred->back();
David Goodwin5e47a9a2009-06-30 18:04:13 +0000798 if (PredMI->getOpcode() == ARM::B || PredMI->getOpcode() == ARM::tB
799 || PredMI->getOpcode() == ARM::t2B)
Evan Chengc99ef082007-02-09 20:54:44 +0000800 return PredMI->getOperand(0).getMBB() == Succ;
801 return false;
802}
Evan Chengd1e7d9a2009-01-28 00:53:34 +0000803#endif // NDEBUG
Evan Chengc99ef082007-02-09 20:54:44 +0000804
Bob Wilson84945262009-05-12 17:09:30 +0000805void ARMConstantIslands::AdjustBBOffsetsAfter(MachineBasicBlock *BB,
Dale Johannesen8593e412007-04-29 19:19:30 +0000806 int delta) {
807 MachineFunction::iterator MBBI = BB; MBBI = next(MBBI);
Evan Chengd3d9d662009-07-23 18:27:47 +0000808 for(unsigned i = BB->getNumber()+1, e = BB->getParent()->getNumBlockIDs();
809 i < e; ++i) {
Dale Johannesen99c49a42007-02-25 00:47:03 +0000810 BBOffsets[i] += delta;
Dale Johannesen8593e412007-04-29 19:19:30 +0000811 // If some existing blocks have padding, adjust the padding as needed, a
812 // bit tricky. delta can be negative so don't use % on that.
Evan Chengd3d9d662009-07-23 18:27:47 +0000813 if (!isThumb)
814 continue;
815 MachineBasicBlock *MBB = MBBI;
816 if (!MBB->empty()) {
817 // Constant pool entries require padding.
818 if (MBB->begin()->getOpcode() == ARM::CONSTPOOL_ENTRY) {
Evan Cheng4a8ea212009-08-11 07:36:14 +0000819 unsigned OldOffset = BBOffsets[i] - delta;
820 if ((OldOffset%4) == 0 && (BBOffsets[i]%4) != 0) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000821 // add new padding
822 BBSizes[i] += 2;
823 delta += 2;
Evan Cheng4a8ea212009-08-11 07:36:14 +0000824 } else if ((OldOffset%4) != 0 && (BBOffsets[i]%4) == 0) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000825 // remove existing padding
Evan Cheng4a8ea212009-08-11 07:36:14 +0000826 BBSizes[i] -= 2;
Evan Chengd3d9d662009-07-23 18:27:47 +0000827 delta -= 2;
Dale Johannesen8593e412007-04-29 19:19:30 +0000828 }
Dale Johannesen8593e412007-04-29 19:19:30 +0000829 }
Evan Chengd3d9d662009-07-23 18:27:47 +0000830 // Thumb1 jump tables require padding. They should be at the end;
831 // following unconditional branches are removed by AnalyzeBranch.
Evan Cheng78947622009-07-24 18:20:44 +0000832 MachineInstr *ThumbJTMI = prior(MBB->end());
Evan Cheng66ac5312009-07-25 00:33:29 +0000833 if (ThumbJTMI->getOpcode() == ARM::tBR_JTr) {
Evan Cheng4a8ea212009-08-11 07:36:14 +0000834 unsigned NewMIOffset = GetOffsetOf(ThumbJTMI);
835 unsigned OldMIOffset = NewMIOffset - delta;
836 if ((OldMIOffset%4) == 0 && (NewMIOffset%4) != 0) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000837 // remove existing padding
838 BBSizes[i] -= 2;
839 delta -= 2;
Evan Cheng4a8ea212009-08-11 07:36:14 +0000840 } else if ((OldMIOffset%4) != 0 && (NewMIOffset%4) == 0) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000841 // add new padding
842 BBSizes[i] += 2;
843 delta += 2;
844 }
845 }
846 if (delta==0)
847 return;
Dale Johannesen8593e412007-04-29 19:19:30 +0000848 }
Evan Chengd3d9d662009-07-23 18:27:47 +0000849 MBBI = next(MBBI);
Dale Johannesen8593e412007-04-29 19:19:30 +0000850 }
Dale Johannesen99c49a42007-02-25 00:47:03 +0000851}
852
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000853/// DecrementOldEntry - find the constant pool entry with index CPI
854/// and instruction CPEMI, and decrement its refcount. If the refcount
Bob Wilson84945262009-05-12 17:09:30 +0000855/// becomes 0 remove the entry and instruction. Returns true if we removed
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000856/// the entry, false if we didn't.
Evan Chenga8e29892007-01-19 07:51:42 +0000857
Evan Chenged884f32007-04-03 23:39:48 +0000858bool ARMConstantIslands::DecrementOldEntry(unsigned CPI, MachineInstr *CPEMI) {
Evan Chengc99ef082007-02-09 20:54:44 +0000859 // Find the old entry. Eliminate it if it is no longer used.
Evan Chenged884f32007-04-03 23:39:48 +0000860 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
861 assert(CPE && "Unexpected!");
862 if (--CPE->RefCount == 0) {
863 RemoveDeadCPEMI(CPEMI);
864 CPE->CPEMI = NULL;
Evan Chengc99ef082007-02-09 20:54:44 +0000865 NumCPEs--;
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000866 return true;
867 }
868 return false;
869}
870
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000871/// LookForCPEntryInRange - see if the currently referenced CPE is in range;
872/// if not, see if an in-range clone of the CPE is in range, and if so,
873/// change the data structures so the user references the clone. Returns:
874/// 0 = no existing entry found
875/// 1 = entry found, and there were no code insertions or deletions
876/// 2 = entry found, and there were code insertions or deletions
877int ARMConstantIslands::LookForExistingCPEntry(CPUser& U, unsigned UserOffset)
878{
879 MachineInstr *UserMI = U.MI;
880 MachineInstr *CPEMI = U.CPEMI;
881
882 // Check to see if the CPE is already in-range.
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000883 if (CPEIsInRange(UserMI, UserOffset, CPEMI, U.MaxDisp, U.NegOk, true)) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000884 DEBUG(errs() << "In range\n");
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000885 return 1;
Evan Chengc99ef082007-02-09 20:54:44 +0000886 }
887
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000888 // No. Look for previously created clones of the CPE that are in range.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000889 unsigned CPI = CPEMI->getOperand(1).getIndex();
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000890 std::vector<CPEntry> &CPEs = CPEntries[CPI];
891 for (unsigned i = 0, e = CPEs.size(); i != e; ++i) {
892 // We already tried this one
893 if (CPEs[i].CPEMI == CPEMI)
894 continue;
895 // Removing CPEs can leave empty entries, skip
896 if (CPEs[i].CPEMI == NULL)
897 continue;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000898 if (CPEIsInRange(UserMI, UserOffset, CPEs[i].CPEMI, U.MaxDisp, U.NegOk)) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000899 DEBUG(errs() << "Replacing CPE#" << CPI << " with CPE#"
900 << CPEs[i].CPI << "\n");
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000901 // Point the CPUser node to the replacement
902 U.CPEMI = CPEs[i].CPEMI;
903 // Change the CPI in the instruction operand to refer to the clone.
904 for (unsigned j = 0, e = UserMI->getNumOperands(); j != e; ++j)
Dan Gohmand735b802008-10-03 15:45:36 +0000905 if (UserMI->getOperand(j).isCPI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +0000906 UserMI->getOperand(j).setIndex(CPEs[i].CPI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000907 break;
908 }
909 // Adjust the refcount of the clone...
910 CPEs[i].RefCount++;
911 // ...and the original. If we didn't remove the old entry, none of the
912 // addresses changed, so we don't need another pass.
Evan Chenged884f32007-04-03 23:39:48 +0000913 return DecrementOldEntry(CPI, CPEMI) ? 2 : 1;
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000914 }
915 }
916 return 0;
917}
918
Dale Johannesenf1b214d2007-02-28 18:41:23 +0000919/// getUnconditionalBrDisp - Returns the maximum displacement that can fit in
920/// the specific unconditional branch instruction.
921static inline unsigned getUnconditionalBrDisp(int Opc) {
David Goodwin5e47a9a2009-06-30 18:04:13 +0000922 switch (Opc) {
923 case ARM::tB:
924 return ((1<<10)-1)*2;
925 case ARM::t2B:
926 return ((1<<23)-1)*2;
927 default:
928 break;
929 }
Jim Grosbach764ab522009-08-11 15:33:49 +0000930
David Goodwin5e47a9a2009-06-30 18:04:13 +0000931 return ((1<<23)-1)*4;
Dale Johannesenf1b214d2007-02-28 18:41:23 +0000932}
933
Dale Johannesen8593e412007-04-29 19:19:30 +0000934/// AcceptWater - Small amount of common code factored out of the following.
935
Bob Wilson84945262009-05-12 17:09:30 +0000936MachineBasicBlock* ARMConstantIslands::AcceptWater(MachineBasicBlock *WaterBB,
Bob Wilson034de5f2009-10-12 18:52:13 +0000937 water_iterator IP) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000938 DEBUG(errs() << "found water in range\n");
Dale Johannesen8593e412007-04-29 19:19:30 +0000939 // Remove the original WaterList entry; we want subsequent
940 // insertions in this vicinity to go after the one we're
941 // about to insert. This considerably reduces the number
942 // of times we have to move the same CPE more than once.
943 WaterList.erase(IP);
944 // CPE goes before following block (NewMBB).
945 return next(MachineFunction::iterator(WaterBB));
946}
947
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000948/// LookForWater - look for an existing entry in the WaterList in which
949/// we can place the CPE referenced from U so it's within range of U's MI.
950/// Returns true if found, false if not. If it returns true, *NewMBB
Dale Johannesen8593e412007-04-29 19:19:30 +0000951/// is set to the WaterList entry.
Evan Chengd3d9d662009-07-23 18:27:47 +0000952/// For ARM, we prefer the water that's farthest away. For Thumb, prefer
Dale Johannesen8593e412007-04-29 19:19:30 +0000953/// water that will not introduce padding to water that will; within each
954/// group, prefer the water that's farthest away.
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000955bool ARMConstantIslands::LookForWater(CPUser &U, unsigned UserOffset,
Dale Johannesen8593e412007-04-29 19:19:30 +0000956 MachineBasicBlock** NewMBB) {
Bob Wilson034de5f2009-10-12 18:52:13 +0000957 water_iterator IPThatWouldPad;
Dale Johannesen8593e412007-04-29 19:19:30 +0000958 MachineBasicBlock* WaterBBThatWouldPad = NULL;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000959 if (!WaterList.empty()) {
Bob Wilson034de5f2009-10-12 18:52:13 +0000960 for (water_iterator IP = prior(WaterList.end()),
Evan Chengd3d9d662009-07-23 18:27:47 +0000961 B = WaterList.begin();; --IP) {
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000962 MachineBasicBlock* WaterBB = *IP;
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000963 if (WaterIsInRange(UserOffset, WaterBB, U)) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000964 unsigned WBBId = WaterBB->getNumber();
Dale Johannesen8593e412007-04-29 19:19:30 +0000965 if (isThumb &&
Evan Chengd3d9d662009-07-23 18:27:47 +0000966 (BBOffsets[WBBId] + BBSizes[WBBId])%4 != 0) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000967 // This is valid Water, but would introduce padding. Remember
968 // it in case we don't find any Water that doesn't do this.
969 if (!WaterBBThatWouldPad) {
970 WaterBBThatWouldPad = WaterBB;
971 IPThatWouldPad = IP;
972 }
973 } else {
974 *NewMBB = AcceptWater(WaterBB, IP);
975 return true;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000976 }
Evan Chengd3d9d662009-07-23 18:27:47 +0000977 }
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000978 if (IP == B)
979 break;
980 }
981 }
Dale Johannesen8593e412007-04-29 19:19:30 +0000982 if (isThumb && WaterBBThatWouldPad) {
983 *NewMBB = AcceptWater(WaterBBThatWouldPad, IPThatWouldPad);
984 return true;
985 }
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000986 return false;
987}
988
Bob Wilson84945262009-05-12 17:09:30 +0000989/// CreateNewWater - No existing WaterList entry will work for
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000990/// CPUsers[CPUserIndex], so create a place to put the CPE. The end of the
991/// block is used if in range, and the conditional branch munged so control
992/// flow is correct. Otherwise the block is split to create a hole with an
993/// unconditional branch around it. In either case *NewMBB is set to a
994/// block following which the new island can be inserted (the WaterList
995/// is not adjusted).
996
Bob Wilson84945262009-05-12 17:09:30 +0000997void ARMConstantIslands::CreateNewWater(unsigned CPUserIndex,
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000998 unsigned UserOffset, MachineBasicBlock** NewMBB) {
999 CPUser &U = CPUsers[CPUserIndex];
1000 MachineInstr *UserMI = U.MI;
1001 MachineInstr *CPEMI = U.CPEMI;
1002 MachineBasicBlock *UserMBB = UserMI->getParent();
Bob Wilson84945262009-05-12 17:09:30 +00001003 unsigned OffsetOfNextBlock = BBOffsets[UserMBB->getNumber()] +
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001004 BBSizes[UserMBB->getNumber()];
Dale Johannesen8593e412007-04-29 19:19:30 +00001005 assert(OffsetOfNextBlock== BBOffsets[UserMBB->getNumber()+1]);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001006
1007 // If the use is at the end of the block, or the end of the block
Dale Johannesen8593e412007-04-29 19:19:30 +00001008 // is within range, make new water there. (The addition below is
Evan Chengd3d9d662009-07-23 18:27:47 +00001009 // for the unconditional branch we will be adding: 4 bytes on ARM + Thumb2,
1010 // 2 on Thumb1. Possible Thumb1 alignment padding is allowed for
Dale Johannesen8593e412007-04-29 19:19:30 +00001011 // inside OffsetIsInRange.
Bob Wilson84945262009-05-12 17:09:30 +00001012 // If the block ends in an unconditional branch already, it is water,
Dale Johannesen8593e412007-04-29 19:19:30 +00001013 // and is known to be out of range, so we'll always be adding a branch.)
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001014 if (&UserMBB->back() == UserMI ||
Evan Chengd3d9d662009-07-23 18:27:47 +00001015 OffsetIsInRange(UserOffset, OffsetOfNextBlock + (isThumb1 ? 2: 4),
1016 U.MaxDisp, U.NegOk, U.IsSoImm)) {
Chris Lattner893e1c92009-08-23 06:49:22 +00001017 DEBUG(errs() << "Split at end of block\n");
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001018 if (&UserMBB->back() == UserMI)
1019 assert(BBHasFallthrough(UserMBB) && "Expected a fallthrough BB!");
1020 *NewMBB = next(MachineFunction::iterator(UserMBB));
1021 // Add an unconditional branch from UserMBB to fallthrough block.
1022 // Record it for branch lengthening; this new branch will not get out of
1023 // range, but if the preceding conditional branch is out of range, the
1024 // targets will be exchanged, and the altered branch may be out of
1025 // range, so the machinery has to know about it.
David Goodwin5e47a9a2009-06-30 18:04:13 +00001026 int UncondBr = isThumb ? ((isThumb2) ? ARM::t2B : ARM::tB) : ARM::B;
Dale Johannesenb6728402009-02-13 02:25:56 +00001027 BuildMI(UserMBB, DebugLoc::getUnknownLoc(),
1028 TII->get(UncondBr)).addMBB(*NewMBB);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001029 unsigned MaxDisp = getUnconditionalBrDisp(UncondBr);
Bob Wilson84945262009-05-12 17:09:30 +00001030 ImmBranches.push_back(ImmBranch(&UserMBB->back(),
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001031 MaxDisp, false, UncondBr));
Evan Chengd3d9d662009-07-23 18:27:47 +00001032 int delta = isThumb1 ? 2 : 4;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001033 BBSizes[UserMBB->getNumber()] += delta;
1034 AdjustBBOffsetsAfter(UserMBB, delta);
1035 } else {
1036 // What a big block. Find a place within the block to split it.
Evan Chengd3d9d662009-07-23 18:27:47 +00001037 // This is a little tricky on Thumb1 since instructions are 2 bytes
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001038 // and constant pool entries are 4 bytes: if instruction I references
1039 // island CPE, and instruction I+1 references CPE', it will
1040 // not work well to put CPE as far forward as possible, since then
1041 // CPE' cannot immediately follow it (that location is 2 bytes
1042 // farther away from I+1 than CPE was from I) and we'd need to create
Dale Johannesen8593e412007-04-29 19:19:30 +00001043 // a new island. So, we make a first guess, then walk through the
1044 // instructions between the one currently being looked at and the
1045 // possible insertion point, and make sure any other instructions
1046 // that reference CPEs will be able to use the same island area;
1047 // if not, we back up the insertion point.
1048
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001049 // The 4 in the following is for the unconditional branch we'll be
Evan Chengd3d9d662009-07-23 18:27:47 +00001050 // inserting (allows for long branch on Thumb1). Alignment of the
Dale Johannesen8593e412007-04-29 19:19:30 +00001051 // island is handled inside OffsetIsInRange.
1052 unsigned BaseInsertOffset = UserOffset + U.MaxDisp -4;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001053 // This could point off the end of the block if we've already got
1054 // constant pool entries following this block; only the last one is
1055 // in the water list. Back past any possible branches (allow for a
1056 // conditional and a maximally long unconditional).
1057 if (BaseInsertOffset >= BBOffsets[UserMBB->getNumber()+1])
Bob Wilson84945262009-05-12 17:09:30 +00001058 BaseInsertOffset = BBOffsets[UserMBB->getNumber()+1] -
Evan Chengd3d9d662009-07-23 18:27:47 +00001059 (isThumb1 ? 6 : 8);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001060 unsigned EndInsertOffset = BaseInsertOffset +
1061 CPEMI->getOperand(2).getImm();
1062 MachineBasicBlock::iterator MI = UserMI;
1063 ++MI;
1064 unsigned CPUIndex = CPUserIndex+1;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001065 for (unsigned Offset = UserOffset+TII->GetInstSizeInBytes(UserMI);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001066 Offset < BaseInsertOffset;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001067 Offset += TII->GetInstSizeInBytes(MI),
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001068 MI = next(MI)) {
1069 if (CPUIndex < CPUsers.size() && CPUsers[CPUIndex].MI == MI) {
Evan Chengd3d9d662009-07-23 18:27:47 +00001070 CPUser &U = CPUsers[CPUIndex];
Bob Wilson84945262009-05-12 17:09:30 +00001071 if (!OffsetIsInRange(Offset, EndInsertOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +00001072 U.MaxDisp, U.NegOk, U.IsSoImm)) {
1073 BaseInsertOffset -= (isThumb1 ? 2 : 4);
1074 EndInsertOffset -= (isThumb1 ? 2 : 4);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001075 }
1076 // This is overly conservative, as we don't account for CPEMIs
1077 // being reused within the block, but it doesn't matter much.
1078 EndInsertOffset += CPUsers[CPUIndex].CPEMI->getOperand(2).getImm();
1079 CPUIndex++;
1080 }
1081 }
Chris Lattner893e1c92009-08-23 06:49:22 +00001082 DEBUG(errs() << "Split in middle of big block\n");
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001083 *NewMBB = SplitBlockBeforeInstr(prior(MI));
1084 }
1085}
1086
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001087/// HandleConstantPoolUser - Analyze the specified user, checking to see if it
Bob Wilson39bf0512009-05-12 17:35:29 +00001088/// is out-of-range. If so, pick up the constant pool value and move it some
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001089/// place in-range. Return true if we changed any addresses (thus must run
1090/// another pass of branch lengthening), false otherwise.
Evan Cheng5657c012009-07-29 02:18:14 +00001091bool ARMConstantIslands::HandleConstantPoolUser(MachineFunction &MF,
Bob Wilson84945262009-05-12 17:09:30 +00001092 unsigned CPUserIndex) {
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001093 CPUser &U = CPUsers[CPUserIndex];
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001094 MachineInstr *UserMI = U.MI;
1095 MachineInstr *CPEMI = U.CPEMI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001096 unsigned CPI = CPEMI->getOperand(1).getIndex();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001097 unsigned Size = CPEMI->getOperand(2).getImm();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001098 MachineBasicBlock *NewMBB;
Dale Johannesen8593e412007-04-29 19:19:30 +00001099 // Compute this only once, it's expensive. The 4 or 8 is the value the
Evan Chenga1efbbd2009-08-14 00:32:16 +00001100 // hardware keeps in the PC.
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001101 unsigned UserOffset = GetOffsetOf(UserMI) + (isThumb ? 4 : 8);
Evan Cheng768c9f72007-04-27 08:14:15 +00001102
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001103 // See if the current entry is within range, or there is a clone of it
1104 // in range.
1105 int result = LookForExistingCPEntry(U, UserOffset);
1106 if (result==1) return false;
1107 else if (result==2) return true;
1108
1109 // No existing clone of this CPE is within range.
1110 // We will be generating a new clone. Get a UID for it.
Bob Wilson39bf0512009-05-12 17:35:29 +00001111 unsigned ID = AFI->createConstPoolEntryUId();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001112
1113 // Look for water where we can place this CPE. We look for the farthest one
1114 // away that will work. Forward references only for now (although later
1115 // we might find some that are backwards).
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001116
Dale Johannesen8593e412007-04-29 19:19:30 +00001117 if (!LookForWater(U, UserOffset, &NewMBB)) {
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001118 // No water found.
Chris Lattner893e1c92009-08-23 06:49:22 +00001119 DEBUG(errs() << "No water found\n");
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001120 CreateNewWater(CPUserIndex, UserOffset, &NewMBB);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001121 }
1122
1123 // Okay, we know we can put an island before NewMBB now, do it!
Evan Cheng5657c012009-07-29 02:18:14 +00001124 MachineBasicBlock *NewIsland = MF.CreateMachineBasicBlock();
1125 MF.insert(NewMBB, NewIsland);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001126
1127 // Update internal data structures to account for the newly inserted MBB.
1128 UpdateForInsertedWaterBlock(NewIsland);
1129
1130 // Decrement the old entry, and remove it if refcount becomes 0.
Evan Chenged884f32007-04-03 23:39:48 +00001131 DecrementOldEntry(CPI, CPEMI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001132
1133 // Now that we have an island to add the CPE to, clone the original CPE and
1134 // add it to the island.
Dale Johannesenb6728402009-02-13 02:25:56 +00001135 U.CPEMI = BuildMI(NewIsland, DebugLoc::getUnknownLoc(),
1136 TII->get(ARM::CONSTPOOL_ENTRY))
Evan Chenga8e29892007-01-19 07:51:42 +00001137 .addImm(ID).addConstantPoolIndex(CPI).addImm(Size);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001138 CPEntries[CPI].push_back(CPEntry(U.CPEMI, ID, 1));
Evan Chengc99ef082007-02-09 20:54:44 +00001139 NumCPEs++;
1140
Dale Johannesen8593e412007-04-29 19:19:30 +00001141 BBOffsets[NewIsland->getNumber()] = BBOffsets[NewMBB->getNumber()];
Evan Chengb43216e2007-02-01 10:16:15 +00001142 // Compensate for .align 2 in thumb mode.
Bob Wilson84945262009-05-12 17:09:30 +00001143 if (isThumb && BBOffsets[NewIsland->getNumber()]%4 != 0)
Dale Johannesen8593e412007-04-29 19:19:30 +00001144 Size += 2;
Evan Chenga8e29892007-01-19 07:51:42 +00001145 // Increase the size of the island block to account for the new entry.
1146 BBSizes[NewIsland->getNumber()] += Size;
Dale Johannesen99c49a42007-02-25 00:47:03 +00001147 AdjustBBOffsetsAfter(NewIsland, Size);
Bob Wilson84945262009-05-12 17:09:30 +00001148
Evan Chenga8e29892007-01-19 07:51:42 +00001149 // Finally, change the CPI in the instruction operand to be ID.
1150 for (unsigned i = 0, e = UserMI->getNumOperands(); i != e; ++i)
Dan Gohmand735b802008-10-03 15:45:36 +00001151 if (UserMI->getOperand(i).isCPI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +00001152 UserMI->getOperand(i).setIndex(ID);
Evan Chenga8e29892007-01-19 07:51:42 +00001153 break;
1154 }
Bob Wilson84945262009-05-12 17:09:30 +00001155
Chris Lattner705e07f2009-08-23 03:41:05 +00001156 DEBUG(errs() << " Moved CPE to #" << ID << " CPI=" << CPI
1157 << '\t' << *UserMI);
Bob Wilson84945262009-05-12 17:09:30 +00001158
Evan Chenga8e29892007-01-19 07:51:42 +00001159 return true;
1160}
1161
Evan Chenged884f32007-04-03 23:39:48 +00001162/// RemoveDeadCPEMI - Remove a dead constant pool entry instruction. Update
1163/// sizes and offsets of impacted basic blocks.
1164void ARMConstantIslands::RemoveDeadCPEMI(MachineInstr *CPEMI) {
1165 MachineBasicBlock *CPEBB = CPEMI->getParent();
Dale Johannesen8593e412007-04-29 19:19:30 +00001166 unsigned Size = CPEMI->getOperand(2).getImm();
1167 CPEMI->eraseFromParent();
1168 BBSizes[CPEBB->getNumber()] -= Size;
1169 // All succeeding offsets have the current size value added in, fix this.
Evan Chenged884f32007-04-03 23:39:48 +00001170 if (CPEBB->empty()) {
Evan Chengd3d9d662009-07-23 18:27:47 +00001171 // In thumb1 mode, the size of island may be padded by two to compensate for
Dale Johannesen8593e412007-04-29 19:19:30 +00001172 // the alignment requirement. Then it will now be 2 when the block is
Evan Chenged884f32007-04-03 23:39:48 +00001173 // empty, so fix this.
1174 // All succeeding offsets have the current size value added in, fix this.
1175 if (BBSizes[CPEBB->getNumber()] != 0) {
Dale Johannesen8593e412007-04-29 19:19:30 +00001176 Size += BBSizes[CPEBB->getNumber()];
Evan Chenged884f32007-04-03 23:39:48 +00001177 BBSizes[CPEBB->getNumber()] = 0;
1178 }
Evan Chenged884f32007-04-03 23:39:48 +00001179 }
Dale Johannesen8593e412007-04-29 19:19:30 +00001180 AdjustBBOffsetsAfter(CPEBB, -Size);
1181 // An island has only one predecessor BB and one successor BB. Check if
1182 // this BB's predecessor jumps directly to this BB's successor. This
1183 // shouldn't happen currently.
1184 assert(!BBIsJumpedOver(CPEBB) && "How did this happen?");
1185 // FIXME: remove the empty blocks after all the work is done?
Evan Chenged884f32007-04-03 23:39:48 +00001186}
1187
1188/// RemoveUnusedCPEntries - Remove constant pool entries whose refcounts
1189/// are zero.
1190bool ARMConstantIslands::RemoveUnusedCPEntries() {
1191 unsigned MadeChange = false;
1192 for (unsigned i = 0, e = CPEntries.size(); i != e; ++i) {
1193 std::vector<CPEntry> &CPEs = CPEntries[i];
1194 for (unsigned j = 0, ee = CPEs.size(); j != ee; ++j) {
1195 if (CPEs[j].RefCount == 0 && CPEs[j].CPEMI) {
1196 RemoveDeadCPEMI(CPEs[j].CPEMI);
1197 CPEs[j].CPEMI = NULL;
1198 MadeChange = true;
1199 }
1200 }
Bob Wilson84945262009-05-12 17:09:30 +00001201 }
Evan Chenged884f32007-04-03 23:39:48 +00001202 return MadeChange;
1203}
1204
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001205/// BBIsInRange - Returns true if the distance between specific MI and
Evan Cheng43aeab62007-01-26 20:38:26 +00001206/// specific BB can fit in MI's displacement field.
Evan Chengc0dbec72007-01-31 19:57:44 +00001207bool ARMConstantIslands::BBIsInRange(MachineInstr *MI,MachineBasicBlock *DestBB,
1208 unsigned MaxDisp) {
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001209 unsigned PCAdj = isThumb ? 4 : 8;
Evan Chengc0dbec72007-01-31 19:57:44 +00001210 unsigned BrOffset = GetOffsetOf(MI) + PCAdj;
Dale Johannesen99c49a42007-02-25 00:47:03 +00001211 unsigned DestOffset = BBOffsets[DestBB->getNumber()];
Evan Cheng43aeab62007-01-26 20:38:26 +00001212
Chris Lattner705e07f2009-08-23 03:41:05 +00001213 DEBUG(errs() << "Branch of destination BB#" << DestBB->getNumber()
1214 << " from BB#" << MI->getParent()->getNumber()
1215 << " max delta=" << MaxDisp
1216 << " from " << GetOffsetOf(MI) << " to " << DestOffset
1217 << " offset " << int(DestOffset-BrOffset) << "\t" << *MI);
Evan Chengc0dbec72007-01-31 19:57:44 +00001218
Dale Johannesen8593e412007-04-29 19:19:30 +00001219 if (BrOffset <= DestOffset) {
1220 // Branch before the Dest.
1221 if (DestOffset-BrOffset <= MaxDisp)
1222 return true;
1223 } else {
1224 if (BrOffset-DestOffset <= MaxDisp)
1225 return true;
1226 }
1227 return false;
Evan Cheng43aeab62007-01-26 20:38:26 +00001228}
1229
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001230/// FixUpImmediateBr - Fix up an immediate branch whose destination is too far
1231/// away to fit in its displacement field.
Evan Cheng5657c012009-07-29 02:18:14 +00001232bool ARMConstantIslands::FixUpImmediateBr(MachineFunction &MF, ImmBranch &Br) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001233 MachineInstr *MI = Br.MI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001234 MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001235
Evan Chengc0dbec72007-01-31 19:57:44 +00001236 // Check to see if the DestBB is already in-range.
1237 if (BBIsInRange(MI, DestBB, Br.MaxDisp))
Evan Cheng43aeab62007-01-26 20:38:26 +00001238 return false;
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001239
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001240 if (!Br.isCond)
Evan Cheng5657c012009-07-29 02:18:14 +00001241 return FixUpUnconditionalBr(MF, Br);
1242 return FixUpConditionalBr(MF, Br);
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001243}
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001244
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001245/// FixUpUnconditionalBr - Fix up an unconditional branch whose destination is
1246/// too far away to fit in its displacement field. If the LR register has been
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001247/// spilled in the epilogue, then we can use BL to implement a far jump.
Bob Wilson39bf0512009-05-12 17:35:29 +00001248/// Otherwise, add an intermediate branch instruction to a branch.
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001249bool
Evan Cheng5657c012009-07-29 02:18:14 +00001250ARMConstantIslands::FixUpUnconditionalBr(MachineFunction &MF, ImmBranch &Br) {
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001251 MachineInstr *MI = Br.MI;
1252 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng53c67c02009-08-07 05:45:07 +00001253 if (!isThumb1)
1254 llvm_unreachable("FixUpUnconditionalBr is Thumb1 only!");
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001255
1256 // Use BL to implement far jump.
1257 Br.MaxDisp = (1 << 21) * 2;
Chris Lattner5080f4d2008-01-11 18:10:50 +00001258 MI->setDesc(TII->get(ARM::tBfar));
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001259 BBSizes[MBB->getNumber()] += 2;
Dale Johannesen99c49a42007-02-25 00:47:03 +00001260 AdjustBBOffsetsAfter(MBB, 2);
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001261 HasFarJump = true;
1262 NumUBrFixed++;
Evan Chengbd5d3db2007-02-03 02:08:34 +00001263
Chris Lattner705e07f2009-08-23 03:41:05 +00001264 DEBUG(errs() << " Changed B to long jump " << *MI);
Evan Chengbd5d3db2007-02-03 02:08:34 +00001265
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001266 return true;
1267}
1268
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001269/// FixUpConditionalBr - Fix up a conditional branch whose destination is too
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001270/// far away to fit in its displacement field. It is converted to an inverse
1271/// conditional branch + an unconditional branch to the destination.
1272bool
Evan Cheng5657c012009-07-29 02:18:14 +00001273ARMConstantIslands::FixUpConditionalBr(MachineFunction &MF, ImmBranch &Br) {
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001274 MachineInstr *MI = Br.MI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001275 MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001276
Bob Wilson39bf0512009-05-12 17:35:29 +00001277 // Add an unconditional branch to the destination and invert the branch
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001278 // condition to jump over it:
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001279 // blt L1
1280 // =>
1281 // bge L2
1282 // b L1
1283 // L2:
Chris Lattner9a1ceae2007-12-30 20:49:49 +00001284 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(1).getImm();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001285 CC = ARMCC::getOppositeCondition(CC);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001286 unsigned CCReg = MI->getOperand(2).getReg();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001287
1288 // If the branch is at the end of its MBB and that has a fall-through block,
1289 // direct the updated conditional branch to the fall-through block. Otherwise,
1290 // split the MBB before the next instruction.
1291 MachineBasicBlock *MBB = MI->getParent();
Evan Chengbd5d3db2007-02-03 02:08:34 +00001292 MachineInstr *BMI = &MBB->back();
1293 bool NeedSplit = (BMI != MI) || !BBHasFallthrough(MBB);
Evan Cheng43aeab62007-01-26 20:38:26 +00001294
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001295 NumCBrFixed++;
Evan Chengbd5d3db2007-02-03 02:08:34 +00001296 if (BMI != MI) {
Dan Gohman8e5f2c62008-07-07 23:14:23 +00001297 if (next(MachineBasicBlock::iterator(MI)) == prior(MBB->end()) &&
Evan Chengbd5d3db2007-02-03 02:08:34 +00001298 BMI->getOpcode() == Br.UncondBr) {
Bob Wilson39bf0512009-05-12 17:35:29 +00001299 // Last MI in the BB is an unconditional branch. Can we simply invert the
Evan Cheng43aeab62007-01-26 20:38:26 +00001300 // condition and swap destinations:
1301 // beq L1
1302 // b L2
1303 // =>
1304 // bne L2
1305 // b L1
Chris Lattner8aa797a2007-12-30 23:10:15 +00001306 MachineBasicBlock *NewDest = BMI->getOperand(0).getMBB();
Evan Chengc0dbec72007-01-31 19:57:44 +00001307 if (BBIsInRange(MI, NewDest, Br.MaxDisp)) {
Chris Lattner705e07f2009-08-23 03:41:05 +00001308 DEBUG(errs() << " Invert Bcc condition and swap its destination with "
1309 << *BMI);
Chris Lattner8aa797a2007-12-30 23:10:15 +00001310 BMI->getOperand(0).setMBB(DestBB);
1311 MI->getOperand(0).setMBB(NewDest);
Evan Cheng43aeab62007-01-26 20:38:26 +00001312 MI->getOperand(1).setImm(CC);
1313 return true;
1314 }
1315 }
1316 }
1317
1318 if (NeedSplit) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001319 SplitBlockBeforeInstr(MI);
Bob Wilson39bf0512009-05-12 17:35:29 +00001320 // No need for the branch to the next block. We're adding an unconditional
Evan Chengdd353b82007-01-26 02:02:39 +00001321 // branch to the destination.
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001322 int delta = TII->GetInstSizeInBytes(&MBB->back());
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001323 BBSizes[MBB->getNumber()] -= delta;
Dale Johannesen8593e412007-04-29 19:19:30 +00001324 MachineBasicBlock* SplitBB = next(MachineFunction::iterator(MBB));
1325 AdjustBBOffsetsAfter(SplitBB, -delta);
Evan Chengdd353b82007-01-26 02:02:39 +00001326 MBB->back().eraseFromParent();
Dale Johannesen8593e412007-04-29 19:19:30 +00001327 // BBOffsets[SplitBB] is wrong temporarily, fixed below
Evan Chengdd353b82007-01-26 02:02:39 +00001328 }
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001329 MachineBasicBlock *NextBB = next(MachineFunction::iterator(MBB));
Bob Wilson84945262009-05-12 17:09:30 +00001330
Chris Lattner893e1c92009-08-23 06:49:22 +00001331 DEBUG(errs() << " Insert B to BB#" << DestBB->getNumber()
1332 << " also invert condition and change dest. to BB#"
1333 << NextBB->getNumber() << "\n");
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001334
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001335 // Insert a new conditional branch and a new unconditional branch.
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001336 // Also update the ImmBranch as well as adding a new entry for the new branch.
Dale Johannesenb6728402009-02-13 02:25:56 +00001337 BuildMI(MBB, DebugLoc::getUnknownLoc(),
1338 TII->get(MI->getOpcode()))
1339 .addMBB(NextBB).addImm(CC).addReg(CCReg);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001340 Br.MI = &MBB->back();
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001341 BBSizes[MBB->getNumber()] += TII->GetInstSizeInBytes(&MBB->back());
Dale Johannesenb6728402009-02-13 02:25:56 +00001342 BuildMI(MBB, DebugLoc::getUnknownLoc(), TII->get(Br.UncondBr)).addMBB(DestBB);
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001343 BBSizes[MBB->getNumber()] += TII->GetInstSizeInBytes(&MBB->back());
Evan Chenga9b8b8d2007-01-31 18:29:27 +00001344 unsigned MaxDisp = getUnconditionalBrDisp(Br.UncondBr);
Evan Chenga0bf7942007-01-25 23:31:04 +00001345 ImmBranches.push_back(ImmBranch(&MBB->back(), MaxDisp, false, Br.UncondBr));
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001346
1347 // Remove the old conditional branch. It may or may not still be in MBB.
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001348 BBSizes[MI->getParent()->getNumber()] -= TII->GetInstSizeInBytes(MI);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001349 MI->eraseFromParent();
1350
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001351 // The net size change is an addition of one unconditional branch.
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001352 int delta = TII->GetInstSizeInBytes(&MBB->back());
Dale Johannesen99c49a42007-02-25 00:47:03 +00001353 AdjustBBOffsetsAfter(MBB, delta);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001354 return true;
1355}
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001356
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001357/// UndoLRSpillRestore - Remove Thumb push / pop instructions that only spills
Evan Cheng4b322e52009-08-11 21:11:32 +00001358/// LR / restores LR to pc. FIXME: This is done here because it's only possible
1359/// to do this if tBfar is not used.
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001360bool ARMConstantIslands::UndoLRSpillRestore() {
1361 bool MadeChange = false;
1362 for (unsigned i = 0, e = PushPopMIs.size(); i != e; ++i) {
1363 MachineInstr *MI = PushPopMIs[i];
Evan Cheng10469f82009-10-01 20:54:53 +00001364 // First two operands are predicates, the third is a zero since there
1365 // is no writeback.
Evan Cheng44bec522007-05-15 01:29:07 +00001366 if (MI->getOpcode() == ARM::tPOP_RET &&
Evan Cheng10469f82009-10-01 20:54:53 +00001367 MI->getOperand(3).getReg() == ARM::PC &&
1368 MI->getNumExplicitOperands() == 4) {
Dale Johannesenb6728402009-02-13 02:25:56 +00001369 BuildMI(MI->getParent(), MI->getDebugLoc(), TII->get(ARM::tBX_RET));
Evan Cheng44bec522007-05-15 01:29:07 +00001370 MI->eraseFromParent();
1371 MadeChange = true;
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001372 }
1373 }
1374 return MadeChange;
1375}
Evan Cheng5657c012009-07-29 02:18:14 +00001376
Evan Chenga1efbbd2009-08-14 00:32:16 +00001377bool ARMConstantIslands::OptimizeThumb2Instructions(MachineFunction &MF) {
1378 bool MadeChange = false;
1379
1380 // Shrink ADR and LDR from constantpool.
1381 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i) {
1382 CPUser &U = CPUsers[i];
1383 unsigned Opcode = U.MI->getOpcode();
1384 unsigned NewOpc = 0;
1385 unsigned Scale = 1;
1386 unsigned Bits = 0;
1387 switch (Opcode) {
1388 default: break;
1389 case ARM::t2LEApcrel:
1390 if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
1391 NewOpc = ARM::tLEApcrel;
1392 Bits = 8;
1393 Scale = 4;
1394 }
1395 break;
1396 case ARM::t2LDRpci:
1397 if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
1398 NewOpc = ARM::tLDRpci;
1399 Bits = 8;
1400 Scale = 4;
1401 }
1402 break;
1403 }
1404
1405 if (!NewOpc)
1406 continue;
1407
1408 unsigned UserOffset = GetOffsetOf(U.MI) + 4;
1409 unsigned MaxOffs = ((1 << Bits) - 1) * Scale;
1410 // FIXME: Check if offset is multiple of scale if scale is not 4.
1411 if (CPEIsInRange(U.MI, UserOffset, U.CPEMI, MaxOffs, false, true)) {
1412 U.MI->setDesc(TII->get(NewOpc));
1413 MachineBasicBlock *MBB = U.MI->getParent();
1414 BBSizes[MBB->getNumber()] -= 2;
1415 AdjustBBOffsetsAfter(MBB, -2);
1416 ++NumT2CPShrunk;
1417 MadeChange = true;
1418 }
1419 }
1420
Evan Chenga1efbbd2009-08-14 00:32:16 +00001421 MadeChange |= OptimizeThumb2Branches(MF);
Evan Cheng31b99dd2009-08-14 18:31:44 +00001422 MadeChange |= OptimizeThumb2JumpTables(MF);
Evan Chenga1efbbd2009-08-14 00:32:16 +00001423 return MadeChange;
1424}
1425
1426bool ARMConstantIslands::OptimizeThumb2Branches(MachineFunction &MF) {
Evan Cheng31b99dd2009-08-14 18:31:44 +00001427 bool MadeChange = false;
1428
1429 for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i) {
1430 ImmBranch &Br = ImmBranches[i];
1431 unsigned Opcode = Br.MI->getOpcode();
1432 unsigned NewOpc = 0;
1433 unsigned Scale = 1;
1434 unsigned Bits = 0;
1435 switch (Opcode) {
1436 default: break;
1437 case ARM::t2B:
1438 NewOpc = ARM::tB;
1439 Bits = 11;
1440 Scale = 2;
1441 break;
1442 case ARM::t2Bcc:
1443 NewOpc = ARM::tBcc;
1444 Bits = 8;
1445 Scale = 2;
1446 break;
1447 }
1448 if (!NewOpc)
1449 continue;
1450
1451 unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
1452 MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
1453 if (BBIsInRange(Br.MI, DestBB, MaxOffs)) {
1454 Br.MI->setDesc(TII->get(NewOpc));
1455 MachineBasicBlock *MBB = Br.MI->getParent();
1456 BBSizes[MBB->getNumber()] -= 2;
1457 AdjustBBOffsetsAfter(MBB, -2);
1458 ++NumT2BrShrunk;
1459 MadeChange = true;
1460 }
1461 }
1462
1463 return MadeChange;
Evan Chenga1efbbd2009-08-14 00:32:16 +00001464}
1465
1466
1467/// OptimizeThumb2JumpTables - Use tbb / tbh instructions to generate smaller
1468/// jumptables when it's possible.
Evan Cheng5657c012009-07-29 02:18:14 +00001469bool ARMConstantIslands::OptimizeThumb2JumpTables(MachineFunction &MF) {
1470 bool MadeChange = false;
1471
1472 // FIXME: After the tables are shrunk, can we get rid some of the
1473 // constantpool tables?
1474 const MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
1475 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1476 for (unsigned i = 0, e = T2JumpTables.size(); i != e; ++i) {
1477 MachineInstr *MI = T2JumpTables[i];
1478 const TargetInstrDesc &TID = MI->getDesc();
1479 unsigned NumOps = TID.getNumOperands();
1480 unsigned JTOpIdx = NumOps - (TID.isPredicable() ? 3 : 2);
1481 MachineOperand JTOP = MI->getOperand(JTOpIdx);
1482 unsigned JTI = JTOP.getIndex();
1483 assert(JTI < JT.size());
1484
1485 bool ByteOk = true;
1486 bool HalfWordOk = true;
1487 unsigned JTOffset = GetOffsetOf(MI) + 4;
1488 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
1489 for (unsigned j = 0, ee = JTBBs.size(); j != ee; ++j) {
1490 MachineBasicBlock *MBB = JTBBs[j];
1491 unsigned DstOffset = BBOffsets[MBB->getNumber()];
Evan Cheng8770f742009-07-29 23:20:20 +00001492 // Negative offset is not ok. FIXME: We should change BB layout to make
1493 // sure all the branches are forward.
Evan Chengd26b14c2009-07-31 18:28:05 +00001494 if (ByteOk && (DstOffset - JTOffset) > ((1<<8)-1)*2)
Evan Cheng5657c012009-07-29 02:18:14 +00001495 ByteOk = false;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001496 unsigned TBHLimit = ((1<<16)-1)*2;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001497 if (HalfWordOk && (DstOffset - JTOffset) > TBHLimit)
Evan Cheng5657c012009-07-29 02:18:14 +00001498 HalfWordOk = false;
1499 if (!ByteOk && !HalfWordOk)
1500 break;
1501 }
1502
1503 if (ByteOk || HalfWordOk) {
1504 MachineBasicBlock *MBB = MI->getParent();
1505 unsigned BaseReg = MI->getOperand(0).getReg();
1506 bool BaseRegKill = MI->getOperand(0).isKill();
1507 if (!BaseRegKill)
1508 continue;
1509 unsigned IdxReg = MI->getOperand(1).getReg();
1510 bool IdxRegKill = MI->getOperand(1).isKill();
1511 MachineBasicBlock::iterator PrevI = MI;
1512 if (PrevI == MBB->begin())
1513 continue;
1514
1515 MachineInstr *AddrMI = --PrevI;
1516 bool OptOk = true;
1517 // Examine the instruction that calculate the jumptable entry address.
1518 // If it's not the one just before the t2BR_JT, we won't delete it, then
1519 // it's not worth doing the optimization.
1520 for (unsigned k = 0, eee = AddrMI->getNumOperands(); k != eee; ++k) {
1521 const MachineOperand &MO = AddrMI->getOperand(k);
1522 if (!MO.isReg() || !MO.getReg())
1523 continue;
1524 if (MO.isDef() && MO.getReg() != BaseReg) {
1525 OptOk = false;
1526 break;
1527 }
1528 if (MO.isUse() && !MO.isKill() && MO.getReg() != IdxReg) {
1529 OptOk = false;
1530 break;
1531 }
1532 }
1533 if (!OptOk)
1534 continue;
1535
Evan Chenga1efbbd2009-08-14 00:32:16 +00001536 // The previous instruction should be a tLEApcrel or t2LEApcrelJT, we want
1537 // to delete it as well.
Evan Cheng5657c012009-07-29 02:18:14 +00001538 MachineInstr *LeaMI = --PrevI;
Evan Chenga1efbbd2009-08-14 00:32:16 +00001539 if ((LeaMI->getOpcode() != ARM::tLEApcrelJT &&
1540 LeaMI->getOpcode() != ARM::t2LEApcrelJT) ||
Evan Cheng5657c012009-07-29 02:18:14 +00001541 LeaMI->getOperand(0).getReg() != BaseReg)
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001542 OptOk = false;
Evan Cheng5657c012009-07-29 02:18:14 +00001543
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001544 if (!OptOk)
1545 continue;
1546
1547 unsigned Opc = ByteOk ? ARM::t2TBB : ARM::t2TBH;
1548 MachineInstr *NewJTMI = BuildMI(MBB, MI->getDebugLoc(), TII->get(Opc))
1549 .addReg(IdxReg, getKillRegState(IdxRegKill))
1550 .addJumpTableIndex(JTI, JTOP.getTargetFlags())
1551 .addImm(MI->getOperand(JTOpIdx+1).getImm());
1552 // FIXME: Insert an "ALIGN" instruction to ensure the next instruction
1553 // is 2-byte aligned. For now, asm printer will fix it up.
1554 unsigned NewSize = TII->GetInstSizeInBytes(NewJTMI);
1555 unsigned OrigSize = TII->GetInstSizeInBytes(AddrMI);
1556 OrigSize += TII->GetInstSizeInBytes(LeaMI);
1557 OrigSize += TII->GetInstSizeInBytes(MI);
1558
1559 AddrMI->eraseFromParent();
1560 LeaMI->eraseFromParent();
1561 MI->eraseFromParent();
1562
1563 int delta = OrigSize - NewSize;
1564 BBSizes[MBB->getNumber()] -= delta;
1565 AdjustBBOffsetsAfter(MBB, -delta);
1566
1567 ++NumTBs;
1568 MadeChange = true;
Evan Cheng5657c012009-07-29 02:18:14 +00001569 }
1570 }
1571
1572 return MadeChange;
1573}