blob: 844469eadd64159c160072fd43f6601c7b3e2d12 [file] [log] [blame]
Bill Wendling9a4d2e42010-12-21 01:54:40 +00001//===-- ARMConstantIslandPass.cpp - ARM constant islands ------------------===//
Evan Chenga8e29892007-01-19 07:51:42 +00002//
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 Chengaf5cbcb2007-01-25 03:12:46 +000018#include "ARMMachineFunctionInfo.h"
Evan Chenga8e29892007-01-19 07:51:42 +000019#include "ARMInstrInfo.h"
Evan Cheng719510a2010-08-12 20:30:05 +000020#include "Thumb2InstrInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000021#include "MCTargetDesc/ARMAddressingModes.h"
Evan Chenga8e29892007-01-19 07:51:42 +000022#include "llvm/CodeGen/MachineConstantPool.h"
23#include "llvm/CodeGen/MachineFunctionPass.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"
Evan Chenga8e29892007-01-19 07:51:42 +000027#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattner705e07f2009-08-23 03:41:05 +000029#include "llvm/Support/raw_ostream.h"
Bob Wilsonb9239532009-10-15 20:49:47 +000030#include "llvm/ADT/SmallSet.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"
Jim Grosbach1fc7d712009-11-11 02:47:19 +000034#include "llvm/Support/CommandLine.h"
Bob Wilsonb9239532009-10-15 20:49:47 +000035#include <algorithm>
Evan Chenga8e29892007-01-19 07:51:42 +000036using namespace llvm;
37
Evan Chenga1efbbd2009-08-14 00:32:16 +000038STATISTIC(NumCPEs, "Number of constpool entries");
39STATISTIC(NumSplit, "Number of uncond branches inserted");
40STATISTIC(NumCBrFixed, "Number of cond branches fixed");
41STATISTIC(NumUBrFixed, "Number of uncond branches fixed");
42STATISTIC(NumTBs, "Number of table branches generated");
43STATISTIC(NumT2CPShrunk, "Number of Thumb2 constantpool instructions shrunk");
Evan Cheng31b99dd2009-08-14 18:31:44 +000044STATISTIC(NumT2BrShrunk, "Number of Thumb2 immediate branches shrunk");
Evan Chengde17fb62009-10-31 23:46:45 +000045STATISTIC(NumCBZ, "Number of CBZ / CBNZ formed");
Jim Grosbach1fc7d712009-11-11 02:47:19 +000046STATISTIC(NumJTMoved, "Number of jump table destination blocks moved");
Jim Grosbach80697d12009-11-12 17:25:07 +000047STATISTIC(NumJTInserted, "Number of jump table intermediate blocks inserted");
Jim Grosbach1fc7d712009-11-11 02:47:19 +000048
49
50static cl::opt<bool>
Jim Grosbachf04777b2009-11-17 21:24:11 +000051AdjustJumpTableBlocks("arm-adjust-jump-tables", cl::Hidden, cl::init(true),
Jim Grosbach1fc7d712009-11-11 02:47:19 +000052 cl::desc("Adjust basic block layout to better use TB[BH]"));
Evan Chenga8e29892007-01-19 07:51:42 +000053
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +000054/// WorstCaseAlign - Assuming only the low KnownBits bits in Offset are exact,
55/// add padding such that:
56///
57/// 1. The result is aligned to 1 << LogAlign.
58///
59/// 2. No other value of the unknown bits would require more padding.
60///
61/// This may add more padding than is required to satisfy just one of the
62/// constraints. It is necessary to compute alignment this way to guarantee
63/// that we don't underestimate the padding before an aligned block. If the
64/// real padding before a block is larger than we think, constant pool entries
65/// may go out of range.
66static inline unsigned WorstCaseAlign(unsigned Offset, unsigned LogAlign,
67 unsigned KnownBits) {
68 // Add the worst possible padding that the unknown bits could cause.
69 if (KnownBits < LogAlign)
70 Offset += (1u << LogAlign) - (1u << KnownBits);
71
72 // Then align the result.
73 return RoundUpToAlignment(Offset, 1u << LogAlign);
74}
75
Evan Chenga8e29892007-01-19 07:51:42 +000076namespace {
Dale Johannesen88e37ae2007-02-23 05:02:36 +000077 /// ARMConstantIslands - Due to limited PC-relative displacements, ARM
Evan Chenga8e29892007-01-19 07:51:42 +000078 /// requires constant pool entries to be scattered among the instructions
79 /// inside a function. To do this, it completely ignores the normal LLVM
Dale Johannesen88e37ae2007-02-23 05:02:36 +000080 /// constant pool; instead, it places constants wherever it feels like with
Evan Chenga8e29892007-01-19 07:51:42 +000081 /// special instructions.
82 ///
83 /// The terminology used in this pass includes:
84 /// Islands - Clumps of constants placed in the function.
85 /// Water - Potential places where an island could be formed.
86 /// CPE - A constant pool entry that has been placed somewhere, which
87 /// tracks a list of users.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000088 class ARMConstantIslands : public MachineFunctionPass {
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +000089 /// BasicBlockInfo - Information about the offset and size of a single
90 /// basic block.
91 struct BasicBlockInfo {
92 /// Offset - Distance from the beginning of the function to the beginning
93 /// of this basic block.
94 ///
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +000095 /// The offset is always aligned as required by the basic block.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +000096 unsigned Offset;
Bob Wilson84945262009-05-12 17:09:30 +000097
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +000098 /// Size - Size of the basic block in bytes. If the block contains
99 /// inline assembly, this is a worst case estimate.
100 ///
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000101 /// The size does not include any alignment padding whether from the
102 /// beginning of the block, or from an aligned jump table at the end.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000103 unsigned Size;
104
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000105 /// KnownBits - The number of low bits in Offset that are known to be
106 /// exact. The remaining bits of Offset are an upper bound.
107 uint8_t KnownBits;
108
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000109 /// Unalign - When non-zero, the block contains instructions (inline asm)
110 /// of unknown size. The real size may be smaller than Size bytes by a
111 /// multiple of 1 << Unalign.
112 uint8_t Unalign;
113
114 /// PostAlign - When non-zero, the block terminator contains a .align
115 /// directive, so the end of the block is aligned to 1 << PostAlign
116 /// bytes.
117 uint8_t PostAlign;
118
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000119 BasicBlockInfo() : Offset(0), Size(0), KnownBits(0), Unalign(0),
120 PostAlign(0) {}
Jakob Stoklund Olesen5bb32532011-12-07 01:22:52 +0000121
122 /// Compute the offset immediately following this block.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000123 unsigned postOffset() const {
124 unsigned PO = Offset + Size;
125 if (!PostAlign)
126 return PO;
127 // Add alignment padding from the terminator.
128 return WorstCaseAlign(PO, PostAlign, Unalign ? Unalign : KnownBits);
129 }
130
131 /// Compute the number of known low bits of postOffset. If this block
132 /// contains inline asm, the number of known bits drops to the
133 /// instruction alignment. An aligned terminator may increase the number
134 /// of know bits.
135 unsigned postKnownBits() const {
136 return std::max(PostAlign, Unalign ? Unalign : KnownBits);
137 }
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000138 };
139
140 std::vector<BasicBlockInfo> BBInfo;
Dale Johannesen99c49a42007-02-25 00:47:03 +0000141
Evan Chenga8e29892007-01-19 07:51:42 +0000142 /// WaterList - A sorted list of basic blocks where islands could be placed
143 /// (i.e. blocks that don't fall through to the following block, due
144 /// to a return, unreachable, or unconditional branch).
Evan Chenge03cff62007-02-09 23:59:14 +0000145 std::vector<MachineBasicBlock*> WaterList;
Evan Chengc99ef082007-02-09 20:54:44 +0000146
Bob Wilsonb9239532009-10-15 20:49:47 +0000147 /// NewWaterList - The subset of WaterList that was created since the
148 /// previous iteration by inserting unconditional branches.
149 SmallSet<MachineBasicBlock*, 4> NewWaterList;
150
Bob Wilson034de5f2009-10-12 18:52:13 +0000151 typedef std::vector<MachineBasicBlock*>::iterator water_iterator;
152
Evan Chenga8e29892007-01-19 07:51:42 +0000153 /// CPUser - One user of a constant pool, keeping the machine instruction
154 /// pointer, the constant pool being referenced, and the max displacement
Bob Wilson549dda92009-10-15 05:52:29 +0000155 /// allowed from the instruction to the CP. The HighWaterMark records the
156 /// highest basic block where a new CPEntry can be placed. To ensure this
157 /// pass terminates, the CP entries are initially placed at the end of the
158 /// function and then move monotonically to lower addresses. The
159 /// exception to this rule is when the current CP entry for a particular
160 /// CPUser is out of range, but there is another CP entry for the same
161 /// constant value in range. We want to use the existing in-range CP
162 /// entry, but if it later moves out of range, the search for new water
163 /// should resume where it left off. The HighWaterMark is used to record
164 /// that point.
Evan Chenga8e29892007-01-19 07:51:42 +0000165 struct CPUser {
166 MachineInstr *MI;
167 MachineInstr *CPEMI;
Bob Wilson549dda92009-10-15 05:52:29 +0000168 MachineBasicBlock *HighWaterMark;
Evan Chenga8e29892007-01-19 07:51:42 +0000169 unsigned MaxDisp;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000170 bool NegOk;
Evan Chengd3d9d662009-07-23 18:27:47 +0000171 bool IsSoImm;
172 CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp,
173 bool neg, bool soimm)
Bob Wilson549dda92009-10-15 05:52:29 +0000174 : MI(mi), CPEMI(cpemi), MaxDisp(maxdisp), NegOk(neg), IsSoImm(soimm) {
175 HighWaterMark = CPEMI->getParent();
176 }
Evan Chenga8e29892007-01-19 07:51:42 +0000177 };
Bob Wilson84945262009-05-12 17:09:30 +0000178
Evan Chenga8e29892007-01-19 07:51:42 +0000179 /// CPUsers - Keep track of all of the machine instructions that use various
180 /// constant pools and their max displacement.
Evan Chenge03cff62007-02-09 23:59:14 +0000181 std::vector<CPUser> CPUsers;
Bob Wilson84945262009-05-12 17:09:30 +0000182
Evan Chengc99ef082007-02-09 20:54:44 +0000183 /// CPEntry - One per constant pool entry, keeping the machine instruction
184 /// pointer, the constpool index, and the number of CPUser's which
185 /// reference this entry.
186 struct CPEntry {
187 MachineInstr *CPEMI;
188 unsigned CPI;
189 unsigned RefCount;
190 CPEntry(MachineInstr *cpemi, unsigned cpi, unsigned rc = 0)
191 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
192 };
193
194 /// CPEntries - Keep track of all of the constant pool entry machine
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000195 /// instructions. For each original constpool index (i.e. those that
196 /// existed upon entry to this pass), it keeps a vector of entries.
197 /// Original elements are cloned as we go along; the clones are
198 /// put in the vector of the original element, but have distinct CPIs.
Evan Chengc99ef082007-02-09 20:54:44 +0000199 std::vector<std::vector<CPEntry> > CPEntries;
Bob Wilson84945262009-05-12 17:09:30 +0000200
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000201 /// ImmBranch - One per immediate branch, keeping the machine instruction
202 /// pointer, conditional or unconditional, the max displacement,
203 /// and (if isCond is true) the corresponding unconditional branch
204 /// opcode.
205 struct ImmBranch {
206 MachineInstr *MI;
Evan Chengc2854142007-01-25 23:18:59 +0000207 unsigned MaxDisp : 31;
208 bool isCond : 1;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000209 int UncondBr;
Evan Chengc2854142007-01-25 23:18:59 +0000210 ImmBranch(MachineInstr *mi, unsigned maxdisp, bool cond, int ubr)
211 : MI(mi), MaxDisp(maxdisp), isCond(cond), UncondBr(ubr) {}
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000212 };
213
Evan Cheng2706f972007-05-16 05:14:06 +0000214 /// ImmBranches - Keep track of all the immediate branch instructions.
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000215 ///
Evan Chenge03cff62007-02-09 23:59:14 +0000216 std::vector<ImmBranch> ImmBranches;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000217
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000218 /// PushPopMIs - Keep track of all the Thumb push / pop instructions.
219 ///
Evan Chengc99ef082007-02-09 20:54:44 +0000220 SmallVector<MachineInstr*, 4> PushPopMIs;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000221
Evan Cheng5657c012009-07-29 02:18:14 +0000222 /// T2JumpTables - Keep track of all the Thumb2 jumptable instructions.
223 SmallVector<MachineInstr*, 4> T2JumpTables;
224
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000225 /// HasFarJump - True if any far jump instruction has been emitted during
226 /// the branch fix up pass.
227 bool HasFarJump;
228
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000229 /// HasInlineAsm - True if the function contains inline assembly.
230 bool HasInlineAsm;
231
Chris Lattner20628752010-07-22 21:27:00 +0000232 const ARMInstrInfo *TII;
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000233 const ARMSubtarget *STI;
Dale Johannesen8593e412007-04-29 19:19:30 +0000234 ARMFunctionInfo *AFI;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000235 bool isThumb;
Evan Chengd3d9d662009-07-23 18:27:47 +0000236 bool isThumb1;
David Goodwin5e47a9a2009-06-30 18:04:13 +0000237 bool isThumb2;
Evan Chenga8e29892007-01-19 07:51:42 +0000238 public:
Devang Patel19974732007-05-03 01:11:54 +0000239 static char ID;
Owen Anderson90c579d2010-08-06 18:33:48 +0000240 ARMConstantIslands() : MachineFunctionPass(ID) {}
Devang Patel794fd752007-05-01 21:15:47 +0000241
Evan Cheng5657c012009-07-29 02:18:14 +0000242 virtual bool runOnMachineFunction(MachineFunction &MF);
Evan Chenga8e29892007-01-19 07:51:42 +0000243
244 virtual const char *getPassName() const {
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000245 return "ARM constant island placement and branch shortening pass";
Evan Chenga8e29892007-01-19 07:51:42 +0000246 }
Bob Wilson84945262009-05-12 17:09:30 +0000247
Evan Chenga8e29892007-01-19 07:51:42 +0000248 private:
Evan Cheng5657c012009-07-29 02:18:14 +0000249 void DoInitialPlacement(MachineFunction &MF,
Evan Chenge03cff62007-02-09 23:59:14 +0000250 std::vector<MachineInstr*> &CPEMIs);
Evan Chengc99ef082007-02-09 20:54:44 +0000251 CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
Jim Grosbach80697d12009-11-12 17:25:07 +0000252 void JumpTableFunctionScan(MachineFunction &MF);
Evan Cheng5657c012009-07-29 02:18:14 +0000253 void InitialFunctionScan(MachineFunction &MF,
Evan Chenge03cff62007-02-09 23:59:14 +0000254 const std::vector<MachineInstr*> &CPEMIs);
Evan Cheng0c615842007-01-31 02:22:22 +0000255 MachineBasicBlock *SplitBlockBeforeInstr(MachineInstr *MI);
Evan Chenga8e29892007-01-19 07:51:42 +0000256 void UpdateForInsertedWaterBlock(MachineBasicBlock *NewBB);
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +0000257 void AdjustBBOffsetsAfter(MachineBasicBlock *BB);
Evan Chenged884f32007-04-03 23:39:48 +0000258 bool DecrementOldEntry(unsigned CPI, MachineInstr* CPEMI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000259 int LookForExistingCPEntry(CPUser& U, unsigned UserOffset);
Bob Wilsonb9239532009-10-15 20:49:47 +0000260 bool LookForWater(CPUser&U, unsigned UserOffset, water_iterator &WaterIter);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000261 void CreateNewWater(unsigned CPUserIndex, unsigned UserOffset,
Bob Wilson757652c2009-10-12 21:39:43 +0000262 MachineBasicBlock *&NewMBB);
Evan Cheng5657c012009-07-29 02:18:14 +0000263 bool HandleConstantPoolUser(MachineFunction &MF, unsigned CPUserIndex);
Evan Chenged884f32007-04-03 23:39:48 +0000264 void RemoveDeadCPEMI(MachineInstr *CPEMI);
265 bool RemoveUnusedCPEntries();
Bob Wilson84945262009-05-12 17:09:30 +0000266 bool CPEIsInRange(MachineInstr *MI, unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000267 MachineInstr *CPEMI, unsigned Disp, bool NegOk,
268 bool DoDump = false);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000269 bool WaterIsInRange(unsigned UserOffset, MachineBasicBlock *Water,
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000270 CPUser &U);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000271 bool OffsetIsInRange(unsigned UserOffset, unsigned TrialOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +0000272 unsigned Disp, bool NegativeOK, bool IsSoImm = false);
Evan Chengc0dbec72007-01-31 19:57:44 +0000273 bool BBIsInRange(MachineInstr *MI, MachineBasicBlock *BB, unsigned Disp);
Evan Cheng5657c012009-07-29 02:18:14 +0000274 bool FixUpImmediateBr(MachineFunction &MF, ImmBranch &Br);
275 bool FixUpConditionalBr(MachineFunction &MF, ImmBranch &Br);
276 bool FixUpUnconditionalBr(MachineFunction &MF, ImmBranch &Br);
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000277 bool UndoLRSpillRestore();
Evan Chenga1efbbd2009-08-14 00:32:16 +0000278 bool OptimizeThumb2Instructions(MachineFunction &MF);
279 bool OptimizeThumb2Branches(MachineFunction &MF);
Jim Grosbach80697d12009-11-12 17:25:07 +0000280 bool ReorderThumb2JumpTables(MachineFunction &MF);
Evan Cheng5657c012009-07-29 02:18:14 +0000281 bool OptimizeThumb2JumpTables(MachineFunction &MF);
Jim Grosbach1fc7d712009-11-11 02:47:19 +0000282 MachineBasicBlock *AdjustJTTargetBlockForward(MachineBasicBlock *BB,
283 MachineBasicBlock *JTBB);
Evan Chenga8e29892007-01-19 07:51:42 +0000284
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000285 void ComputeBlockSize(MachineBasicBlock *MBB);
Evan Chenga8e29892007-01-19 07:51:42 +0000286 unsigned GetOffsetOf(MachineInstr *MI) const;
Dale Johannesen8593e412007-04-29 19:19:30 +0000287 void dumpBBs();
Evan Cheng5657c012009-07-29 02:18:14 +0000288 void verify(MachineFunction &MF);
Evan Chenga8e29892007-01-19 07:51:42 +0000289 };
Devang Patel19974732007-05-03 01:11:54 +0000290 char ARMConstantIslands::ID = 0;
Evan Chenga8e29892007-01-19 07:51:42 +0000291}
292
Dale Johannesen8593e412007-04-29 19:19:30 +0000293/// verify - check BBOffsets, BBSizes, alignment of islands
Evan Cheng5657c012009-07-29 02:18:14 +0000294void ARMConstantIslands::verify(MachineFunction &MF) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000295#ifndef NDEBUG
Evan Cheng5657c012009-07-29 02:18:14 +0000296 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
Evan Chengd3d9d662009-07-23 18:27:47 +0000297 MBBI != E; ++MBBI) {
298 MachineBasicBlock *MBB = MBBI;
Jakob Stoklund Olesen99486be2011-12-08 01:10:05 +0000299 unsigned Align = MBB->getAlignment();
300 unsigned MBBId = MBB->getNumber();
301 assert(BBInfo[MBBId].Offset % (1u << Align) == 0);
302 assert(!MBBId || BBInfo[MBBId - 1].postOffset() <= BBInfo[MBBId].Offset);
Dale Johannesen8593e412007-04-29 19:19:30 +0000303 }
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000304 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i) {
305 CPUser &U = CPUsers[i];
306 unsigned UserOffset = GetOffsetOf(U.MI) + (isThumb ? 4 : 8);
Jim Grosbacha9562562009-11-20 19:37:38 +0000307 unsigned CPEOffset = GetOffsetOf(U.CPEMI);
308 unsigned Disp = UserOffset < CPEOffset ? CPEOffset - UserOffset :
309 UserOffset - CPEOffset;
310 assert(Disp <= U.MaxDisp || "Constant pool entry out of range!");
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000311 }
Jim Grosbacha9562562009-11-20 19:37:38 +0000312#endif
Dale Johannesen8593e412007-04-29 19:19:30 +0000313}
314
315/// print block size and offset information - debugging
316void ARMConstantIslands::dumpBBs() {
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000317 for (unsigned J = 0, E = BBInfo.size(); J !=E; ++J) {
318 DEBUG(errs() << "block " << J << " offset " << BBInfo[J].Offset
319 << " size " << BBInfo[J].Size << "\n");
Dale Johannesen8593e412007-04-29 19:19:30 +0000320 }
321}
322
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000323/// createARMConstantIslandPass - returns an instance of the constpool
324/// island pass.
Evan Chenga8e29892007-01-19 07:51:42 +0000325FunctionPass *llvm::createARMConstantIslandPass() {
326 return new ARMConstantIslands();
327}
328
Evan Cheng5657c012009-07-29 02:18:14 +0000329bool ARMConstantIslands::runOnMachineFunction(MachineFunction &MF) {
330 MachineConstantPool &MCP = *MF.getConstantPool();
Bob Wilson84945262009-05-12 17:09:30 +0000331
Chris Lattner20628752010-07-22 21:27:00 +0000332 TII = (const ARMInstrInfo*)MF.getTarget().getInstrInfo();
Evan Cheng5657c012009-07-29 02:18:14 +0000333 AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000334 STI = &MF.getTarget().getSubtarget<ARMSubtarget>();
335
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000336 isThumb = AFI->isThumbFunction();
Evan Chengd3d9d662009-07-23 18:27:47 +0000337 isThumb1 = AFI->isThumb1OnlyFunction();
David Goodwin5e47a9a2009-06-30 18:04:13 +0000338 isThumb2 = AFI->isThumb2Function();
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000339
340 HasFarJump = false;
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000341 HasInlineAsm = false;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000342
Evan Chenga8e29892007-01-19 07:51:42 +0000343 // Renumber all of the machine basic blocks in the function, guaranteeing that
344 // the numbers agree with the position of the block in the function.
Evan Cheng5657c012009-07-29 02:18:14 +0000345 MF.RenumberBlocks();
Evan Chenga8e29892007-01-19 07:51:42 +0000346
Jim Grosbach80697d12009-11-12 17:25:07 +0000347 // Try to reorder and otherwise adjust the block layout to make good use
348 // of the TB[BH] instructions.
349 bool MadeChange = false;
350 if (isThumb2 && AdjustJumpTableBlocks) {
351 JumpTableFunctionScan(MF);
352 MadeChange |= ReorderThumb2JumpTables(MF);
353 // Data is out of date, so clear it. It'll be re-computed later.
Jim Grosbach80697d12009-11-12 17:25:07 +0000354 T2JumpTables.clear();
355 // Blocks may have shifted around. Keep the numbering up to date.
356 MF.RenumberBlocks();
357 }
358
Evan Chengd26b14c2009-07-31 18:28:05 +0000359 // Thumb1 functions containing constant pools get 4-byte alignment.
Evan Chengd3d9d662009-07-23 18:27:47 +0000360 // This is so we can keep exact track of where the alignment padding goes.
361
Chris Lattner7d7dab02010-01-27 23:37:36 +0000362 // ARM and Thumb2 functions need to be 4-byte aligned.
363 if (!isThumb1)
364 MF.EnsureAlignment(2); // 2 = log2(4)
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000365
Evan Chenga8e29892007-01-19 07:51:42 +0000366 // Perform the initial placement of the constant pool entries. To start with,
367 // we put them all at the end of the function.
Evan Chenge03cff62007-02-09 23:59:14 +0000368 std::vector<MachineInstr*> CPEMIs;
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000369 if (!MCP.isEmpty()) {
Evan Cheng5657c012009-07-29 02:18:14 +0000370 DoInitialPlacement(MF, CPEMIs);
Evan Chengd3d9d662009-07-23 18:27:47 +0000371 if (isThumb1)
Chris Lattner7d7dab02010-01-27 23:37:36 +0000372 MF.EnsureAlignment(2); // 2 = log2(4)
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000373 }
Bob Wilson84945262009-05-12 17:09:30 +0000374
Evan Chenga8e29892007-01-19 07:51:42 +0000375 /// The next UID to take is the first unused one.
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000376 AFI->initPICLabelUId(CPEMIs.size());
Bob Wilson84945262009-05-12 17:09:30 +0000377
Evan Chenga8e29892007-01-19 07:51:42 +0000378 // Do the initial scan of the function, building up information about the
379 // sizes of each block, the location of all the water, and finding all of the
380 // constant pool users.
Evan Cheng5657c012009-07-29 02:18:14 +0000381 InitialFunctionScan(MF, CPEMIs);
Evan Chenga8e29892007-01-19 07:51:42 +0000382 CPEMIs.clear();
Dale Johannesen8086d582010-07-23 22:50:23 +0000383 DEBUG(dumpBBs());
384
Bob Wilson84945262009-05-12 17:09:30 +0000385
Evan Chenged884f32007-04-03 23:39:48 +0000386 /// Remove dead constant pool entries.
Bill Wendlingcd080242010-12-18 01:53:06 +0000387 MadeChange |= RemoveUnusedCPEntries();
Evan Chenged884f32007-04-03 23:39:48 +0000388
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000389 // Iteratively place constant pool entries and fix up branches until there
390 // is no change.
Evan Chengb6879b22009-08-07 07:35:21 +0000391 unsigned NoCPIters = 0, NoBRIters = 0;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000392 while (true) {
Evan Chengb6879b22009-08-07 07:35:21 +0000393 bool CPChange = false;
Evan Chenga8e29892007-01-19 07:51:42 +0000394 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i)
Evan Chengb6879b22009-08-07 07:35:21 +0000395 CPChange |= HandleConstantPoolUser(MF, i);
396 if (CPChange && ++NoCPIters > 30)
397 llvm_unreachable("Constant Island pass failed to converge!");
Evan Cheng82020102007-07-10 22:00:16 +0000398 DEBUG(dumpBBs());
Jim Grosbach26b8ef52010-07-07 21:06:51 +0000399
Bob Wilsonb9239532009-10-15 20:49:47 +0000400 // Clear NewWaterList now. If we split a block for branches, it should
401 // appear as "new water" for the next iteration of constant pool placement.
402 NewWaterList.clear();
Evan Chengb6879b22009-08-07 07:35:21 +0000403
404 bool BRChange = false;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000405 for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i)
Evan Chengb6879b22009-08-07 07:35:21 +0000406 BRChange |= FixUpImmediateBr(MF, ImmBranches[i]);
407 if (BRChange && ++NoBRIters > 30)
408 llvm_unreachable("Branch Fix Up pass failed to converge!");
Evan Cheng82020102007-07-10 22:00:16 +0000409 DEBUG(dumpBBs());
Evan Chengb6879b22009-08-07 07:35:21 +0000410
411 if (!CPChange && !BRChange)
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000412 break;
413 MadeChange = true;
414 }
Evan Chenged884f32007-04-03 23:39:48 +0000415
Evan Chenga1efbbd2009-08-14 00:32:16 +0000416 // Shrink 32-bit Thumb2 branch, load, and store instructions.
Evan Chenge44be632010-08-09 18:35:19 +0000417 if (isThumb2 && !STI->prefers32BitThumb())
Evan Chenga1efbbd2009-08-14 00:32:16 +0000418 MadeChange |= OptimizeThumb2Instructions(MF);
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000419
Dale Johannesen8593e412007-04-29 19:19:30 +0000420 // After a while, this might be made debug-only, but it is not expensive.
Evan Cheng5657c012009-07-29 02:18:14 +0000421 verify(MF);
Dale Johannesen8593e412007-04-29 19:19:30 +0000422
Jim Grosbach26b8ef52010-07-07 21:06:51 +0000423 // If LR has been forced spilled and no far jump (i.e. BL) has been issued,
424 // undo the spill / restore of LR if possible.
Evan Cheng5657c012009-07-29 02:18:14 +0000425 if (isThumb && !HasFarJump && AFI->isLRSpilledForFarJump())
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000426 MadeChange |= UndoLRSpillRestore();
427
Anton Korobeynikov98b928e2011-01-30 22:07:39 +0000428 // Save the mapping between original and cloned constpool entries.
429 for (unsigned i = 0, e = CPEntries.size(); i != e; ++i) {
430 for (unsigned j = 0, je = CPEntries[i].size(); j != je; ++j) {
431 const CPEntry & CPE = CPEntries[i][j];
432 AFI->recordCPEClone(i, CPE.CPI);
433 }
434 }
435
Evan Chengb1c857b2010-07-22 02:09:47 +0000436 DEBUG(errs() << '\n'; dumpBBs());
437
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000438 BBInfo.clear();
Evan Chenga8e29892007-01-19 07:51:42 +0000439 WaterList.clear();
440 CPUsers.clear();
Evan Chengc99ef082007-02-09 20:54:44 +0000441 CPEntries.clear();
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000442 ImmBranches.clear();
Evan Chengc99ef082007-02-09 20:54:44 +0000443 PushPopMIs.clear();
Evan Cheng5657c012009-07-29 02:18:14 +0000444 T2JumpTables.clear();
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000445
446 return MadeChange;
Evan Chenga8e29892007-01-19 07:51:42 +0000447}
448
449/// DoInitialPlacement - Perform the initial placement of the constant pool
450/// entries. To start with, we put them all at the end of the function.
Evan Cheng5657c012009-07-29 02:18:14 +0000451void ARMConstantIslands::DoInitialPlacement(MachineFunction &MF,
Bob Wilson84945262009-05-12 17:09:30 +0000452 std::vector<MachineInstr*> &CPEMIs) {
Evan Chenga8e29892007-01-19 07:51:42 +0000453 // Create the basic block to hold the CPE's.
Evan Cheng5657c012009-07-29 02:18:14 +0000454 MachineBasicBlock *BB = MF.CreateMachineBasicBlock();
455 MF.push_back(BB);
Bob Wilson84945262009-05-12 17:09:30 +0000456
Jakob Stoklund Olesen3e572ac2011-12-06 01:43:02 +0000457 // Mark the basic block as 4-byte aligned as required by the const-pool.
458 BB->setAlignment(2);
459
Evan Chenga8e29892007-01-19 07:51:42 +0000460 // Add all of the constants from the constant pool to the end block, use an
461 // identity mapping of CPI's to CPE's.
462 const std::vector<MachineConstantPoolEntry> &CPs =
Evan Cheng5657c012009-07-29 02:18:14 +0000463 MF.getConstantPool()->getConstants();
Bob Wilson84945262009-05-12 17:09:30 +0000464
Evan Cheng5657c012009-07-29 02:18:14 +0000465 const TargetData &TD = *MF.getTarget().getTargetData();
Evan Chenga8e29892007-01-19 07:51:42 +0000466 for (unsigned i = 0, e = CPs.size(); i != e; ++i) {
Duncan Sands777d2302009-05-09 07:06:46 +0000467 unsigned Size = TD.getTypeAllocSize(CPs[i].getType());
Evan Chenga8e29892007-01-19 07:51:42 +0000468 // Verify that all constant pool entries are a multiple of 4 bytes. If not,
469 // we would have to pad them out or something so that instructions stay
470 // aligned.
471 assert((Size & 3) == 0 && "CP Entry not multiple of 4 bytes!");
472 MachineInstr *CPEMI =
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000473 BuildMI(BB, DebugLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
474 .addImm(i).addConstantPoolIndex(i).addImm(Size);
Evan Chenga8e29892007-01-19 07:51:42 +0000475 CPEMIs.push_back(CPEMI);
Evan Chengc99ef082007-02-09 20:54:44 +0000476
477 // Add a new CPEntry, but no corresponding CPUser yet.
478 std::vector<CPEntry> CPEs;
479 CPEs.push_back(CPEntry(CPEMI, i));
480 CPEntries.push_back(CPEs);
Dan Gohmanfe601042010-06-22 15:08:57 +0000481 ++NumCPEs;
Chris Lattner893e1c92009-08-23 06:49:22 +0000482 DEBUG(errs() << "Moved CPI#" << i << " to end of function as #" << i
483 << "\n");
Evan Chenga8e29892007-01-19 07:51:42 +0000484 }
485}
486
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000487/// BBHasFallthrough - Return true if the specified basic block can fallthrough
Evan Chenga8e29892007-01-19 07:51:42 +0000488/// into the block immediately after it.
489static bool BBHasFallthrough(MachineBasicBlock *MBB) {
490 // Get the next machine basic block in the function.
491 MachineFunction::iterator MBBI = MBB;
Jim Grosbach18f30e62010-06-02 21:53:11 +0000492 // Can't fall off end of function.
493 if (llvm::next(MBBI) == MBB->getParent()->end())
Evan Chenga8e29892007-01-19 07:51:42 +0000494 return false;
Bob Wilson84945262009-05-12 17:09:30 +0000495
Chris Lattner7896c9f2009-12-03 00:50:42 +0000496 MachineBasicBlock *NextBB = llvm::next(MBBI);
Evan Chenga8e29892007-01-19 07:51:42 +0000497 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
498 E = MBB->succ_end(); I != E; ++I)
499 if (*I == NextBB)
500 return true;
Bob Wilson84945262009-05-12 17:09:30 +0000501
Evan Chenga8e29892007-01-19 07:51:42 +0000502 return false;
503}
504
Evan Chengc99ef082007-02-09 20:54:44 +0000505/// findConstPoolEntry - Given the constpool index and CONSTPOOL_ENTRY MI,
506/// look up the corresponding CPEntry.
507ARMConstantIslands::CPEntry
508*ARMConstantIslands::findConstPoolEntry(unsigned CPI,
509 const MachineInstr *CPEMI) {
510 std::vector<CPEntry> &CPEs = CPEntries[CPI];
511 // Number of entries per constpool index should be small, just do a
512 // linear search.
513 for (unsigned i = 0, e = CPEs.size(); i != e; ++i) {
514 if (CPEs[i].CPEMI == CPEMI)
515 return &CPEs[i];
516 }
517 return NULL;
518}
519
Jim Grosbach80697d12009-11-12 17:25:07 +0000520/// JumpTableFunctionScan - Do a scan of the function, building up
521/// information about the sizes of each block and the locations of all
522/// the jump tables.
523void ARMConstantIslands::JumpTableFunctionScan(MachineFunction &MF) {
Jim Grosbach80697d12009-11-12 17:25:07 +0000524 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
525 MBBI != E; ++MBBI) {
526 MachineBasicBlock &MBB = *MBBI;
527
Jim Grosbach80697d12009-11-12 17:25:07 +0000528 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
Jim Grosbach08cbda52009-11-16 18:58:52 +0000529 I != E; ++I)
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000530 if (I->isBranch() && I->getOpcode() == ARM::t2BR_JT)
Jim Grosbach08cbda52009-11-16 18:58:52 +0000531 T2JumpTables.push_back(I);
Jim Grosbach80697d12009-11-12 17:25:07 +0000532 }
533}
534
Evan Chenga8e29892007-01-19 07:51:42 +0000535/// InitialFunctionScan - Do the initial scan of the function, building up
536/// information about the sizes of each block, the location of all the water,
537/// and finding all of the constant pool users.
Evan Cheng5657c012009-07-29 02:18:14 +0000538void ARMConstantIslands::InitialFunctionScan(MachineFunction &MF,
Evan Chenge03cff62007-02-09 23:59:14 +0000539 const std::vector<MachineInstr*> &CPEMIs) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000540 BBInfo.clear();
541 BBInfo.resize(MF.getNumBlockIDs());
542
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000543 // First thing, compute the size of all basic blocks, and see if the function
544 // has any inline assembly in it. If so, we have to be conservative about
545 // alignment assumptions, as we don't know for sure the size of any
546 // instructions in the inline assembly.
547 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
548 ComputeBlockSize(I);
549
550 // The known bits of the entry block offset are determined by the function
551 // alignment.
552 BBInfo.front().KnownBits = MF.getAlignment();
553
554 // Compute block offsets and known bits.
555 AdjustBBOffsetsAfter(MF.begin());
556
Bill Wendling9a4d2e42010-12-21 01:54:40 +0000557 // Now go back through the instructions and build up our data structures.
Evan Cheng5657c012009-07-29 02:18:14 +0000558 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
Evan Chenga8e29892007-01-19 07:51:42 +0000559 MBBI != E; ++MBBI) {
560 MachineBasicBlock &MBB = *MBBI;
Bob Wilson84945262009-05-12 17:09:30 +0000561
Evan Chenga8e29892007-01-19 07:51:42 +0000562 // If this block doesn't fall through into the next MBB, then this is
563 // 'water' that a constant pool island could be placed.
564 if (!BBHasFallthrough(&MBB))
565 WaterList.push_back(&MBB);
Bob Wilson84945262009-05-12 17:09:30 +0000566
Evan Chenga8e29892007-01-19 07:51:42 +0000567 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
568 I != E; ++I) {
Jim Grosbach9cfcfeb2010-06-21 17:49:23 +0000569 if (I->isDebugValue())
570 continue;
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000571
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000572 int Opc = I->getOpcode();
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000573 if (I->isBranch()) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000574 bool isCond = false;
575 unsigned Bits = 0;
576 unsigned Scale = 1;
577 int UOpc = Opc;
578 switch (Opc) {
Evan Cheng5657c012009-07-29 02:18:14 +0000579 default:
580 continue; // Ignore other JT branches
Evan Cheng5657c012009-07-29 02:18:14 +0000581 case ARM::t2BR_JT:
582 T2JumpTables.push_back(I);
583 continue; // Does not get an entry in ImmBranches
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000584 case ARM::Bcc:
585 isCond = true;
586 UOpc = ARM::B;
587 // Fallthrough
588 case ARM::B:
589 Bits = 24;
590 Scale = 4;
591 break;
592 case ARM::tBcc:
593 isCond = true;
594 UOpc = ARM::tB;
595 Bits = 8;
596 Scale = 2;
597 break;
598 case ARM::tB:
599 Bits = 11;
600 Scale = 2;
601 break;
David Goodwin5e47a9a2009-06-30 18:04:13 +0000602 case ARM::t2Bcc:
603 isCond = true;
604 UOpc = ARM::t2B;
605 Bits = 20;
606 Scale = 2;
607 break;
608 case ARM::t2B:
609 Bits = 24;
610 Scale = 2;
611 break;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000612 }
Evan Chengb43216e2007-02-01 10:16:15 +0000613
614 // Record this immediate branch.
Evan Chengbd5d3db2007-02-03 02:08:34 +0000615 unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
Evan Chengb43216e2007-02-01 10:16:15 +0000616 ImmBranches.push_back(ImmBranch(I, MaxOffs, isCond, UOpc));
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000617 }
618
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000619 if (Opc == ARM::tPUSH || Opc == ARM::tPOP_RET)
620 PushPopMIs.push_back(I);
621
Evan Chengd3d9d662009-07-23 18:27:47 +0000622 if (Opc == ARM::CONSTPOOL_ENTRY)
623 continue;
624
Evan Chenga8e29892007-01-19 07:51:42 +0000625 // Scan the instructions for constant pool operands.
626 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op)
Dan Gohmand735b802008-10-03 15:45:36 +0000627 if (I->getOperand(op).isCPI()) {
Evan Chenga8e29892007-01-19 07:51:42 +0000628 // We found one. The addressing mode tells us the max displacement
629 // from the PC that this instruction permits.
Bob Wilson84945262009-05-12 17:09:30 +0000630
Evan Chenga8e29892007-01-19 07:51:42 +0000631 // Basic size info comes from the TSFlags field.
Evan Chengb43216e2007-02-01 10:16:15 +0000632 unsigned Bits = 0;
633 unsigned Scale = 1;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000634 bool NegOk = false;
Evan Chengd3d9d662009-07-23 18:27:47 +0000635 bool IsSoImm = false;
636
637 switch (Opc) {
Bob Wilson84945262009-05-12 17:09:30 +0000638 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000639 llvm_unreachable("Unknown addressing mode for CP reference!");
Evan Chengd3d9d662009-07-23 18:27:47 +0000640 break;
641
642 // Taking the address of a CP entry.
643 case ARM::LEApcrel:
644 // This takes a SoImm, which is 8 bit immediate rotated. We'll
645 // pretend the maximum offset is 255 * 4. Since each instruction
Jim Grosbachdec6de92009-11-19 18:23:19 +0000646 // 4 byte wide, this is always correct. We'll check for other
Evan Chengd3d9d662009-07-23 18:27:47 +0000647 // displacements that fits in a SoImm as well.
Evan Chengb43216e2007-02-01 10:16:15 +0000648 Bits = 8;
Evan Chengd3d9d662009-07-23 18:27:47 +0000649 Scale = 4;
650 NegOk = true;
651 IsSoImm = true;
652 break;
Owen Anderson6b8719f2010-12-13 22:51:08 +0000653 case ARM::t2LEApcrel:
Evan Chengd3d9d662009-07-23 18:27:47 +0000654 Bits = 12;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000655 NegOk = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000656 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000657 case ARM::tLEApcrel:
658 Bits = 8;
659 Scale = 4;
660 break;
661
Jim Grosbach3e556122010-10-26 22:37:02 +0000662 case ARM::LDRi12:
Evan Chengd3d9d662009-07-23 18:27:47 +0000663 case ARM::LDRcp:
Owen Anderson971b83b2011-02-08 22:39:40 +0000664 case ARM::t2LDRpci:
Evan Cheng556f33c2007-02-01 20:44:52 +0000665 Bits = 12; // +-offset_12
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000666 NegOk = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000667 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000668
669 case ARM::tLDRpci:
Evan Chengb43216e2007-02-01 10:16:15 +0000670 Bits = 8;
671 Scale = 4; // +(offset_8*4)
Evan Cheng012f2d92007-01-24 08:53:17 +0000672 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000673
Jim Grosbache5165492009-11-09 00:11:35 +0000674 case ARM::VLDRD:
675 case ARM::VLDRS:
Evan Chengd3d9d662009-07-23 18:27:47 +0000676 Bits = 8;
677 Scale = 4; // +-(offset_8*4)
678 NegOk = true;
Evan Cheng055b0312009-06-29 07:51:04 +0000679 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000680 }
Evan Chengb43216e2007-02-01 10:16:15 +0000681
Evan Chenga8e29892007-01-19 07:51:42 +0000682 // Remember that this is a user of a CP entry.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000683 unsigned CPI = I->getOperand(op).getIndex();
Evan Chengc99ef082007-02-09 20:54:44 +0000684 MachineInstr *CPEMI = CPEMIs[CPI];
Evan Cheng31b99dd2009-08-14 18:31:44 +0000685 unsigned MaxOffs = ((1 << Bits)-1) * Scale;
Evan Chengd3d9d662009-07-23 18:27:47 +0000686 CPUsers.push_back(CPUser(I, CPEMI, MaxOffs, NegOk, IsSoImm));
Evan Chengc99ef082007-02-09 20:54:44 +0000687
688 // Increment corresponding CPEntry reference count.
689 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
690 assert(CPE && "Cannot find a corresponding CPEntry!");
691 CPE->RefCount++;
Bob Wilson84945262009-05-12 17:09:30 +0000692
Evan Chenga8e29892007-01-19 07:51:42 +0000693 // Instructions can only use one CP entry, don't bother scanning the
694 // rest of the operands.
695 break;
696 }
697 }
Evan Chenga8e29892007-01-19 07:51:42 +0000698 }
699}
700
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000701/// ComputeBlockSize - Compute the size and some alignment information for MBB.
702/// This function updates BBInfo directly.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000703void ARMConstantIslands::ComputeBlockSize(MachineBasicBlock *MBB) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000704 BasicBlockInfo &BBI = BBInfo[MBB->getNumber()];
705 BBI.Size = 0;
706 BBI.Unalign = 0;
707 BBI.PostAlign = 0;
708
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000709 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E;
710 ++I) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000711 BBI.Size += TII->GetInstSizeInBytes(I);
712 // For inline asm, GetInstSizeInBytes returns a conservative estimate.
713 // The actual size may be smaller, but still a multiple of the instr size.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000714 if (I->isInlineAsm()) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000715 BBI.Unalign = isThumb ? 1 : 2;
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000716 HasInlineAsm = true;
717 }
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000718 }
719
720 // tBR_JTr contains a .align 2 directive.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000721 if (!MBB->empty() && MBB->back().getOpcode() == ARM::tBR_JTr) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000722 BBI.PostAlign = 2;
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000723 MBB->getParent()->EnsureAlignment(2);
724 }
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000725}
726
Evan Chenga8e29892007-01-19 07:51:42 +0000727/// GetOffsetOf - Return the current offset of the specified machine instruction
728/// from the start of the function. This offset changes as stuff is moved
729/// around inside the function.
730unsigned ARMConstantIslands::GetOffsetOf(MachineInstr *MI) const {
731 MachineBasicBlock *MBB = MI->getParent();
Bob Wilson84945262009-05-12 17:09:30 +0000732
Evan Chenga8e29892007-01-19 07:51:42 +0000733 // The offset is composed of two things: the sum of the sizes of all MBB's
734 // before this instruction's block, and the offset from the start of the block
735 // it is in.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000736 unsigned Offset = BBInfo[MBB->getNumber()].Offset;
Evan Chenga8e29892007-01-19 07:51:42 +0000737
738 // Sum instructions before MI in MBB.
739 for (MachineBasicBlock::iterator I = MBB->begin(); ; ++I) {
740 assert(I != MBB->end() && "Didn't find MI in its own basic block?");
741 if (&*I == MI) return Offset;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000742 Offset += TII->GetInstSizeInBytes(I);
Evan Chenga8e29892007-01-19 07:51:42 +0000743 }
744}
745
746/// CompareMBBNumbers - Little predicate function to sort the WaterList by MBB
747/// ID.
748static bool CompareMBBNumbers(const MachineBasicBlock *LHS,
749 const MachineBasicBlock *RHS) {
750 return LHS->getNumber() < RHS->getNumber();
751}
752
753/// UpdateForInsertedWaterBlock - When a block is newly inserted into the
754/// machine function, it upsets all of the block numbers. Renumber the blocks
755/// and update the arrays that parallel this numbering.
756void ARMConstantIslands::UpdateForInsertedWaterBlock(MachineBasicBlock *NewBB) {
Duncan Sandsab4c3662011-02-15 09:23:02 +0000757 // Renumber the MBB's to keep them consecutive.
Evan Chenga8e29892007-01-19 07:51:42 +0000758 NewBB->getParent()->RenumberBlocks(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000759
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000760 // Insert an entry into BBInfo to align it properly with the (newly
Evan Chenga8e29892007-01-19 07:51:42 +0000761 // renumbered) block numbers.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000762 BBInfo.insert(BBInfo.begin() + NewBB->getNumber(), BasicBlockInfo());
Bob Wilson84945262009-05-12 17:09:30 +0000763
764 // Next, update WaterList. Specifically, we need to add NewMBB as having
Evan Chenga8e29892007-01-19 07:51:42 +0000765 // available water after it.
Bob Wilson034de5f2009-10-12 18:52:13 +0000766 water_iterator IP =
Evan Chenga8e29892007-01-19 07:51:42 +0000767 std::lower_bound(WaterList.begin(), WaterList.end(), NewBB,
768 CompareMBBNumbers);
769 WaterList.insert(IP, NewBB);
770}
771
772
773/// Split the basic block containing MI into two blocks, which are joined by
Bob Wilsonb9239532009-10-15 20:49:47 +0000774/// an unconditional branch. Update data structures and renumber blocks to
Evan Cheng0c615842007-01-31 02:22:22 +0000775/// account for this change and returns the newly created block.
776MachineBasicBlock *ARMConstantIslands::SplitBlockBeforeInstr(MachineInstr *MI) {
Evan Chenga8e29892007-01-19 07:51:42 +0000777 MachineBasicBlock *OrigBB = MI->getParent();
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000778 MachineFunction &MF = *OrigBB->getParent();
Evan Chenga8e29892007-01-19 07:51:42 +0000779
780 // Create a new MBB for the code after the OrigBB.
Bob Wilson84945262009-05-12 17:09:30 +0000781 MachineBasicBlock *NewBB =
782 MF.CreateMachineBasicBlock(OrigBB->getBasicBlock());
Evan Chenga8e29892007-01-19 07:51:42 +0000783 MachineFunction::iterator MBBI = OrigBB; ++MBBI;
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000784 MF.insert(MBBI, NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000785
Evan Chenga8e29892007-01-19 07:51:42 +0000786 // Splice the instructions starting with MI over to NewBB.
787 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
Bob Wilson84945262009-05-12 17:09:30 +0000788
Evan Chenga8e29892007-01-19 07:51:42 +0000789 // Add an unconditional branch from OrigBB to NewBB.
Evan Chenga9b8b8d2007-01-31 18:29:27 +0000790 // Note the new unconditional branch is not being recorded.
Dale Johannesenb6728402009-02-13 02:25:56 +0000791 // There doesn't seem to be meaningful DebugInfo available; this doesn't
792 // correspond to anything in the source.
Evan Cheng58541fd2009-07-07 01:16:41 +0000793 unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B;
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000794 if (!isThumb)
795 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB);
796 else
797 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB)
798 .addImm(ARMCC::AL).addReg(0);
Dan Gohmanfe601042010-06-22 15:08:57 +0000799 ++NumSplit;
Bob Wilson84945262009-05-12 17:09:30 +0000800
Evan Chenga8e29892007-01-19 07:51:42 +0000801 // Update the CFG. All succs of OrigBB are now succs of NewBB.
Jakob Stoklund Olesene80fba02011-12-06 00:51:12 +0000802 NewBB->transferSuccessors(OrigBB);
Bob Wilson84945262009-05-12 17:09:30 +0000803
Evan Chenga8e29892007-01-19 07:51:42 +0000804 // OrigBB branches to NewBB.
805 OrigBB->addSuccessor(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000806
Evan Chenga8e29892007-01-19 07:51:42 +0000807 // Update internal data structures to account for the newly inserted MBB.
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000808 // This is almost the same as UpdateForInsertedWaterBlock, except that
809 // the Water goes after OrigBB, not NewBB.
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000810 MF.RenumberBlocks(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000811
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000812 // Insert an entry into BBInfo to align it properly with the (newly
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000813 // renumbered) block numbers.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000814 BBInfo.insert(BBInfo.begin() + NewBB->getNumber(), BasicBlockInfo());
Dale Johannesen99c49a42007-02-25 00:47:03 +0000815
Bob Wilson84945262009-05-12 17:09:30 +0000816 // Next, update WaterList. Specifically, we need to add OrigMBB as having
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000817 // available water after it (but not if it's already there, which happens
818 // when splitting before a conditional branch that is followed by an
819 // unconditional branch - in that case we want to insert NewBB).
Bob Wilson034de5f2009-10-12 18:52:13 +0000820 water_iterator IP =
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000821 std::lower_bound(WaterList.begin(), WaterList.end(), OrigBB,
822 CompareMBBNumbers);
823 MachineBasicBlock* WaterBB = *IP;
824 if (WaterBB == OrigBB)
Chris Lattner7896c9f2009-12-03 00:50:42 +0000825 WaterList.insert(llvm::next(IP), NewBB);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000826 else
827 WaterList.insert(IP, OrigBB);
Bob Wilsonb9239532009-10-15 20:49:47 +0000828 NewWaterList.insert(OrigBB);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000829
Dale Johannesen8086d582010-07-23 22:50:23 +0000830 // Figure out how large the OrigBB is. As the first half of the original
831 // block, it cannot contain a tablejump. The size includes
832 // the new jump we added. (It should be possible to do this without
833 // recounting everything, but it's very confusing, and this is rarely
834 // executed.)
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000835 ComputeBlockSize(OrigBB);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000836
Dale Johannesen8086d582010-07-23 22:50:23 +0000837 // Figure out how large the NewMBB is. As the second half of the original
838 // block, it may contain a tablejump.
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000839 ComputeBlockSize(NewBB);
Dale Johannesen8086d582010-07-23 22:50:23 +0000840
Dale Johannesen99c49a42007-02-25 00:47:03 +0000841 // All BBOffsets following these blocks must be modified.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000842 AdjustBBOffsetsAfter(OrigBB);
Evan Cheng0c615842007-01-31 02:22:22 +0000843
844 return NewBB;
Evan Chenga8e29892007-01-19 07:51:42 +0000845}
846
Dale Johannesen8593e412007-04-29 19:19:30 +0000847/// OffsetIsInRange - Checks whether UserOffset (the location of a constant pool
Bob Wilson84945262009-05-12 17:09:30 +0000848/// reference) is within MaxDisp of TrialOffset (a proposed location of a
Dale Johannesen8593e412007-04-29 19:19:30 +0000849/// constant pool entry).
Bob Wilson84945262009-05-12 17:09:30 +0000850bool ARMConstantIslands::OffsetIsInRange(unsigned UserOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +0000851 unsigned TrialOffset, unsigned MaxDisp,
852 bool NegativeOK, bool IsSoImm) {
Bob Wilson84945262009-05-12 17:09:30 +0000853 // On Thumb offsets==2 mod 4 are rounded down by the hardware for
854 // purposes of the displacement computation; compensate for that here.
Dale Johannesen8593e412007-04-29 19:19:30 +0000855 // Effectively, the valid range of displacements is 2 bytes smaller for such
856 // references.
Evan Cheng31b99dd2009-08-14 18:31:44 +0000857 unsigned TotalAdj = 0;
858 if (isThumb && UserOffset%4 !=0) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000859 UserOffset -= 2;
Evan Cheng31b99dd2009-08-14 18:31:44 +0000860 TotalAdj = 2;
861 }
Dale Johannesen8593e412007-04-29 19:19:30 +0000862 // CPEs will be rounded up to a multiple of 4.
Evan Cheng31b99dd2009-08-14 18:31:44 +0000863 if (isThumb && TrialOffset%4 != 0) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000864 TrialOffset += 2;
Evan Cheng31b99dd2009-08-14 18:31:44 +0000865 TotalAdj += 2;
866 }
867
868 // In Thumb2 mode, later branch adjustments can shift instructions up and
869 // cause alignment change. In the worst case scenario this can cause the
870 // user's effective address to be subtracted by 2 and the CPE's address to
871 // be plus 2.
872 if (isThumb2 && TotalAdj != 4)
873 MaxDisp -= (4 - TotalAdj);
Dale Johannesen8593e412007-04-29 19:19:30 +0000874
Dale Johannesen99c49a42007-02-25 00:47:03 +0000875 if (UserOffset <= TrialOffset) {
876 // User before the Trial.
Evan Chengd3d9d662009-07-23 18:27:47 +0000877 if (TrialOffset - UserOffset <= MaxDisp)
878 return true;
Evan Cheng40efc252009-07-24 19:31:03 +0000879 // FIXME: Make use full range of soimm values.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000880 } else if (NegativeOK) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000881 if (UserOffset - TrialOffset <= MaxDisp)
882 return true;
Evan Cheng40efc252009-07-24 19:31:03 +0000883 // FIXME: Make use full range of soimm values.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000884 }
885 return false;
886}
887
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000888/// WaterIsInRange - Returns true if a CPE placed after the specified
889/// Water (a basic block) will be in range for the specific MI.
890
891bool ARMConstantIslands::WaterIsInRange(unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000892 MachineBasicBlock* Water, CPUser &U) {
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000893 unsigned MaxDisp = U.MaxDisp;
Jakob Stoklund Olesen5bb32532011-12-07 01:22:52 +0000894 unsigned CPEOffset = BBInfo[Water->getNumber()].postOffset();
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000895
Dale Johannesend959aa42007-04-02 20:31:06 +0000896 // If the CPE is to be inserted before the instruction, that will raise
Bob Wilsonaf4b7352009-10-12 22:49:05 +0000897 // the offset of the instruction.
Dale Johannesend959aa42007-04-02 20:31:06 +0000898 if (CPEOffset < UserOffset)
Dale Johannesen5d9c4b62007-07-11 18:32:38 +0000899 UserOffset += U.CPEMI->getOperand(2).getImm();
Dale Johannesend959aa42007-04-02 20:31:06 +0000900
Evan Chengd3d9d662009-07-23 18:27:47 +0000901 return OffsetIsInRange(UserOffset, CPEOffset, MaxDisp, U.NegOk, U.IsSoImm);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000902}
903
904/// CPEIsInRange - Returns true if the distance between specific MI and
Evan Chengc0dbec72007-01-31 19:57:44 +0000905/// specific ConstPool entry instruction can fit in MI's displacement field.
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000906bool ARMConstantIslands::CPEIsInRange(MachineInstr *MI, unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000907 MachineInstr *CPEMI, unsigned MaxDisp,
908 bool NegOk, bool DoDump) {
Dale Johannesen8593e412007-04-29 19:19:30 +0000909 unsigned CPEOffset = GetOffsetOf(CPEMI);
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000910 assert((CPEOffset%4 == 0 || HasInlineAsm) && "Misaligned CPE");
Evan Cheng2021abe2007-02-01 01:09:47 +0000911
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000912 if (DoDump) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000913 DEBUG(errs() << "User of CPE#" << CPEMI->getOperand(0).getImm()
914 << " max delta=" << MaxDisp
915 << " insn address=" << UserOffset
916 << " CPE address=" << CPEOffset
917 << " offset=" << int(CPEOffset-UserOffset) << "\t" << *MI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000918 }
Evan Chengc0dbec72007-01-31 19:57:44 +0000919
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000920 return OffsetIsInRange(UserOffset, CPEOffset, MaxDisp, NegOk);
Evan Chengc0dbec72007-01-31 19:57:44 +0000921}
922
Evan Chengd1e7d9a2009-01-28 00:53:34 +0000923#ifndef NDEBUG
Evan Chengc99ef082007-02-09 20:54:44 +0000924/// BBIsJumpedOver - Return true of the specified basic block's only predecessor
925/// unconditionally branches to its only successor.
926static bool BBIsJumpedOver(MachineBasicBlock *MBB) {
927 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
928 return false;
929
930 MachineBasicBlock *Succ = *MBB->succ_begin();
931 MachineBasicBlock *Pred = *MBB->pred_begin();
932 MachineInstr *PredMI = &Pred->back();
David Goodwin5e47a9a2009-06-30 18:04:13 +0000933 if (PredMI->getOpcode() == ARM::B || PredMI->getOpcode() == ARM::tB
934 || PredMI->getOpcode() == ARM::t2B)
Evan Chengc99ef082007-02-09 20:54:44 +0000935 return PredMI->getOperand(0).getMBB() == Succ;
936 return false;
937}
Evan Chengd1e7d9a2009-01-28 00:53:34 +0000938#endif // NDEBUG
Evan Chengc99ef082007-02-09 20:54:44 +0000939
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +0000940void ARMConstantIslands::AdjustBBOffsetsAfter(MachineBasicBlock *BB) {
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000941 MachineFunction *MF = BB->getParent();
942 for(unsigned i = BB->getNumber() + 1, e = MF->getNumBlockIDs(); i < e; ++i) {
943 // Get the offset and known bits at the end of the layout predecessor.
944 unsigned Offset = BBInfo[i - 1].postOffset();
945 unsigned KnownBits = BBInfo[i - 1].postKnownBits();
946
947 // Add padding before an aligned block. This may teach us more bits.
948 if (unsigned Align = MF->getBlockNumbered(i)->getAlignment()) {
949 Offset = WorstCaseAlign(Offset, Align, KnownBits);
950 KnownBits = std::max(KnownBits, Align);
Dale Johannesen8593e412007-04-29 19:19:30 +0000951 }
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000952
953 // This is where block i begins.
954 BBInfo[i].Offset = Offset;
955 BBInfo[i].KnownBits = KnownBits;
Dale Johannesen8593e412007-04-29 19:19:30 +0000956 }
Dale Johannesen99c49a42007-02-25 00:47:03 +0000957}
958
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000959/// DecrementOldEntry - find the constant pool entry with index CPI
960/// and instruction CPEMI, and decrement its refcount. If the refcount
Bob Wilson84945262009-05-12 17:09:30 +0000961/// becomes 0 remove the entry and instruction. Returns true if we removed
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000962/// the entry, false if we didn't.
Evan Chenga8e29892007-01-19 07:51:42 +0000963
Evan Chenged884f32007-04-03 23:39:48 +0000964bool ARMConstantIslands::DecrementOldEntry(unsigned CPI, MachineInstr *CPEMI) {
Evan Chengc99ef082007-02-09 20:54:44 +0000965 // Find the old entry. Eliminate it if it is no longer used.
Evan Chenged884f32007-04-03 23:39:48 +0000966 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
967 assert(CPE && "Unexpected!");
968 if (--CPE->RefCount == 0) {
969 RemoveDeadCPEMI(CPEMI);
970 CPE->CPEMI = NULL;
Dan Gohmanfe601042010-06-22 15:08:57 +0000971 --NumCPEs;
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000972 return true;
973 }
974 return false;
975}
976
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000977/// LookForCPEntryInRange - see if the currently referenced CPE is in range;
978/// if not, see if an in-range clone of the CPE is in range, and if so,
979/// change the data structures so the user references the clone. Returns:
980/// 0 = no existing entry found
981/// 1 = entry found, and there were no code insertions or deletions
982/// 2 = entry found, and there were code insertions or deletions
983int ARMConstantIslands::LookForExistingCPEntry(CPUser& U, unsigned UserOffset)
984{
985 MachineInstr *UserMI = U.MI;
986 MachineInstr *CPEMI = U.CPEMI;
987
988 // Check to see if the CPE is already in-range.
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000989 if (CPEIsInRange(UserMI, UserOffset, CPEMI, U.MaxDisp, U.NegOk, true)) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000990 DEBUG(errs() << "In range\n");
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000991 return 1;
Evan Chengc99ef082007-02-09 20:54:44 +0000992 }
993
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000994 // No. Look for previously created clones of the CPE that are in range.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000995 unsigned CPI = CPEMI->getOperand(1).getIndex();
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000996 std::vector<CPEntry> &CPEs = CPEntries[CPI];
997 for (unsigned i = 0, e = CPEs.size(); i != e; ++i) {
998 // We already tried this one
999 if (CPEs[i].CPEMI == CPEMI)
1000 continue;
1001 // Removing CPEs can leave empty entries, skip
1002 if (CPEs[i].CPEMI == NULL)
1003 continue;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +00001004 if (CPEIsInRange(UserMI, UserOffset, CPEs[i].CPEMI, U.MaxDisp, U.NegOk)) {
Chris Lattner893e1c92009-08-23 06:49:22 +00001005 DEBUG(errs() << "Replacing CPE#" << CPI << " with CPE#"
1006 << CPEs[i].CPI << "\n");
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001007 // Point the CPUser node to the replacement
1008 U.CPEMI = CPEs[i].CPEMI;
1009 // Change the CPI in the instruction operand to refer to the clone.
1010 for (unsigned j = 0, e = UserMI->getNumOperands(); j != e; ++j)
Dan Gohmand735b802008-10-03 15:45:36 +00001011 if (UserMI->getOperand(j).isCPI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +00001012 UserMI->getOperand(j).setIndex(CPEs[i].CPI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001013 break;
1014 }
1015 // Adjust the refcount of the clone...
1016 CPEs[i].RefCount++;
1017 // ...and the original. If we didn't remove the old entry, none of the
1018 // addresses changed, so we don't need another pass.
Evan Chenged884f32007-04-03 23:39:48 +00001019 return DecrementOldEntry(CPI, CPEMI) ? 2 : 1;
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001020 }
1021 }
1022 return 0;
1023}
1024
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001025/// getUnconditionalBrDisp - Returns the maximum displacement that can fit in
1026/// the specific unconditional branch instruction.
1027static inline unsigned getUnconditionalBrDisp(int Opc) {
David Goodwin5e47a9a2009-06-30 18:04:13 +00001028 switch (Opc) {
1029 case ARM::tB:
1030 return ((1<<10)-1)*2;
1031 case ARM::t2B:
1032 return ((1<<23)-1)*2;
1033 default:
1034 break;
1035 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001036
David Goodwin5e47a9a2009-06-30 18:04:13 +00001037 return ((1<<23)-1)*4;
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001038}
1039
Bob Wilsonb9239532009-10-15 20:49:47 +00001040/// LookForWater - Look for an existing entry in the WaterList in which
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001041/// we can place the CPE referenced from U so it's within range of U's MI.
Bob Wilsonb9239532009-10-15 20:49:47 +00001042/// Returns true if found, false if not. If it returns true, WaterIter
Bob Wilsonf98032e2009-10-12 21:23:15 +00001043/// is set to the WaterList entry. For Thumb, prefer water that will not
1044/// introduce padding to water that will. To ensure that this pass
1045/// terminates, the CPE location for a particular CPUser is only allowed to
1046/// move to a lower address, so search backward from the end of the list and
1047/// prefer the first water that is in range.
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001048bool ARMConstantIslands::LookForWater(CPUser &U, unsigned UserOffset,
Bob Wilsonb9239532009-10-15 20:49:47 +00001049 water_iterator &WaterIter) {
Bob Wilson3b757352009-10-12 19:04:03 +00001050 if (WaterList.empty())
1051 return false;
1052
Bob Wilson32c50e82009-10-12 20:45:53 +00001053 bool FoundWaterThatWouldPad = false;
1054 water_iterator IPThatWouldPad;
Bob Wilson3b757352009-10-12 19:04:03 +00001055 for (water_iterator IP = prior(WaterList.end()),
1056 B = WaterList.begin();; --IP) {
1057 MachineBasicBlock* WaterBB = *IP;
Bob Wilsonb9239532009-10-15 20:49:47 +00001058 // Check if water is in range and is either at a lower address than the
1059 // current "high water mark" or a new water block that was created since
1060 // the previous iteration by inserting an unconditional branch. In the
1061 // latter case, we want to allow resetting the high water mark back to
1062 // this new water since we haven't seen it before. Inserting branches
1063 // should be relatively uncommon and when it does happen, we want to be
1064 // sure to take advantage of it for all the CPEs near that block, so that
1065 // we don't insert more branches than necessary.
1066 if (WaterIsInRange(UserOffset, WaterBB, U) &&
1067 (WaterBB->getNumber() < U.HighWaterMark->getNumber() ||
1068 NewWaterList.count(WaterBB))) {
Bob Wilson3b757352009-10-12 19:04:03 +00001069 unsigned WBBId = WaterBB->getNumber();
Jakob Stoklund Olesen5bb32532011-12-07 01:22:52 +00001070 if (isThumb && BBInfo[WBBId].postOffset()%4 != 0) {
Bob Wilson3b757352009-10-12 19:04:03 +00001071 // This is valid Water, but would introduce padding. Remember
1072 // it in case we don't find any Water that doesn't do this.
Bob Wilson32c50e82009-10-12 20:45:53 +00001073 if (!FoundWaterThatWouldPad) {
1074 FoundWaterThatWouldPad = true;
Bob Wilson3b757352009-10-12 19:04:03 +00001075 IPThatWouldPad = IP;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001076 }
Bob Wilson3b757352009-10-12 19:04:03 +00001077 } else {
Bob Wilsonb9239532009-10-15 20:49:47 +00001078 WaterIter = IP;
Bob Wilson3b757352009-10-12 19:04:03 +00001079 return true;
Evan Chengd3d9d662009-07-23 18:27:47 +00001080 }
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001081 }
Bob Wilson3b757352009-10-12 19:04:03 +00001082 if (IP == B)
1083 break;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001084 }
Bob Wilson32c50e82009-10-12 20:45:53 +00001085 if (FoundWaterThatWouldPad) {
Bob Wilsonb9239532009-10-15 20:49:47 +00001086 WaterIter = IPThatWouldPad;
Dale Johannesen8593e412007-04-29 19:19:30 +00001087 return true;
1088 }
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001089 return false;
1090}
1091
Bob Wilson84945262009-05-12 17:09:30 +00001092/// CreateNewWater - No existing WaterList entry will work for
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001093/// CPUsers[CPUserIndex], so create a place to put the CPE. The end of the
1094/// block is used if in range, and the conditional branch munged so control
1095/// flow is correct. Otherwise the block is split to create a hole with an
Bob Wilson757652c2009-10-12 21:39:43 +00001096/// unconditional branch around it. In either case NewMBB is set to a
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001097/// block following which the new island can be inserted (the WaterList
1098/// is not adjusted).
Bob Wilson84945262009-05-12 17:09:30 +00001099void ARMConstantIslands::CreateNewWater(unsigned CPUserIndex,
Bob Wilson757652c2009-10-12 21:39:43 +00001100 unsigned UserOffset,
1101 MachineBasicBlock *&NewMBB) {
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001102 CPUser &U = CPUsers[CPUserIndex];
1103 MachineInstr *UserMI = U.MI;
1104 MachineInstr *CPEMI = U.CPEMI;
1105 MachineBasicBlock *UserMBB = UserMI->getParent();
Jakob Stoklund Olesen5bb32532011-12-07 01:22:52 +00001106 unsigned OffsetOfNextBlock = BBInfo[UserMBB->getNumber()].postOffset();
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001107
Bob Wilson36fa5322009-10-15 05:10:36 +00001108 // If the block does not end in an unconditional branch already, and if the
1109 // end of the block is within range, make new water there. (The addition
1110 // below is for the unconditional branch we will be adding: 4 bytes on ARM +
1111 // Thumb2, 2 on Thumb1. Possible Thumb1 alignment padding is allowed for
Dale Johannesen8593e412007-04-29 19:19:30 +00001112 // inside OffsetIsInRange.
Bob Wilson36fa5322009-10-15 05:10:36 +00001113 if (BBHasFallthrough(UserMBB) &&
Evan Chengd3d9d662009-07-23 18:27:47 +00001114 OffsetIsInRange(UserOffset, OffsetOfNextBlock + (isThumb1 ? 2: 4),
1115 U.MaxDisp, U.NegOk, U.IsSoImm)) {
Chris Lattner893e1c92009-08-23 06:49:22 +00001116 DEBUG(errs() << "Split at end of block\n");
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001117 if (&UserMBB->back() == UserMI)
1118 assert(BBHasFallthrough(UserMBB) && "Expected a fallthrough BB!");
Chris Lattner7896c9f2009-12-03 00:50:42 +00001119 NewMBB = llvm::next(MachineFunction::iterator(UserMBB));
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001120 // Add an unconditional branch from UserMBB to fallthrough block.
1121 // Record it for branch lengthening; this new branch will not get out of
1122 // range, but if the preceding conditional branch is out of range, the
1123 // targets will be exchanged, and the altered branch may be out of
1124 // range, so the machinery has to know about it.
David Goodwin5e47a9a2009-06-30 18:04:13 +00001125 int UncondBr = isThumb ? ((isThumb2) ? ARM::t2B : ARM::tB) : ARM::B;
Owen Anderson51f6a7a2011-09-09 21:48:23 +00001126 if (!isThumb)
1127 BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr)).addMBB(NewMBB);
1128 else
1129 BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr)).addMBB(NewMBB)
1130 .addImm(ARMCC::AL).addReg(0);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001131 unsigned MaxDisp = getUnconditionalBrDisp(UncondBr);
Bob Wilson84945262009-05-12 17:09:30 +00001132 ImmBranches.push_back(ImmBranch(&UserMBB->back(),
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001133 MaxDisp, false, UncondBr));
Evan Chengd3d9d662009-07-23 18:27:47 +00001134 int delta = isThumb1 ? 2 : 4;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001135 BBInfo[UserMBB->getNumber()].Size += delta;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001136 AdjustBBOffsetsAfter(UserMBB);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001137 } else {
1138 // What a big block. Find a place within the block to split it.
Evan Chengd3d9d662009-07-23 18:27:47 +00001139 // This is a little tricky on Thumb1 since instructions are 2 bytes
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001140 // and constant pool entries are 4 bytes: if instruction I references
1141 // island CPE, and instruction I+1 references CPE', it will
1142 // not work well to put CPE as far forward as possible, since then
1143 // CPE' cannot immediately follow it (that location is 2 bytes
1144 // farther away from I+1 than CPE was from I) and we'd need to create
Dale Johannesen8593e412007-04-29 19:19:30 +00001145 // a new island. So, we make a first guess, then walk through the
1146 // instructions between the one currently being looked at and the
1147 // possible insertion point, and make sure any other instructions
1148 // that reference CPEs will be able to use the same island area;
1149 // if not, we back up the insertion point.
1150
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001151 // The 4 in the following is for the unconditional branch we'll be
Evan Chengd3d9d662009-07-23 18:27:47 +00001152 // inserting (allows for long branch on Thumb1). Alignment of the
Dale Johannesen8593e412007-04-29 19:19:30 +00001153 // island is handled inside OffsetIsInRange.
1154 unsigned BaseInsertOffset = UserOffset + U.MaxDisp -4;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001155 // This could point off the end of the block if we've already got
1156 // constant pool entries following this block; only the last one is
1157 // in the water list. Back past any possible branches (allow for a
1158 // conditional and a maximally long unconditional).
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001159 if (BaseInsertOffset >= BBInfo[UserMBB->getNumber()+1].Offset)
1160 BaseInsertOffset = BBInfo[UserMBB->getNumber()+1].Offset -
Evan Chengd3d9d662009-07-23 18:27:47 +00001161 (isThumb1 ? 6 : 8);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001162 unsigned EndInsertOffset = BaseInsertOffset +
1163 CPEMI->getOperand(2).getImm();
1164 MachineBasicBlock::iterator MI = UserMI;
1165 ++MI;
1166 unsigned CPUIndex = CPUserIndex+1;
Evan Cheng719510a2010-08-12 20:30:05 +00001167 unsigned NumCPUsers = CPUsers.size();
1168 MachineInstr *LastIT = 0;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001169 for (unsigned Offset = UserOffset+TII->GetInstSizeInBytes(UserMI);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001170 Offset < BaseInsertOffset;
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001171 Offset += TII->GetInstSizeInBytes(MI),
Evan Cheng719510a2010-08-12 20:30:05 +00001172 MI = llvm::next(MI)) {
1173 if (CPUIndex < NumCPUsers && CPUsers[CPUIndex].MI == MI) {
Evan Chengd3d9d662009-07-23 18:27:47 +00001174 CPUser &U = CPUsers[CPUIndex];
Bob Wilson84945262009-05-12 17:09:30 +00001175 if (!OffsetIsInRange(Offset, EndInsertOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +00001176 U.MaxDisp, U.NegOk, U.IsSoImm)) {
1177 BaseInsertOffset -= (isThumb1 ? 2 : 4);
1178 EndInsertOffset -= (isThumb1 ? 2 : 4);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001179 }
1180 // This is overly conservative, as we don't account for CPEMIs
1181 // being reused within the block, but it doesn't matter much.
1182 EndInsertOffset += CPUsers[CPUIndex].CPEMI->getOperand(2).getImm();
1183 CPUIndex++;
1184 }
Evan Cheng719510a2010-08-12 20:30:05 +00001185
1186 // Remember the last IT instruction.
1187 if (MI->getOpcode() == ARM::t2IT)
1188 LastIT = MI;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001189 }
Evan Cheng719510a2010-08-12 20:30:05 +00001190
Chris Lattner893e1c92009-08-23 06:49:22 +00001191 DEBUG(errs() << "Split in middle of big block\n");
Evan Cheng719510a2010-08-12 20:30:05 +00001192 --MI;
1193
1194 // Avoid splitting an IT block.
1195 if (LastIT) {
1196 unsigned PredReg = 0;
1197 ARMCC::CondCodes CC = llvm::getITInstrPredicate(MI, PredReg);
1198 if (CC != ARMCC::AL)
1199 MI = LastIT;
1200 }
1201 NewMBB = SplitBlockBeforeInstr(MI);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001202 }
1203}
1204
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001205/// HandleConstantPoolUser - Analyze the specified user, checking to see if it
Bob Wilson39bf0512009-05-12 17:35:29 +00001206/// is out-of-range. If so, pick up the constant pool value and move it some
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001207/// place in-range. Return true if we changed any addresses (thus must run
1208/// another pass of branch lengthening), false otherwise.
Evan Cheng5657c012009-07-29 02:18:14 +00001209bool ARMConstantIslands::HandleConstantPoolUser(MachineFunction &MF,
Bob Wilson84945262009-05-12 17:09:30 +00001210 unsigned CPUserIndex) {
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001211 CPUser &U = CPUsers[CPUserIndex];
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001212 MachineInstr *UserMI = U.MI;
1213 MachineInstr *CPEMI = U.CPEMI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001214 unsigned CPI = CPEMI->getOperand(1).getIndex();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001215 unsigned Size = CPEMI->getOperand(2).getImm();
Dale Johannesen8593e412007-04-29 19:19:30 +00001216 // Compute this only once, it's expensive. The 4 or 8 is the value the
Evan Chenga1efbbd2009-08-14 00:32:16 +00001217 // hardware keeps in the PC.
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001218 unsigned UserOffset = GetOffsetOf(UserMI) + (isThumb ? 4 : 8);
Evan Cheng768c9f72007-04-27 08:14:15 +00001219
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001220 // See if the current entry is within range, or there is a clone of it
1221 // in range.
1222 int result = LookForExistingCPEntry(U, UserOffset);
1223 if (result==1) return false;
1224 else if (result==2) return true;
1225
1226 // No existing clone of this CPE is within range.
1227 // We will be generating a new clone. Get a UID for it.
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001228 unsigned ID = AFI->createPICLabelUId();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001229
Bob Wilsonf98032e2009-10-12 21:23:15 +00001230 // Look for water where we can place this CPE.
Bob Wilsonb9239532009-10-15 20:49:47 +00001231 MachineBasicBlock *NewIsland = MF.CreateMachineBasicBlock();
1232 MachineBasicBlock *NewMBB;
1233 water_iterator IP;
1234 if (LookForWater(U, UserOffset, IP)) {
1235 DEBUG(errs() << "found water in range\n");
1236 MachineBasicBlock *WaterBB = *IP;
1237
1238 // If the original WaterList entry was "new water" on this iteration,
1239 // propagate that to the new island. This is just keeping NewWaterList
1240 // updated to match the WaterList, which will be updated below.
1241 if (NewWaterList.count(WaterBB)) {
1242 NewWaterList.erase(WaterBB);
1243 NewWaterList.insert(NewIsland);
1244 }
1245 // The new CPE goes before the following block (NewMBB).
Chris Lattner7896c9f2009-12-03 00:50:42 +00001246 NewMBB = llvm::next(MachineFunction::iterator(WaterBB));
Bob Wilsonb9239532009-10-15 20:49:47 +00001247
1248 } else {
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001249 // No water found.
Chris Lattner893e1c92009-08-23 06:49:22 +00001250 DEBUG(errs() << "No water found\n");
Bob Wilson757652c2009-10-12 21:39:43 +00001251 CreateNewWater(CPUserIndex, UserOffset, NewMBB);
Bob Wilsonb9239532009-10-15 20:49:47 +00001252
1253 // SplitBlockBeforeInstr adds to WaterList, which is important when it is
1254 // called while handling branches so that the water will be seen on the
1255 // next iteration for constant pools, but in this context, we don't want
1256 // it. Check for this so it will be removed from the WaterList.
1257 // Also remove any entry from NewWaterList.
1258 MachineBasicBlock *WaterBB = prior(MachineFunction::iterator(NewMBB));
1259 IP = std::find(WaterList.begin(), WaterList.end(), WaterBB);
1260 if (IP != WaterList.end())
1261 NewWaterList.erase(WaterBB);
1262
1263 // We are adding new water. Update NewWaterList.
1264 NewWaterList.insert(NewIsland);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001265 }
1266
Bob Wilsonb9239532009-10-15 20:49:47 +00001267 // Remove the original WaterList entry; we want subsequent insertions in
1268 // this vicinity to go after the one we're about to insert. This
1269 // considerably reduces the number of times we have to move the same CPE
1270 // more than once and is also important to ensure the algorithm terminates.
1271 if (IP != WaterList.end())
1272 WaterList.erase(IP);
1273
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001274 // Okay, we know we can put an island before NewMBB now, do it!
Evan Cheng5657c012009-07-29 02:18:14 +00001275 MF.insert(NewMBB, NewIsland);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001276
1277 // Update internal data structures to account for the newly inserted MBB.
1278 UpdateForInsertedWaterBlock(NewIsland);
1279
1280 // Decrement the old entry, and remove it if refcount becomes 0.
Evan Chenged884f32007-04-03 23:39:48 +00001281 DecrementOldEntry(CPI, CPEMI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001282
1283 // Now that we have an island to add the CPE to, clone the original CPE and
1284 // add it to the island.
Bob Wilson549dda92009-10-15 05:52:29 +00001285 U.HighWaterMark = NewIsland;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001286 U.CPEMI = BuildMI(NewIsland, DebugLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
Evan Chenga8e29892007-01-19 07:51:42 +00001287 .addImm(ID).addConstantPoolIndex(CPI).addImm(Size);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001288 CPEntries[CPI].push_back(CPEntry(U.CPEMI, ID, 1));
Dan Gohmanfe601042010-06-22 15:08:57 +00001289 ++NumCPEs;
Evan Chengc99ef082007-02-09 20:54:44 +00001290
Jakob Stoklund Olesen3e572ac2011-12-06 01:43:02 +00001291 // Mark the basic block as 4-byte aligned as required by the const-pool entry.
1292 NewIsland->setAlignment(2);
1293
Evan Chenga8e29892007-01-19 07:51:42 +00001294 // Increase the size of the island block to account for the new entry.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001295 BBInfo[NewIsland->getNumber()].Size += Size;
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +00001296 AdjustBBOffsetsAfter(llvm::prior(MachineFunction::iterator(NewIsland)));
Bob Wilson84945262009-05-12 17:09:30 +00001297
Evan Chenga8e29892007-01-19 07:51:42 +00001298 // Finally, change the CPI in the instruction operand to be ID.
1299 for (unsigned i = 0, e = UserMI->getNumOperands(); i != e; ++i)
Dan Gohmand735b802008-10-03 15:45:36 +00001300 if (UserMI->getOperand(i).isCPI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +00001301 UserMI->getOperand(i).setIndex(ID);
Evan Chenga8e29892007-01-19 07:51:42 +00001302 break;
1303 }
Bob Wilson84945262009-05-12 17:09:30 +00001304
Chris Lattner705e07f2009-08-23 03:41:05 +00001305 DEBUG(errs() << " Moved CPE to #" << ID << " CPI=" << CPI
1306 << '\t' << *UserMI);
Bob Wilson84945262009-05-12 17:09:30 +00001307
Evan Chenga8e29892007-01-19 07:51:42 +00001308 return true;
1309}
1310
Evan Chenged884f32007-04-03 23:39:48 +00001311/// RemoveDeadCPEMI - Remove a dead constant pool entry instruction. Update
1312/// sizes and offsets of impacted basic blocks.
1313void ARMConstantIslands::RemoveDeadCPEMI(MachineInstr *CPEMI) {
1314 MachineBasicBlock *CPEBB = CPEMI->getParent();
Dale Johannesen8593e412007-04-29 19:19:30 +00001315 unsigned Size = CPEMI->getOperand(2).getImm();
1316 CPEMI->eraseFromParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001317 BBInfo[CPEBB->getNumber()].Size -= Size;
Dale Johannesen8593e412007-04-29 19:19:30 +00001318 // All succeeding offsets have the current size value added in, fix this.
Evan Chenged884f32007-04-03 23:39:48 +00001319 if (CPEBB->empty()) {
Evan Chengd3d9d662009-07-23 18:27:47 +00001320 // In thumb1 mode, the size of island may be padded by two to compensate for
Dale Johannesen8593e412007-04-29 19:19:30 +00001321 // the alignment requirement. Then it will now be 2 when the block is
Evan Chenged884f32007-04-03 23:39:48 +00001322 // empty, so fix this.
1323 // All succeeding offsets have the current size value added in, fix this.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001324 if (BBInfo[CPEBB->getNumber()].Size != 0) {
1325 Size += BBInfo[CPEBB->getNumber()].Size;
1326 BBInfo[CPEBB->getNumber()].Size = 0;
Evan Chenged884f32007-04-03 23:39:48 +00001327 }
Jakob Stoklund Olesen305e5fe2011-12-06 21:55:35 +00001328
1329 // This block no longer needs to be aligned. <rdar://problem/10534709>.
1330 CPEBB->setAlignment(0);
Evan Chenged884f32007-04-03 23:39:48 +00001331 }
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001332 AdjustBBOffsetsAfter(CPEBB);
Dale Johannesen8593e412007-04-29 19:19:30 +00001333 // An island has only one predecessor BB and one successor BB. Check if
1334 // this BB's predecessor jumps directly to this BB's successor. This
1335 // shouldn't happen currently.
1336 assert(!BBIsJumpedOver(CPEBB) && "How did this happen?");
1337 // FIXME: remove the empty blocks after all the work is done?
Evan Chenged884f32007-04-03 23:39:48 +00001338}
1339
1340/// RemoveUnusedCPEntries - Remove constant pool entries whose refcounts
1341/// are zero.
1342bool ARMConstantIslands::RemoveUnusedCPEntries() {
1343 unsigned MadeChange = false;
1344 for (unsigned i = 0, e = CPEntries.size(); i != e; ++i) {
1345 std::vector<CPEntry> &CPEs = CPEntries[i];
1346 for (unsigned j = 0, ee = CPEs.size(); j != ee; ++j) {
1347 if (CPEs[j].RefCount == 0 && CPEs[j].CPEMI) {
1348 RemoveDeadCPEMI(CPEs[j].CPEMI);
1349 CPEs[j].CPEMI = NULL;
1350 MadeChange = true;
1351 }
1352 }
Bob Wilson84945262009-05-12 17:09:30 +00001353 }
Evan Chenged884f32007-04-03 23:39:48 +00001354 return MadeChange;
1355}
1356
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001357/// BBIsInRange - Returns true if the distance between specific MI and
Evan Cheng43aeab62007-01-26 20:38:26 +00001358/// specific BB can fit in MI's displacement field.
Evan Chengc0dbec72007-01-31 19:57:44 +00001359bool ARMConstantIslands::BBIsInRange(MachineInstr *MI,MachineBasicBlock *DestBB,
1360 unsigned MaxDisp) {
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001361 unsigned PCAdj = isThumb ? 4 : 8;
Evan Chengc0dbec72007-01-31 19:57:44 +00001362 unsigned BrOffset = GetOffsetOf(MI) + PCAdj;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001363 unsigned DestOffset = BBInfo[DestBB->getNumber()].Offset;
Evan Cheng43aeab62007-01-26 20:38:26 +00001364
Chris Lattner705e07f2009-08-23 03:41:05 +00001365 DEBUG(errs() << "Branch of destination BB#" << DestBB->getNumber()
1366 << " from BB#" << MI->getParent()->getNumber()
1367 << " max delta=" << MaxDisp
1368 << " from " << GetOffsetOf(MI) << " to " << DestOffset
1369 << " offset " << int(DestOffset-BrOffset) << "\t" << *MI);
Evan Chengc0dbec72007-01-31 19:57:44 +00001370
Dale Johannesen8593e412007-04-29 19:19:30 +00001371 if (BrOffset <= DestOffset) {
1372 // Branch before the Dest.
1373 if (DestOffset-BrOffset <= MaxDisp)
1374 return true;
1375 } else {
1376 if (BrOffset-DestOffset <= MaxDisp)
1377 return true;
1378 }
1379 return false;
Evan Cheng43aeab62007-01-26 20:38:26 +00001380}
1381
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001382/// FixUpImmediateBr - Fix up an immediate branch whose destination is too far
1383/// away to fit in its displacement field.
Evan Cheng5657c012009-07-29 02:18:14 +00001384bool ARMConstantIslands::FixUpImmediateBr(MachineFunction &MF, ImmBranch &Br) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001385 MachineInstr *MI = Br.MI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001386 MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001387
Evan Chengc0dbec72007-01-31 19:57:44 +00001388 // Check to see if the DestBB is already in-range.
1389 if (BBIsInRange(MI, DestBB, Br.MaxDisp))
Evan Cheng43aeab62007-01-26 20:38:26 +00001390 return false;
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001391
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001392 if (!Br.isCond)
Evan Cheng5657c012009-07-29 02:18:14 +00001393 return FixUpUnconditionalBr(MF, Br);
1394 return FixUpConditionalBr(MF, Br);
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001395}
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001396
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001397/// FixUpUnconditionalBr - Fix up an unconditional branch whose destination is
1398/// too far away to fit in its displacement field. If the LR register has been
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001399/// spilled in the epilogue, then we can use BL to implement a far jump.
Bob Wilson39bf0512009-05-12 17:35:29 +00001400/// Otherwise, add an intermediate branch instruction to a branch.
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001401bool
Evan Cheng5657c012009-07-29 02:18:14 +00001402ARMConstantIslands::FixUpUnconditionalBr(MachineFunction &MF, ImmBranch &Br) {
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001403 MachineInstr *MI = Br.MI;
1404 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng53c67c02009-08-07 05:45:07 +00001405 if (!isThumb1)
1406 llvm_unreachable("FixUpUnconditionalBr is Thumb1 only!");
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001407
1408 // Use BL to implement far jump.
1409 Br.MaxDisp = (1 << 21) * 2;
Chris Lattner5080f4d2008-01-11 18:10:50 +00001410 MI->setDesc(TII->get(ARM::tBfar));
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001411 BBInfo[MBB->getNumber()].Size += 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001412 AdjustBBOffsetsAfter(MBB);
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001413 HasFarJump = true;
Dan Gohmanfe601042010-06-22 15:08:57 +00001414 ++NumUBrFixed;
Evan Chengbd5d3db2007-02-03 02:08:34 +00001415
Chris Lattner705e07f2009-08-23 03:41:05 +00001416 DEBUG(errs() << " Changed B to long jump " << *MI);
Evan Chengbd5d3db2007-02-03 02:08:34 +00001417
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001418 return true;
1419}
1420
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001421/// FixUpConditionalBr - Fix up a conditional branch whose destination is too
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001422/// far away to fit in its displacement field. It is converted to an inverse
1423/// conditional branch + an unconditional branch to the destination.
1424bool
Evan Cheng5657c012009-07-29 02:18:14 +00001425ARMConstantIslands::FixUpConditionalBr(MachineFunction &MF, ImmBranch &Br) {
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001426 MachineInstr *MI = Br.MI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001427 MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001428
Bob Wilson39bf0512009-05-12 17:35:29 +00001429 // Add an unconditional branch to the destination and invert the branch
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001430 // condition to jump over it:
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001431 // blt L1
1432 // =>
1433 // bge L2
1434 // b L1
1435 // L2:
Chris Lattner9a1ceae2007-12-30 20:49:49 +00001436 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(1).getImm();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001437 CC = ARMCC::getOppositeCondition(CC);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001438 unsigned CCReg = MI->getOperand(2).getReg();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001439
1440 // If the branch is at the end of its MBB and that has a fall-through block,
1441 // direct the updated conditional branch to the fall-through block. Otherwise,
1442 // split the MBB before the next instruction.
1443 MachineBasicBlock *MBB = MI->getParent();
Evan Chengbd5d3db2007-02-03 02:08:34 +00001444 MachineInstr *BMI = &MBB->back();
1445 bool NeedSplit = (BMI != MI) || !BBHasFallthrough(MBB);
Evan Cheng43aeab62007-01-26 20:38:26 +00001446
Dan Gohmanfe601042010-06-22 15:08:57 +00001447 ++NumCBrFixed;
Evan Chengbd5d3db2007-02-03 02:08:34 +00001448 if (BMI != MI) {
Chris Lattner7896c9f2009-12-03 00:50:42 +00001449 if (llvm::next(MachineBasicBlock::iterator(MI)) == prior(MBB->end()) &&
Evan Chengbd5d3db2007-02-03 02:08:34 +00001450 BMI->getOpcode() == Br.UncondBr) {
Bob Wilson39bf0512009-05-12 17:35:29 +00001451 // Last MI in the BB is an unconditional branch. Can we simply invert the
Evan Cheng43aeab62007-01-26 20:38:26 +00001452 // condition and swap destinations:
1453 // beq L1
1454 // b L2
1455 // =>
1456 // bne L2
1457 // b L1
Chris Lattner8aa797a2007-12-30 23:10:15 +00001458 MachineBasicBlock *NewDest = BMI->getOperand(0).getMBB();
Evan Chengc0dbec72007-01-31 19:57:44 +00001459 if (BBIsInRange(MI, NewDest, Br.MaxDisp)) {
Chris Lattner705e07f2009-08-23 03:41:05 +00001460 DEBUG(errs() << " Invert Bcc condition and swap its destination with "
1461 << *BMI);
Chris Lattner8aa797a2007-12-30 23:10:15 +00001462 BMI->getOperand(0).setMBB(DestBB);
1463 MI->getOperand(0).setMBB(NewDest);
Evan Cheng43aeab62007-01-26 20:38:26 +00001464 MI->getOperand(1).setImm(CC);
1465 return true;
1466 }
1467 }
1468 }
1469
1470 if (NeedSplit) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001471 SplitBlockBeforeInstr(MI);
Bob Wilson39bf0512009-05-12 17:35:29 +00001472 // No need for the branch to the next block. We're adding an unconditional
Evan Chengdd353b82007-01-26 02:02:39 +00001473 // branch to the destination.
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001474 int delta = TII->GetInstSizeInBytes(&MBB->back());
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001475 BBInfo[MBB->getNumber()].Size -= delta;
Evan Chengdd353b82007-01-26 02:02:39 +00001476 MBB->back().eraseFromParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001477 // BBInfo[SplitBB].Offset is wrong temporarily, fixed below
Evan Chengdd353b82007-01-26 02:02:39 +00001478 }
Chris Lattner7896c9f2009-12-03 00:50:42 +00001479 MachineBasicBlock *NextBB = llvm::next(MachineFunction::iterator(MBB));
Bob Wilson84945262009-05-12 17:09:30 +00001480
Chris Lattner893e1c92009-08-23 06:49:22 +00001481 DEBUG(errs() << " Insert B to BB#" << DestBB->getNumber()
1482 << " also invert condition and change dest. to BB#"
1483 << NextBB->getNumber() << "\n");
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001484
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001485 // Insert a new conditional branch and a new unconditional branch.
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001486 // Also update the ImmBranch as well as adding a new entry for the new branch.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001487 BuildMI(MBB, DebugLoc(), TII->get(MI->getOpcode()))
Dale Johannesenb6728402009-02-13 02:25:56 +00001488 .addMBB(NextBB).addImm(CC).addReg(CCReg);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001489 Br.MI = &MBB->back();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001490 BBInfo[MBB->getNumber()].Size += TII->GetInstSizeInBytes(&MBB->back());
Owen Andersoncd4338f2011-09-09 23:05:14 +00001491 if (isThumb)
1492 BuildMI(MBB, DebugLoc(), TII->get(Br.UncondBr)).addMBB(DestBB)
1493 .addImm(ARMCC::AL).addReg(0);
1494 else
1495 BuildMI(MBB, DebugLoc(), TII->get(Br.UncondBr)).addMBB(DestBB);
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001496 BBInfo[MBB->getNumber()].Size += TII->GetInstSizeInBytes(&MBB->back());
Evan Chenga9b8b8d2007-01-31 18:29:27 +00001497 unsigned MaxDisp = getUnconditionalBrDisp(Br.UncondBr);
Evan Chenga0bf7942007-01-25 23:31:04 +00001498 ImmBranches.push_back(ImmBranch(&MBB->back(), MaxDisp, false, Br.UncondBr));
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001499
1500 // Remove the old conditional branch. It may or may not still be in MBB.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001501 BBInfo[MI->getParent()->getNumber()].Size -= TII->GetInstSizeInBytes(MI);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001502 MI->eraseFromParent();
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001503 AdjustBBOffsetsAfter(MBB);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001504 return true;
1505}
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001506
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001507/// UndoLRSpillRestore - Remove Thumb push / pop instructions that only spills
Evan Cheng4b322e52009-08-11 21:11:32 +00001508/// LR / restores LR to pc. FIXME: This is done here because it's only possible
1509/// to do this if tBfar is not used.
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001510bool ARMConstantIslands::UndoLRSpillRestore() {
1511 bool MadeChange = false;
1512 for (unsigned i = 0, e = PushPopMIs.size(); i != e; ++i) {
1513 MachineInstr *MI = PushPopMIs[i];
Bob Wilson815baeb2010-03-13 01:08:20 +00001514 // First two operands are predicates.
Evan Cheng44bec522007-05-15 01:29:07 +00001515 if (MI->getOpcode() == ARM::tPOP_RET &&
Bob Wilson815baeb2010-03-13 01:08:20 +00001516 MI->getOperand(2).getReg() == ARM::PC &&
1517 MI->getNumExplicitOperands() == 3) {
Jim Grosbach25e6d482011-07-08 21:50:04 +00001518 // Create the new insn and copy the predicate from the old.
1519 BuildMI(MI->getParent(), MI->getDebugLoc(), TII->get(ARM::tBX_RET))
1520 .addOperand(MI->getOperand(0))
1521 .addOperand(MI->getOperand(1));
Evan Cheng44bec522007-05-15 01:29:07 +00001522 MI->eraseFromParent();
1523 MadeChange = true;
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001524 }
1525 }
1526 return MadeChange;
1527}
Evan Cheng5657c012009-07-29 02:18:14 +00001528
Evan Chenga1efbbd2009-08-14 00:32:16 +00001529bool ARMConstantIslands::OptimizeThumb2Instructions(MachineFunction &MF) {
1530 bool MadeChange = false;
1531
1532 // Shrink ADR and LDR from constantpool.
1533 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i) {
1534 CPUser &U = CPUsers[i];
1535 unsigned Opcode = U.MI->getOpcode();
1536 unsigned NewOpc = 0;
1537 unsigned Scale = 1;
1538 unsigned Bits = 0;
1539 switch (Opcode) {
1540 default: break;
Owen Anderson6b8719f2010-12-13 22:51:08 +00001541 case ARM::t2LEApcrel:
Evan Chenga1efbbd2009-08-14 00:32:16 +00001542 if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
1543 NewOpc = ARM::tLEApcrel;
1544 Bits = 8;
1545 Scale = 4;
1546 }
1547 break;
1548 case ARM::t2LDRpci:
1549 if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
1550 NewOpc = ARM::tLDRpci;
1551 Bits = 8;
1552 Scale = 4;
1553 }
1554 break;
1555 }
1556
1557 if (!NewOpc)
1558 continue;
1559
1560 unsigned UserOffset = GetOffsetOf(U.MI) + 4;
1561 unsigned MaxOffs = ((1 << Bits) - 1) * Scale;
1562 // FIXME: Check if offset is multiple of scale if scale is not 4.
1563 if (CPEIsInRange(U.MI, UserOffset, U.CPEMI, MaxOffs, false, true)) {
1564 U.MI->setDesc(TII->get(NewOpc));
1565 MachineBasicBlock *MBB = U.MI->getParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001566 BBInfo[MBB->getNumber()].Size -= 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001567 AdjustBBOffsetsAfter(MBB);
Evan Chenga1efbbd2009-08-14 00:32:16 +00001568 ++NumT2CPShrunk;
1569 MadeChange = true;
1570 }
1571 }
1572
Evan Chenga1efbbd2009-08-14 00:32:16 +00001573 MadeChange |= OptimizeThumb2Branches(MF);
Jim Grosbach01dec0e2009-11-12 03:28:35 +00001574 MadeChange |= OptimizeThumb2JumpTables(MF);
Evan Chenga1efbbd2009-08-14 00:32:16 +00001575 return MadeChange;
1576}
1577
1578bool ARMConstantIslands::OptimizeThumb2Branches(MachineFunction &MF) {
Evan Cheng31b99dd2009-08-14 18:31:44 +00001579 bool MadeChange = false;
1580
1581 for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i) {
1582 ImmBranch &Br = ImmBranches[i];
1583 unsigned Opcode = Br.MI->getOpcode();
1584 unsigned NewOpc = 0;
1585 unsigned Scale = 1;
1586 unsigned Bits = 0;
1587 switch (Opcode) {
1588 default: break;
1589 case ARM::t2B:
1590 NewOpc = ARM::tB;
1591 Bits = 11;
1592 Scale = 2;
1593 break;
Evan Chengde17fb62009-10-31 23:46:45 +00001594 case ARM::t2Bcc: {
Evan Cheng31b99dd2009-08-14 18:31:44 +00001595 NewOpc = ARM::tBcc;
1596 Bits = 8;
Evan Chengde17fb62009-10-31 23:46:45 +00001597 Scale = 2;
Evan Cheng31b99dd2009-08-14 18:31:44 +00001598 break;
1599 }
Evan Chengde17fb62009-10-31 23:46:45 +00001600 }
1601 if (NewOpc) {
1602 unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
1603 MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
1604 if (BBIsInRange(Br.MI, DestBB, MaxOffs)) {
1605 Br.MI->setDesc(TII->get(NewOpc));
1606 MachineBasicBlock *MBB = Br.MI->getParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001607 BBInfo[MBB->getNumber()].Size -= 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001608 AdjustBBOffsetsAfter(MBB);
Evan Chengde17fb62009-10-31 23:46:45 +00001609 ++NumT2BrShrunk;
1610 MadeChange = true;
1611 }
1612 }
1613
1614 Opcode = Br.MI->getOpcode();
1615 if (Opcode != ARM::tBcc)
Evan Cheng31b99dd2009-08-14 18:31:44 +00001616 continue;
1617
Evan Chengde17fb62009-10-31 23:46:45 +00001618 NewOpc = 0;
1619 unsigned PredReg = 0;
1620 ARMCC::CondCodes Pred = llvm::getInstrPredicate(Br.MI, PredReg);
1621 if (Pred == ARMCC::EQ)
1622 NewOpc = ARM::tCBZ;
1623 else if (Pred == ARMCC::NE)
1624 NewOpc = ARM::tCBNZ;
1625 if (!NewOpc)
1626 continue;
Evan Cheng31b99dd2009-08-14 18:31:44 +00001627 MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
Evan Chengde17fb62009-10-31 23:46:45 +00001628 // Check if the distance is within 126. Subtract starting offset by 2
1629 // because the cmp will be eliminated.
1630 unsigned BrOffset = GetOffsetOf(Br.MI) + 4 - 2;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001631 unsigned DestOffset = BBInfo[DestBB->getNumber()].Offset;
Evan Chengde17fb62009-10-31 23:46:45 +00001632 if (BrOffset < DestOffset && (DestOffset - BrOffset) <= 126) {
Evan Cheng0539c152011-04-01 22:09:28 +00001633 MachineBasicBlock::iterator CmpMI = Br.MI;
1634 if (CmpMI != Br.MI->getParent()->begin()) {
1635 --CmpMI;
1636 if (CmpMI->getOpcode() == ARM::tCMPi8) {
1637 unsigned Reg = CmpMI->getOperand(0).getReg();
1638 Pred = llvm::getInstrPredicate(CmpMI, PredReg);
1639 if (Pred == ARMCC::AL &&
1640 CmpMI->getOperand(1).getImm() == 0 &&
1641 isARMLowRegister(Reg)) {
1642 MachineBasicBlock *MBB = Br.MI->getParent();
1643 MachineInstr *NewBR =
1644 BuildMI(*MBB, CmpMI, Br.MI->getDebugLoc(), TII->get(NewOpc))
1645 .addReg(Reg).addMBB(DestBB,Br.MI->getOperand(0).getTargetFlags());
1646 CmpMI->eraseFromParent();
1647 Br.MI->eraseFromParent();
1648 Br.MI = NewBR;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001649 BBInfo[MBB->getNumber()].Size -= 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001650 AdjustBBOffsetsAfter(MBB);
Evan Cheng0539c152011-04-01 22:09:28 +00001651 ++NumCBZ;
1652 MadeChange = true;
1653 }
Evan Chengde17fb62009-10-31 23:46:45 +00001654 }
1655 }
Evan Cheng31b99dd2009-08-14 18:31:44 +00001656 }
1657 }
1658
1659 return MadeChange;
Evan Chenga1efbbd2009-08-14 00:32:16 +00001660}
1661
Evan Chenga1efbbd2009-08-14 00:32:16 +00001662/// OptimizeThumb2JumpTables - Use tbb / tbh instructions to generate smaller
1663/// jumptables when it's possible.
Evan Cheng5657c012009-07-29 02:18:14 +00001664bool ARMConstantIslands::OptimizeThumb2JumpTables(MachineFunction &MF) {
1665 bool MadeChange = false;
1666
1667 // FIXME: After the tables are shrunk, can we get rid some of the
1668 // constantpool tables?
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001669 MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
Chris Lattnerb1e80392010-01-25 23:22:00 +00001670 if (MJTI == 0) return false;
Jim Grosbach26b8ef52010-07-07 21:06:51 +00001671
Evan Cheng5657c012009-07-29 02:18:14 +00001672 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1673 for (unsigned i = 0, e = T2JumpTables.size(); i != e; ++i) {
1674 MachineInstr *MI = T2JumpTables[i];
Evan Chenge837dea2011-06-28 19:10:37 +00001675 const MCInstrDesc &MCID = MI->getDesc();
1676 unsigned NumOps = MCID.getNumOperands();
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001677 unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 3 : 2);
Evan Cheng5657c012009-07-29 02:18:14 +00001678 MachineOperand JTOP = MI->getOperand(JTOpIdx);
1679 unsigned JTI = JTOP.getIndex();
1680 assert(JTI < JT.size());
1681
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001682 bool ByteOk = true;
1683 bool HalfWordOk = true;
Jim Grosbach80697d12009-11-12 17:25:07 +00001684 unsigned JTOffset = GetOffsetOf(MI) + 4;
1685 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Evan Cheng5657c012009-07-29 02:18:14 +00001686 for (unsigned j = 0, ee = JTBBs.size(); j != ee; ++j) {
1687 MachineBasicBlock *MBB = JTBBs[j];
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001688 unsigned DstOffset = BBInfo[MBB->getNumber()].Offset;
Evan Cheng8770f742009-07-29 23:20:20 +00001689 // Negative offset is not ok. FIXME: We should change BB layout to make
1690 // sure all the branches are forward.
Evan Chengd26b14c2009-07-31 18:28:05 +00001691 if (ByteOk && (DstOffset - JTOffset) > ((1<<8)-1)*2)
Evan Cheng5657c012009-07-29 02:18:14 +00001692 ByteOk = false;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001693 unsigned TBHLimit = ((1<<16)-1)*2;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001694 if (HalfWordOk && (DstOffset - JTOffset) > TBHLimit)
Evan Cheng5657c012009-07-29 02:18:14 +00001695 HalfWordOk = false;
1696 if (!ByteOk && !HalfWordOk)
1697 break;
1698 }
1699
1700 if (ByteOk || HalfWordOk) {
1701 MachineBasicBlock *MBB = MI->getParent();
1702 unsigned BaseReg = MI->getOperand(0).getReg();
1703 bool BaseRegKill = MI->getOperand(0).isKill();
1704 if (!BaseRegKill)
1705 continue;
1706 unsigned IdxReg = MI->getOperand(1).getReg();
1707 bool IdxRegKill = MI->getOperand(1).isKill();
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001708
1709 // Scan backwards to find the instruction that defines the base
1710 // register. Due to post-RA scheduling, we can't count on it
1711 // immediately preceding the branch instruction.
Evan Cheng5657c012009-07-29 02:18:14 +00001712 MachineBasicBlock::iterator PrevI = MI;
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001713 MachineBasicBlock::iterator B = MBB->begin();
1714 while (PrevI != B && !PrevI->definesRegister(BaseReg))
1715 --PrevI;
1716
1717 // If for some reason we didn't find it, we can't do anything, so
1718 // just skip this one.
1719 if (!PrevI->definesRegister(BaseReg))
Evan Cheng5657c012009-07-29 02:18:14 +00001720 continue;
1721
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001722 MachineInstr *AddrMI = PrevI;
Evan Cheng5657c012009-07-29 02:18:14 +00001723 bool OptOk = true;
Jim Grosbach26b8ef52010-07-07 21:06:51 +00001724 // Examine the instruction that calculates the jumptable entry address.
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001725 // Make sure it only defines the base register and kills any uses
1726 // other than the index register.
Evan Cheng5657c012009-07-29 02:18:14 +00001727 for (unsigned k = 0, eee = AddrMI->getNumOperands(); k != eee; ++k) {
1728 const MachineOperand &MO = AddrMI->getOperand(k);
1729 if (!MO.isReg() || !MO.getReg())
1730 continue;
1731 if (MO.isDef() && MO.getReg() != BaseReg) {
1732 OptOk = false;
1733 break;
1734 }
1735 if (MO.isUse() && !MO.isKill() && MO.getReg() != IdxReg) {
1736 OptOk = false;
1737 break;
1738 }
1739 }
1740 if (!OptOk)
1741 continue;
1742
Owen Anderson6b8719f2010-12-13 22:51:08 +00001743 // Now scan back again to find the tLEApcrel or t2LEApcrelJT instruction
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001744 // that gave us the initial base register definition.
1745 for (--PrevI; PrevI != B && !PrevI->definesRegister(BaseReg); --PrevI)
1746 ;
1747
Owen Anderson6b8719f2010-12-13 22:51:08 +00001748 // The instruction should be a tLEApcrel or t2LEApcrelJT; we want
Evan Chenga1efbbd2009-08-14 00:32:16 +00001749 // to delete it as well.
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001750 MachineInstr *LeaMI = PrevI;
Evan Chenga1efbbd2009-08-14 00:32:16 +00001751 if ((LeaMI->getOpcode() != ARM::tLEApcrelJT &&
Owen Anderson6b8719f2010-12-13 22:51:08 +00001752 LeaMI->getOpcode() != ARM::t2LEApcrelJT) ||
Evan Cheng5657c012009-07-29 02:18:14 +00001753 LeaMI->getOperand(0).getReg() != BaseReg)
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001754 OptOk = false;
Evan Cheng5657c012009-07-29 02:18:14 +00001755
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001756 if (!OptOk)
1757 continue;
1758
Jim Grosbachd092a872010-11-29 21:28:32 +00001759 unsigned Opc = ByteOk ? ARM::t2TBB_JT : ARM::t2TBH_JT;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001760 MachineInstr *NewJTMI = BuildMI(MBB, MI->getDebugLoc(), TII->get(Opc))
1761 .addReg(IdxReg, getKillRegState(IdxRegKill))
1762 .addJumpTableIndex(JTI, JTOP.getTargetFlags())
1763 .addImm(MI->getOperand(JTOpIdx+1).getImm());
1764 // FIXME: Insert an "ALIGN" instruction to ensure the next instruction
1765 // is 2-byte aligned. For now, asm printer will fix it up.
1766 unsigned NewSize = TII->GetInstSizeInBytes(NewJTMI);
1767 unsigned OrigSize = TII->GetInstSizeInBytes(AddrMI);
1768 OrigSize += TII->GetInstSizeInBytes(LeaMI);
1769 OrigSize += TII->GetInstSizeInBytes(MI);
1770
1771 AddrMI->eraseFromParent();
1772 LeaMI->eraseFromParent();
1773 MI->eraseFromParent();
1774
1775 int delta = OrigSize - NewSize;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001776 BBInfo[MBB->getNumber()].Size -= delta;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001777 AdjustBBOffsetsAfter(MBB);
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001778
1779 ++NumTBs;
1780 MadeChange = true;
Evan Cheng5657c012009-07-29 02:18:14 +00001781 }
1782 }
1783
1784 return MadeChange;
1785}
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001786
Jim Grosbach9249efe2009-11-16 18:55:47 +00001787/// ReorderThumb2JumpTables - Adjust the function's block layout to ensure that
1788/// jump tables always branch forwards, since that's what tbb and tbh need.
Jim Grosbach80697d12009-11-12 17:25:07 +00001789bool ARMConstantIslands::ReorderThumb2JumpTables(MachineFunction &MF) {
1790 bool MadeChange = false;
1791
1792 MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
Chris Lattnerb1e80392010-01-25 23:22:00 +00001793 if (MJTI == 0) return false;
Jim Grosbach26b8ef52010-07-07 21:06:51 +00001794
Jim Grosbach80697d12009-11-12 17:25:07 +00001795 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1796 for (unsigned i = 0, e = T2JumpTables.size(); i != e; ++i) {
1797 MachineInstr *MI = T2JumpTables[i];
Evan Chenge837dea2011-06-28 19:10:37 +00001798 const MCInstrDesc &MCID = MI->getDesc();
1799 unsigned NumOps = MCID.getNumOperands();
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001800 unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 3 : 2);
Jim Grosbach80697d12009-11-12 17:25:07 +00001801 MachineOperand JTOP = MI->getOperand(JTOpIdx);
1802 unsigned JTI = JTOP.getIndex();
1803 assert(JTI < JT.size());
1804
1805 // We prefer if target blocks for the jump table come after the jump
1806 // instruction so we can use TB[BH]. Loop through the target blocks
1807 // and try to adjust them such that that's true.
Jim Grosbach08cbda52009-11-16 18:58:52 +00001808 int JTNumber = MI->getParent()->getNumber();
Jim Grosbach80697d12009-11-12 17:25:07 +00001809 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
1810 for (unsigned j = 0, ee = JTBBs.size(); j != ee; ++j) {
1811 MachineBasicBlock *MBB = JTBBs[j];
Jim Grosbach08cbda52009-11-16 18:58:52 +00001812 int DTNumber = MBB->getNumber();
Jim Grosbach80697d12009-11-12 17:25:07 +00001813
Jim Grosbach08cbda52009-11-16 18:58:52 +00001814 if (DTNumber < JTNumber) {
Jim Grosbach80697d12009-11-12 17:25:07 +00001815 // The destination precedes the switch. Try to move the block forward
1816 // so we have a positive offset.
1817 MachineBasicBlock *NewBB =
1818 AdjustJTTargetBlockForward(MBB, MI->getParent());
1819 if (NewBB)
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00001820 MJTI->ReplaceMBBInJumpTable(JTI, JTBBs[j], NewBB);
Jim Grosbach80697d12009-11-12 17:25:07 +00001821 MadeChange = true;
1822 }
1823 }
1824 }
1825
1826 return MadeChange;
1827}
1828
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001829MachineBasicBlock *ARMConstantIslands::
1830AdjustJTTargetBlockForward(MachineBasicBlock *BB, MachineBasicBlock *JTBB)
1831{
1832 MachineFunction &MF = *BB->getParent();
1833
Jim Grosbach03e2d442010-07-07 22:53:35 +00001834 // If the destination block is terminated by an unconditional branch,
Jim Grosbach80697d12009-11-12 17:25:07 +00001835 // try to move it; otherwise, create a new block following the jump
Jim Grosbach08cbda52009-11-16 18:58:52 +00001836 // table that branches back to the actual target. This is a very simple
1837 // heuristic. FIXME: We can definitely improve it.
Jim Grosbach80697d12009-11-12 17:25:07 +00001838 MachineBasicBlock *TBB = 0, *FBB = 0;
1839 SmallVector<MachineOperand, 4> Cond;
Jim Grosbacha0a95a32009-11-17 01:21:04 +00001840 SmallVector<MachineOperand, 4> CondPrior;
1841 MachineFunction::iterator BBi = BB;
1842 MachineFunction::iterator OldPrior = prior(BBi);
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00001843
Jim Grosbachca215e72009-11-16 17:10:56 +00001844 // If the block terminator isn't analyzable, don't try to move the block
Jim Grosbacha0a95a32009-11-17 01:21:04 +00001845 bool B = TII->AnalyzeBranch(*BB, TBB, FBB, Cond);
Jim Grosbachca215e72009-11-16 17:10:56 +00001846
Jim Grosbacha0a95a32009-11-17 01:21:04 +00001847 // If the block ends in an unconditional branch, move it. The prior block
1848 // has to have an analyzable terminator for us to move this one. Be paranoid
Jim Grosbach08cbda52009-11-16 18:58:52 +00001849 // and make sure we're not trying to move the entry block of the function.
Jim Grosbacha0a95a32009-11-17 01:21:04 +00001850 if (!B && Cond.empty() && BB != MF.begin() &&
1851 !TII->AnalyzeBranch(*OldPrior, TBB, FBB, CondPrior)) {
Jim Grosbach80697d12009-11-12 17:25:07 +00001852 BB->moveAfter(JTBB);
1853 OldPrior->updateTerminator();
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00001854 BB->updateTerminator();
Jim Grosbach08cbda52009-11-16 18:58:52 +00001855 // Update numbering to account for the block being moved.
Jim Grosbacha0a95a32009-11-17 01:21:04 +00001856 MF.RenumberBlocks();
Jim Grosbach80697d12009-11-12 17:25:07 +00001857 ++NumJTMoved;
1858 return NULL;
1859 }
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001860
1861 // Create a new MBB for the code after the jump BB.
1862 MachineBasicBlock *NewBB =
1863 MF.CreateMachineBasicBlock(JTBB->getBasicBlock());
1864 MachineFunction::iterator MBBI = JTBB; ++MBBI;
1865 MF.insert(MBBI, NewBB);
1866
1867 // Add an unconditional branch from NewBB to BB.
1868 // There doesn't seem to be meaningful DebugInfo available; this doesn't
1869 // correspond directly to anything in the source.
1870 assert (isThumb2 && "Adjusting for TB[BH] but not in Thumb2?");
Owen Anderson51f6a7a2011-09-09 21:48:23 +00001871 BuildMI(NewBB, DebugLoc(), TII->get(ARM::t2B)).addMBB(BB)
1872 .addImm(ARMCC::AL).addReg(0);
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001873
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00001874 // Update internal data structures to account for the newly inserted MBB.
1875 MF.RenumberBlocks(NewBB);
1876
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001877 // Update the CFG.
1878 NewBB->addSuccessor(BB);
1879 JTBB->removeSuccessor(BB);
1880 JTBB->addSuccessor(NewBB);
1881
Jim Grosbach80697d12009-11-12 17:25:07 +00001882 ++NumJTInserted;
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001883 return NewBB;
1884}