blob: 2cdfd1e5bfad464755435a02b729423d73e8ffc0 [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"
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +000029#include "llvm/Support/Format.h"
Chris Lattner705e07f2009-08-23 03:41:05 +000030#include "llvm/Support/raw_ostream.h"
Bob Wilsonb9239532009-10-15 20:49:47 +000031#include "llvm/ADT/SmallSet.h"
Evan Chengc99ef082007-02-09 20:54:44 +000032#include "llvm/ADT/SmallVector.h"
Evan Chenga8e29892007-01-19 07:51:42 +000033#include "llvm/ADT/STLExtras.h"
34#include "llvm/ADT/Statistic.h"
Jim Grosbach1fc7d712009-11-11 02:47:19 +000035#include "llvm/Support/CommandLine.h"
Bob Wilsonb9239532009-10-15 20:49:47 +000036#include <algorithm>
Evan Chenga8e29892007-01-19 07:51:42 +000037using namespace llvm;
38
Evan Chenga1efbbd2009-08-14 00:32:16 +000039STATISTIC(NumCPEs, "Number of constpool entries");
40STATISTIC(NumSplit, "Number of uncond branches inserted");
41STATISTIC(NumCBrFixed, "Number of cond branches fixed");
42STATISTIC(NumUBrFixed, "Number of uncond branches fixed");
43STATISTIC(NumTBs, "Number of table branches generated");
44STATISTIC(NumT2CPShrunk, "Number of Thumb2 constantpool instructions shrunk");
Evan Cheng31b99dd2009-08-14 18:31:44 +000045STATISTIC(NumT2BrShrunk, "Number of Thumb2 immediate branches shrunk");
Evan Chengde17fb62009-10-31 23:46:45 +000046STATISTIC(NumCBZ, "Number of CBZ / CBNZ formed");
Jim Grosbach1fc7d712009-11-11 02:47:19 +000047STATISTIC(NumJTMoved, "Number of jump table destination blocks moved");
Jim Grosbach80697d12009-11-12 17:25:07 +000048STATISTIC(NumJTInserted, "Number of jump table intermediate blocks inserted");
Jim Grosbach1fc7d712009-11-11 02:47:19 +000049
50
51static cl::opt<bool>
Jim Grosbachf04777b2009-11-17 21:24:11 +000052AdjustJumpTableBlocks("arm-adjust-jump-tables", cl::Hidden, cl::init(true),
Jim Grosbach1fc7d712009-11-11 02:47:19 +000053 cl::desc("Adjust basic block layout to better use TB[BH]"));
Evan Chenga8e29892007-01-19 07:51:42 +000054
Jakob Stoklund Olesenf5bb45f2011-12-16 16:07:41 +000055// FIXME: This option should be removed once it has received sufficient testing.
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +000056static cl::opt<bool>
Jakob Stoklund Olesenb6ff6ec2011-12-15 22:14:45 +000057AlignConstantIslands("arm-align-constant-islands", cl::Hidden, cl::init(true),
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +000058 cl::desc("Align constant islands in code"));
59
Jakob Stoklund Olesen77caaf02011-12-10 02:55:10 +000060/// UnknownPadding - Return the worst case padding that could result from
61/// unknown offset bits. This does not include alignment padding caused by
62/// known offset bits.
63///
64/// @param LogAlign log2(alignment)
65/// @param KnownBits Number of known low offset bits.
66static inline unsigned UnknownPadding(unsigned LogAlign, unsigned KnownBits) {
67 if (KnownBits < LogAlign)
68 return (1u << LogAlign) - (1u << KnownBits);
69 return 0;
70}
71
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +000072/// WorstCaseAlign - Assuming only the low KnownBits bits in Offset are exact,
73/// add padding such that:
74///
75/// 1. The result is aligned to 1 << LogAlign.
76///
77/// 2. No other value of the unknown bits would require more padding.
78///
79/// This may add more padding than is required to satisfy just one of the
80/// constraints. It is necessary to compute alignment this way to guarantee
81/// that we don't underestimate the padding before an aligned block. If the
82/// real padding before a block is larger than we think, constant pool entries
83/// may go out of range.
84static inline unsigned WorstCaseAlign(unsigned Offset, unsigned LogAlign,
85 unsigned KnownBits) {
86 // Add the worst possible padding that the unknown bits could cause.
Jakob Stoklund Olesen77caaf02011-12-10 02:55:10 +000087 Offset += UnknownPadding(LogAlign, KnownBits);
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +000088
89 // Then align the result.
90 return RoundUpToAlignment(Offset, 1u << LogAlign);
91}
92
Evan Chenga8e29892007-01-19 07:51:42 +000093namespace {
Dale Johannesen88e37ae2007-02-23 05:02:36 +000094 /// ARMConstantIslands - Due to limited PC-relative displacements, ARM
Evan Chenga8e29892007-01-19 07:51:42 +000095 /// requires constant pool entries to be scattered among the instructions
96 /// inside a function. To do this, it completely ignores the normal LLVM
Dale Johannesen88e37ae2007-02-23 05:02:36 +000097 /// constant pool; instead, it places constants wherever it feels like with
Evan Chenga8e29892007-01-19 07:51:42 +000098 /// special instructions.
99 ///
100 /// The terminology used in this pass includes:
101 /// Islands - Clumps of constants placed in the function.
102 /// Water - Potential places where an island could be formed.
103 /// CPE - A constant pool entry that has been placed somewhere, which
104 /// tracks a list of users.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000105 class ARMConstantIslands : public MachineFunctionPass {
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000106 /// BasicBlockInfo - Information about the offset and size of a single
107 /// basic block.
108 struct BasicBlockInfo {
109 /// Offset - Distance from the beginning of the function to the beginning
110 /// of this basic block.
111 ///
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000112 /// The offset is always aligned as required by the basic block.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000113 unsigned Offset;
Bob Wilson84945262009-05-12 17:09:30 +0000114
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000115 /// Size - Size of the basic block in bytes. If the block contains
116 /// inline assembly, this is a worst case estimate.
117 ///
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000118 /// The size does not include any alignment padding whether from the
119 /// beginning of the block, or from an aligned jump table at the end.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000120 unsigned Size;
121
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000122 /// KnownBits - The number of low bits in Offset that are known to be
123 /// exact. The remaining bits of Offset are an upper bound.
124 uint8_t KnownBits;
125
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000126 /// Unalign - When non-zero, the block contains instructions (inline asm)
127 /// of unknown size. The real size may be smaller than Size bytes by a
128 /// multiple of 1 << Unalign.
129 uint8_t Unalign;
130
131 /// PostAlign - When non-zero, the block terminator contains a .align
132 /// directive, so the end of the block is aligned to 1 << PostAlign
133 /// bytes.
134 uint8_t PostAlign;
135
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000136 BasicBlockInfo() : Offset(0), Size(0), KnownBits(0), Unalign(0),
137 PostAlign(0) {}
Jakob Stoklund Olesen5bb32532011-12-07 01:22:52 +0000138
Jakob Stoklund Olesen77caaf02011-12-10 02:55:10 +0000139 /// Compute the number of known offset bits internally to this block.
140 /// This number should be used to predict worst case padding when
141 /// splitting the block.
142 unsigned internalKnownBits() const {
143 return Unalign ? Unalign : KnownBits;
144 }
145
Jakob Stoklund Olesen85528212011-12-12 19:25:54 +0000146 /// Compute the offset immediately following this block. If LogAlign is
147 /// specified, return the offset the successor block will get if it has
148 /// this alignment.
149 unsigned postOffset(unsigned LogAlign = 0) const {
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000150 unsigned PO = Offset + Size;
Jakob Stoklund Olesen85528212011-12-12 19:25:54 +0000151 unsigned LA = std::max(unsigned(PostAlign), LogAlign);
152 if (!LA)
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000153 return PO;
154 // Add alignment padding from the terminator.
Jakob Stoklund Olesen85528212011-12-12 19:25:54 +0000155 return WorstCaseAlign(PO, LA, internalKnownBits());
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000156 }
157
158 /// Compute the number of known low bits of postOffset. If this block
159 /// contains inline asm, the number of known bits drops to the
160 /// instruction alignment. An aligned terminator may increase the number
161 /// of know bits.
Jakob Stoklund Olesen85528212011-12-12 19:25:54 +0000162 /// If LogAlign is given, also consider the alignment of the next block.
163 unsigned postKnownBits(unsigned LogAlign = 0) const {
164 return std::max(std::max(unsigned(PostAlign), LogAlign),
165 internalKnownBits());
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000166 }
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000167 };
168
169 std::vector<BasicBlockInfo> BBInfo;
Dale Johannesen99c49a42007-02-25 00:47:03 +0000170
Evan Chenga8e29892007-01-19 07:51:42 +0000171 /// WaterList - A sorted list of basic blocks where islands could be placed
172 /// (i.e. blocks that don't fall through to the following block, due
173 /// to a return, unreachable, or unconditional branch).
Evan Chenge03cff62007-02-09 23:59:14 +0000174 std::vector<MachineBasicBlock*> WaterList;
Evan Chengc99ef082007-02-09 20:54:44 +0000175
Bob Wilsonb9239532009-10-15 20:49:47 +0000176 /// NewWaterList - The subset of WaterList that was created since the
177 /// previous iteration by inserting unconditional branches.
178 SmallSet<MachineBasicBlock*, 4> NewWaterList;
179
Bob Wilson034de5f2009-10-12 18:52:13 +0000180 typedef std::vector<MachineBasicBlock*>::iterator water_iterator;
181
Evan Chenga8e29892007-01-19 07:51:42 +0000182 /// CPUser - One user of a constant pool, keeping the machine instruction
183 /// pointer, the constant pool being referenced, and the max displacement
Bob Wilson549dda92009-10-15 05:52:29 +0000184 /// allowed from the instruction to the CP. The HighWaterMark records the
185 /// highest basic block where a new CPEntry can be placed. To ensure this
186 /// pass terminates, the CP entries are initially placed at the end of the
187 /// function and then move monotonically to lower addresses. The
188 /// exception to this rule is when the current CP entry for a particular
189 /// CPUser is out of range, but there is another CP entry for the same
190 /// constant value in range. We want to use the existing in-range CP
191 /// entry, but if it later moves out of range, the search for new water
192 /// should resume where it left off. The HighWaterMark is used to record
193 /// that point.
Evan Chenga8e29892007-01-19 07:51:42 +0000194 struct CPUser {
195 MachineInstr *MI;
196 MachineInstr *CPEMI;
Bob Wilson549dda92009-10-15 05:52:29 +0000197 MachineBasicBlock *HighWaterMark;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000198 private:
Evan Chenga8e29892007-01-19 07:51:42 +0000199 unsigned MaxDisp;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000200 public:
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000201 bool NegOk;
Evan Chengd3d9d662009-07-23 18:27:47 +0000202 bool IsSoImm;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000203 bool KnownAlignment;
Evan Chengd3d9d662009-07-23 18:27:47 +0000204 CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp,
205 bool neg, bool soimm)
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000206 : MI(mi), CPEMI(cpemi), MaxDisp(maxdisp), NegOk(neg), IsSoImm(soimm),
207 KnownAlignment(false) {
Bob Wilson549dda92009-10-15 05:52:29 +0000208 HighWaterMark = CPEMI->getParent();
209 }
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000210 /// getMaxDisp - Returns the maximum displacement supported by MI.
211 /// Correct for unknown alignment.
212 unsigned getMaxDisp() const {
213 return KnownAlignment ? MaxDisp : MaxDisp - 2;
214 }
Evan Chenga8e29892007-01-19 07:51:42 +0000215 };
Bob Wilson84945262009-05-12 17:09:30 +0000216
Evan Chenga8e29892007-01-19 07:51:42 +0000217 /// CPUsers - Keep track of all of the machine instructions that use various
218 /// constant pools and their max displacement.
Evan Chenge03cff62007-02-09 23:59:14 +0000219 std::vector<CPUser> CPUsers;
Bob Wilson84945262009-05-12 17:09:30 +0000220
Evan Chengc99ef082007-02-09 20:54:44 +0000221 /// CPEntry - One per constant pool entry, keeping the machine instruction
222 /// pointer, the constpool index, and the number of CPUser's which
223 /// reference this entry.
224 struct CPEntry {
225 MachineInstr *CPEMI;
226 unsigned CPI;
227 unsigned RefCount;
228 CPEntry(MachineInstr *cpemi, unsigned cpi, unsigned rc = 0)
229 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
230 };
231
232 /// CPEntries - Keep track of all of the constant pool entry machine
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000233 /// instructions. For each original constpool index (i.e. those that
234 /// existed upon entry to this pass), it keeps a vector of entries.
235 /// Original elements are cloned as we go along; the clones are
236 /// put in the vector of the original element, but have distinct CPIs.
Evan Chengc99ef082007-02-09 20:54:44 +0000237 std::vector<std::vector<CPEntry> > CPEntries;
Bob Wilson84945262009-05-12 17:09:30 +0000238
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000239 /// ImmBranch - One per immediate branch, keeping the machine instruction
240 /// pointer, conditional or unconditional, the max displacement,
241 /// and (if isCond is true) the corresponding unconditional branch
242 /// opcode.
243 struct ImmBranch {
244 MachineInstr *MI;
Evan Chengc2854142007-01-25 23:18:59 +0000245 unsigned MaxDisp : 31;
246 bool isCond : 1;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000247 int UncondBr;
Evan Chengc2854142007-01-25 23:18:59 +0000248 ImmBranch(MachineInstr *mi, unsigned maxdisp, bool cond, int ubr)
249 : MI(mi), MaxDisp(maxdisp), isCond(cond), UncondBr(ubr) {}
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000250 };
251
Evan Cheng2706f972007-05-16 05:14:06 +0000252 /// ImmBranches - Keep track of all the immediate branch instructions.
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000253 ///
Evan Chenge03cff62007-02-09 23:59:14 +0000254 std::vector<ImmBranch> ImmBranches;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000255
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000256 /// PushPopMIs - Keep track of all the Thumb push / pop instructions.
257 ///
Evan Chengc99ef082007-02-09 20:54:44 +0000258 SmallVector<MachineInstr*, 4> PushPopMIs;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000259
Evan Cheng5657c012009-07-29 02:18:14 +0000260 /// T2JumpTables - Keep track of all the Thumb2 jumptable instructions.
261 SmallVector<MachineInstr*, 4> T2JumpTables;
262
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000263 /// HasFarJump - True if any far jump instruction has been emitted during
264 /// the branch fix up pass.
265 bool HasFarJump;
266
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000267 MachineFunction *MF;
268 MachineConstantPool *MCP;
Chris Lattner20628752010-07-22 21:27:00 +0000269 const ARMInstrInfo *TII;
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000270 const ARMSubtarget *STI;
Dale Johannesen8593e412007-04-29 19:19:30 +0000271 ARMFunctionInfo *AFI;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000272 bool isThumb;
Evan Chengd3d9d662009-07-23 18:27:47 +0000273 bool isThumb1;
David Goodwin5e47a9a2009-06-30 18:04:13 +0000274 bool isThumb2;
Evan Chenga8e29892007-01-19 07:51:42 +0000275 public:
Devang Patel19974732007-05-03 01:11:54 +0000276 static char ID;
Owen Anderson90c579d2010-08-06 18:33:48 +0000277 ARMConstantIslands() : MachineFunctionPass(ID) {}
Devang Patel794fd752007-05-01 21:15:47 +0000278
Evan Cheng5657c012009-07-29 02:18:14 +0000279 virtual bool runOnMachineFunction(MachineFunction &MF);
Evan Chenga8e29892007-01-19 07:51:42 +0000280
281 virtual const char *getPassName() const {
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000282 return "ARM constant island placement and branch shortening pass";
Evan Chenga8e29892007-01-19 07:51:42 +0000283 }
Bob Wilson84945262009-05-12 17:09:30 +0000284
Evan Chenga8e29892007-01-19 07:51:42 +0000285 private:
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000286 void DoInitialPlacement(std::vector<MachineInstr*> &CPEMIs);
Evan Chengc99ef082007-02-09 20:54:44 +0000287 CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +0000288 unsigned getCPELogAlign(const MachineInstr *CPEMI);
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000289 void JumpTableFunctionScan();
290 void InitialFunctionScan(const std::vector<MachineInstr*> &CPEMIs);
Evan Cheng0c615842007-01-31 02:22:22 +0000291 MachineBasicBlock *SplitBlockBeforeInstr(MachineInstr *MI);
Evan Chenga8e29892007-01-19 07:51:42 +0000292 void UpdateForInsertedWaterBlock(MachineBasicBlock *NewBB);
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +0000293 void AdjustBBOffsetsAfter(MachineBasicBlock *BB);
Evan Chenged884f32007-04-03 23:39:48 +0000294 bool DecrementOldEntry(unsigned CPI, MachineInstr* CPEMI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000295 int LookForExistingCPEntry(CPUser& U, unsigned UserOffset);
Bob Wilsonb9239532009-10-15 20:49:47 +0000296 bool LookForWater(CPUser&U, unsigned UserOffset, water_iterator &WaterIter);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000297 void CreateNewWater(unsigned CPUserIndex, unsigned UserOffset,
Bob Wilson757652c2009-10-12 21:39:43 +0000298 MachineBasicBlock *&NewMBB);
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000299 bool HandleConstantPoolUser(unsigned CPUserIndex);
Evan Chenged884f32007-04-03 23:39:48 +0000300 void RemoveDeadCPEMI(MachineInstr *CPEMI);
301 bool RemoveUnusedCPEntries();
Bob Wilson84945262009-05-12 17:09:30 +0000302 bool CPEIsInRange(MachineInstr *MI, unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000303 MachineInstr *CPEMI, unsigned Disp, bool NegOk,
304 bool DoDump = false);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000305 bool WaterIsInRange(unsigned UserOffset, MachineBasicBlock *Water,
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +0000306 CPUser &U, unsigned &Growth);
Evan Chengc0dbec72007-01-31 19:57:44 +0000307 bool BBIsInRange(MachineInstr *MI, MachineBasicBlock *BB, unsigned Disp);
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000308 bool FixUpImmediateBr(ImmBranch &Br);
309 bool FixUpConditionalBr(ImmBranch &Br);
310 bool FixUpUnconditionalBr(ImmBranch &Br);
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000311 bool UndoLRSpillRestore();
Jakob Stoklund Olesen19d0bf32012-01-10 22:32:14 +0000312 bool mayOptimizeThumb2Instruction(const MachineInstr *MI) const;
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000313 bool OptimizeThumb2Instructions();
314 bool OptimizeThumb2Branches();
315 bool ReorderThumb2JumpTables();
316 bool OptimizeThumb2JumpTables();
Jim Grosbach1fc7d712009-11-11 02:47:19 +0000317 MachineBasicBlock *AdjustJTTargetBlockForward(MachineBasicBlock *BB,
318 MachineBasicBlock *JTBB);
Evan Chenga8e29892007-01-19 07:51:42 +0000319
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000320 void ComputeBlockSize(MachineBasicBlock *MBB);
Evan Chenga8e29892007-01-19 07:51:42 +0000321 unsigned GetOffsetOf(MachineInstr *MI) const;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000322 unsigned GetUserOffset(CPUser&) const;
Dale Johannesen8593e412007-04-29 19:19:30 +0000323 void dumpBBs();
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000324 void verify();
Jakob Stoklund Olesen493ad6b2011-12-09 19:44:39 +0000325
326 bool OffsetIsInRange(unsigned UserOffset, unsigned TrialOffset,
327 unsigned Disp, bool NegativeOK, bool IsSoImm = false);
328 bool OffsetIsInRange(unsigned UserOffset, unsigned TrialOffset,
329 const CPUser &U) {
330 return OffsetIsInRange(UserOffset, TrialOffset,
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000331 U.getMaxDisp(), U.NegOk, U.IsSoImm);
Jakob Stoklund Olesen493ad6b2011-12-09 19:44:39 +0000332 }
Evan Chenga8e29892007-01-19 07:51:42 +0000333 };
Devang Patel19974732007-05-03 01:11:54 +0000334 char ARMConstantIslands::ID = 0;
Evan Chenga8e29892007-01-19 07:51:42 +0000335}
336
Dale Johannesen8593e412007-04-29 19:19:30 +0000337/// verify - check BBOffsets, BBSizes, alignment of islands
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000338void ARMConstantIslands::verify() {
Evan Chengd3d9d662009-07-23 18:27:47 +0000339#ifndef NDEBUG
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000340 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
Evan Chengd3d9d662009-07-23 18:27:47 +0000341 MBBI != E; ++MBBI) {
342 MachineBasicBlock *MBB = MBBI;
Jakob Stoklund Olesen99486be2011-12-08 01:10:05 +0000343 unsigned Align = MBB->getAlignment();
344 unsigned MBBId = MBB->getNumber();
345 assert(BBInfo[MBBId].Offset % (1u << Align) == 0);
346 assert(!MBBId || BBInfo[MBBId - 1].postOffset() <= BBInfo[MBBId].Offset);
Dale Johannesen8593e412007-04-29 19:19:30 +0000347 }
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000348 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i) {
349 CPUser &U = CPUsers[i];
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000350 unsigned UserOffset = GetUserOffset(U);
Jakob Stoklund Olesen19d0bf32012-01-10 22:32:14 +0000351 assert(CPEIsInRange(U.MI, UserOffset, U.CPEMI, U.getMaxDisp(), U.NegOk) &&
352 "Constant pool entry out of range!");
Jim Grosbach4d8e90a2009-11-19 23:10:28 +0000353 }
Jim Grosbacha9562562009-11-20 19:37:38 +0000354#endif
Dale Johannesen8593e412007-04-29 19:19:30 +0000355}
356
357/// print block size and offset information - debugging
358void ARMConstantIslands::dumpBBs() {
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +0000359 DEBUG({
360 for (unsigned J = 0, E = BBInfo.size(); J !=E; ++J) {
361 const BasicBlockInfo &BBI = BBInfo[J];
362 dbgs() << format("%08x BB#%u\t", BBI.Offset, J)
363 << " kb=" << unsigned(BBI.KnownBits)
364 << " ua=" << unsigned(BBI.Unalign)
365 << " pa=" << unsigned(BBI.PostAlign)
366 << format(" size=%#x\n", BBInfo[J].Size);
367 }
368 });
Dale Johannesen8593e412007-04-29 19:19:30 +0000369}
370
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000371/// createARMConstantIslandPass - returns an instance of the constpool
372/// island pass.
Evan Chenga8e29892007-01-19 07:51:42 +0000373FunctionPass *llvm::createARMConstantIslandPass() {
374 return new ARMConstantIslands();
375}
376
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000377bool ARMConstantIslands::runOnMachineFunction(MachineFunction &mf) {
378 MF = &mf;
379 MCP = mf.getConstantPool();
Bob Wilson84945262009-05-12 17:09:30 +0000380
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +0000381 DEBUG(dbgs() << "***** ARMConstantIslands: "
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000382 << MCP->getConstants().size() << " CP entries, aligned to "
383 << MCP->getConstantPoolAlignment() << " bytes *****\n");
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +0000384
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000385 TII = (const ARMInstrInfo*)MF->getTarget().getInstrInfo();
386 AFI = MF->getInfo<ARMFunctionInfo>();
387 STI = &MF->getTarget().getSubtarget<ARMSubtarget>();
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000388
Dale Johannesenb71aa2b2007-02-28 23:20:38 +0000389 isThumb = AFI->isThumbFunction();
Evan Chengd3d9d662009-07-23 18:27:47 +0000390 isThumb1 = AFI->isThumb1OnlyFunction();
David Goodwin5e47a9a2009-06-30 18:04:13 +0000391 isThumb2 = AFI->isThumb2Function();
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000392
393 HasFarJump = false;
394
Evan Chenga8e29892007-01-19 07:51:42 +0000395 // Renumber all of the machine basic blocks in the function, guaranteeing that
396 // the numbers agree with the position of the block in the function.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000397 MF->RenumberBlocks();
Evan Chenga8e29892007-01-19 07:51:42 +0000398
Jim Grosbach80697d12009-11-12 17:25:07 +0000399 // Try to reorder and otherwise adjust the block layout to make good use
400 // of the TB[BH] instructions.
401 bool MadeChange = false;
402 if (isThumb2 && AdjustJumpTableBlocks) {
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000403 JumpTableFunctionScan();
404 MadeChange |= ReorderThumb2JumpTables();
Jim Grosbach80697d12009-11-12 17:25:07 +0000405 // Data is out of date, so clear it. It'll be re-computed later.
Jim Grosbach80697d12009-11-12 17:25:07 +0000406 T2JumpTables.clear();
407 // Blocks may have shifted around. Keep the numbering up to date.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000408 MF->RenumberBlocks();
Jim Grosbach80697d12009-11-12 17:25:07 +0000409 }
410
Evan Chengd26b14c2009-07-31 18:28:05 +0000411 // Thumb1 functions containing constant pools get 4-byte alignment.
Evan Chengd3d9d662009-07-23 18:27:47 +0000412 // This is so we can keep exact track of where the alignment padding goes.
413
Chris Lattner7d7dab02010-01-27 23:37:36 +0000414 // ARM and Thumb2 functions need to be 4-byte aligned.
415 if (!isThumb1)
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000416 MF->EnsureAlignment(2); // 2 = log2(4)
Dale Johannesen56c42ef2007-04-23 20:09:04 +0000417
Evan Chenga8e29892007-01-19 07:51:42 +0000418 // Perform the initial placement of the constant pool entries. To start with,
419 // we put them all at the end of the function.
Evan Chenge03cff62007-02-09 23:59:14 +0000420 std::vector<MachineInstr*> CPEMIs;
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +0000421 if (!MCP->isEmpty())
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000422 DoInitialPlacement(CPEMIs);
Bob Wilson84945262009-05-12 17:09:30 +0000423
Evan Chenga8e29892007-01-19 07:51:42 +0000424 /// The next UID to take is the first unused one.
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000425 AFI->initPICLabelUId(CPEMIs.size());
Bob Wilson84945262009-05-12 17:09:30 +0000426
Evan Chenga8e29892007-01-19 07:51:42 +0000427 // Do the initial scan of the function, building up information about the
428 // sizes of each block, the location of all the water, and finding all of the
429 // constant pool users.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000430 InitialFunctionScan(CPEMIs);
Evan Chenga8e29892007-01-19 07:51:42 +0000431 CPEMIs.clear();
Dale Johannesen8086d582010-07-23 22:50:23 +0000432 DEBUG(dumpBBs());
433
Bob Wilson84945262009-05-12 17:09:30 +0000434
Evan Chenged884f32007-04-03 23:39:48 +0000435 /// Remove dead constant pool entries.
Bill Wendlingcd080242010-12-18 01:53:06 +0000436 MadeChange |= RemoveUnusedCPEntries();
Evan Chenged884f32007-04-03 23:39:48 +0000437
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000438 // Iteratively place constant pool entries and fix up branches until there
439 // is no change.
Evan Chengb6879b22009-08-07 07:35:21 +0000440 unsigned NoCPIters = 0, NoBRIters = 0;
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000441 while (true) {
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +0000442 DEBUG(dbgs() << "Beginning CP iteration #" << NoCPIters << '\n');
Evan Chengb6879b22009-08-07 07:35:21 +0000443 bool CPChange = false;
Evan Chenga8e29892007-01-19 07:51:42 +0000444 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i)
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000445 CPChange |= HandleConstantPoolUser(i);
Evan Chengb6879b22009-08-07 07:35:21 +0000446 if (CPChange && ++NoCPIters > 30)
Jakob Stoklund Olesen169db152012-01-09 22:16:24 +0000447 report_fatal_error("Constant Island pass failed to converge!");
Evan Cheng82020102007-07-10 22:00:16 +0000448 DEBUG(dumpBBs());
Jim Grosbach26b8ef52010-07-07 21:06:51 +0000449
Bob Wilsonb9239532009-10-15 20:49:47 +0000450 // Clear NewWaterList now. If we split a block for branches, it should
451 // appear as "new water" for the next iteration of constant pool placement.
452 NewWaterList.clear();
Evan Chengb6879b22009-08-07 07:35:21 +0000453
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +0000454 DEBUG(dbgs() << "Beginning BR iteration #" << NoBRIters << '\n');
Evan Chengb6879b22009-08-07 07:35:21 +0000455 bool BRChange = false;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000456 for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i)
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000457 BRChange |= FixUpImmediateBr(ImmBranches[i]);
Evan Chengb6879b22009-08-07 07:35:21 +0000458 if (BRChange && ++NoBRIters > 30)
Jakob Stoklund Olesen169db152012-01-09 22:16:24 +0000459 report_fatal_error("Branch Fix Up pass failed to converge!");
Evan Cheng82020102007-07-10 22:00:16 +0000460 DEBUG(dumpBBs());
Evan Chengb6879b22009-08-07 07:35:21 +0000461
462 if (!CPChange && !BRChange)
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000463 break;
464 MadeChange = true;
465 }
Evan Chenged884f32007-04-03 23:39:48 +0000466
Evan Chenga1efbbd2009-08-14 00:32:16 +0000467 // Shrink 32-bit Thumb2 branch, load, and store instructions.
Evan Chenge44be632010-08-09 18:35:19 +0000468 if (isThumb2 && !STI->prefers32BitThumb())
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000469 MadeChange |= OptimizeThumb2Instructions();
Evan Cheng25f7cfc2009-08-01 06:13:52 +0000470
Dale Johannesen8593e412007-04-29 19:19:30 +0000471 // After a while, this might be made debug-only, but it is not expensive.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000472 verify();
Dale Johannesen8593e412007-04-29 19:19:30 +0000473
Jim Grosbach26b8ef52010-07-07 21:06:51 +0000474 // If LR has been forced spilled and no far jump (i.e. BL) has been issued,
475 // undo the spill / restore of LR if possible.
Evan Cheng5657c012009-07-29 02:18:14 +0000476 if (isThumb && !HasFarJump && AFI->isLRSpilledForFarJump())
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000477 MadeChange |= UndoLRSpillRestore();
478
Anton Korobeynikov98b928e2011-01-30 22:07:39 +0000479 // Save the mapping between original and cloned constpool entries.
480 for (unsigned i = 0, e = CPEntries.size(); i != e; ++i) {
481 for (unsigned j = 0, je = CPEntries[i].size(); j != je; ++j) {
482 const CPEntry & CPE = CPEntries[i][j];
483 AFI->recordCPEClone(i, CPE.CPI);
484 }
485 }
486
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +0000487 DEBUG(dbgs() << '\n'; dumpBBs());
Evan Chengb1c857b2010-07-22 02:09:47 +0000488
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000489 BBInfo.clear();
Evan Chenga8e29892007-01-19 07:51:42 +0000490 WaterList.clear();
491 CPUsers.clear();
Evan Chengc99ef082007-02-09 20:54:44 +0000492 CPEntries.clear();
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000493 ImmBranches.clear();
Evan Chengc99ef082007-02-09 20:54:44 +0000494 PushPopMIs.clear();
Evan Cheng5657c012009-07-29 02:18:14 +0000495 T2JumpTables.clear();
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000496
497 return MadeChange;
Evan Chenga8e29892007-01-19 07:51:42 +0000498}
499
500/// DoInitialPlacement - Perform the initial placement of the constant pool
501/// entries. To start with, we put them all at the end of the function.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000502void
503ARMConstantIslands::DoInitialPlacement(std::vector<MachineInstr*> &CPEMIs) {
Evan Chenga8e29892007-01-19 07:51:42 +0000504 // Create the basic block to hold the CPE's.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000505 MachineBasicBlock *BB = MF->CreateMachineBasicBlock();
506 MF->push_back(BB);
Bob Wilson84945262009-05-12 17:09:30 +0000507
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000508 // MachineConstantPool measures alignment in bytes. We measure in log2(bytes).
Jakob Stoklund Olesen5e46dcb2011-12-14 18:49:13 +0000509 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment());
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000510
511 // Mark the basic block as required by the const-pool.
512 // If AlignConstantIslands isn't set, use 4-byte alignment for everything.
513 BB->setAlignment(AlignConstantIslands ? MaxAlign : 2);
514
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +0000515 // The function needs to be as aligned as the basic blocks. The linker may
516 // move functions around based on their alignment.
517 MF->EnsureAlignment(BB->getAlignment());
518
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000519 // Order the entries in BB by descending alignment. That ensures correct
520 // alignment of all entries as long as BB is sufficiently aligned. Keep
521 // track of the insertion point for each alignment. We are going to bucket
522 // sort the entries as they are created.
523 SmallVector<MachineBasicBlock::iterator, 8> InsPoint(MaxAlign + 1, BB->end());
Jakob Stoklund Olesen3e572ac2011-12-06 01:43:02 +0000524
Evan Chenga8e29892007-01-19 07:51:42 +0000525 // Add all of the constants from the constant pool to the end block, use an
526 // identity mapping of CPI's to CPE's.
Jakob Stoklund Olesen5e46dcb2011-12-14 18:49:13 +0000527 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
Bob Wilson84945262009-05-12 17:09:30 +0000528
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000529 const TargetData &TD = *MF->getTarget().getTargetData();
Evan Chenga8e29892007-01-19 07:51:42 +0000530 for (unsigned i = 0, e = CPs.size(); i != e; ++i) {
Duncan Sands777d2302009-05-09 07:06:46 +0000531 unsigned Size = TD.getTypeAllocSize(CPs[i].getType());
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000532 assert(Size >= 4 && "Too small constant pool entry");
533 unsigned Align = CPs[i].getAlignment();
534 assert(isPowerOf2_32(Align) && "Invalid alignment");
535 // Verify that all constant pool entries are a multiple of their alignment.
536 // If not, we would have to pad them out so that instructions stay aligned.
537 assert((Size % Align) == 0 && "CP Entry not multiple of 4 bytes!");
538
539 // Insert CONSTPOOL_ENTRY before entries with a smaller alignment.
540 unsigned LogAlign = Log2_32(Align);
541 MachineBasicBlock::iterator InsAt = InsPoint[LogAlign];
Evan Chenga8e29892007-01-19 07:51:42 +0000542 MachineInstr *CPEMI =
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000543 BuildMI(*BB, InsAt, DebugLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000544 .addImm(i).addConstantPoolIndex(i).addImm(Size);
Evan Chenga8e29892007-01-19 07:51:42 +0000545 CPEMIs.push_back(CPEMI);
Evan Chengc99ef082007-02-09 20:54:44 +0000546
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000547 // Ensure that future entries with higher alignment get inserted before
548 // CPEMI. This is bucket sort with iterators.
Jakob Stoklund Olesenb076fb72011-12-16 23:00:05 +0000549 for (unsigned a = LogAlign + 1; a <= MaxAlign; ++a)
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000550 if (InsPoint[a] == InsAt)
551 InsPoint[a] = CPEMI;
552
Evan Chengc99ef082007-02-09 20:54:44 +0000553 // Add a new CPEntry, but no corresponding CPUser yet.
554 std::vector<CPEntry> CPEs;
555 CPEs.push_back(CPEntry(CPEMI, i));
556 CPEntries.push_back(CPEs);
Dan Gohmanfe601042010-06-22 15:08:57 +0000557 ++NumCPEs;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000558 DEBUG(dbgs() << "Moved CPI#" << i << " to end of function, size = "
559 << Size << ", align = " << Align <<'\n');
Evan Chenga8e29892007-01-19 07:51:42 +0000560 }
Jakob Stoklund Olesenb813f922011-12-12 16:49:37 +0000561 DEBUG(BB->dump());
Evan Chenga8e29892007-01-19 07:51:42 +0000562}
563
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000564/// BBHasFallthrough - Return true if the specified basic block can fallthrough
Evan Chenga8e29892007-01-19 07:51:42 +0000565/// into the block immediately after it.
566static bool BBHasFallthrough(MachineBasicBlock *MBB) {
567 // Get the next machine basic block in the function.
568 MachineFunction::iterator MBBI = MBB;
Jim Grosbach18f30e62010-06-02 21:53:11 +0000569 // Can't fall off end of function.
570 if (llvm::next(MBBI) == MBB->getParent()->end())
Evan Chenga8e29892007-01-19 07:51:42 +0000571 return false;
Bob Wilson84945262009-05-12 17:09:30 +0000572
Chris Lattner7896c9f2009-12-03 00:50:42 +0000573 MachineBasicBlock *NextBB = llvm::next(MBBI);
Evan Chenga8e29892007-01-19 07:51:42 +0000574 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
575 E = MBB->succ_end(); I != E; ++I)
576 if (*I == NextBB)
577 return true;
Bob Wilson84945262009-05-12 17:09:30 +0000578
Evan Chenga8e29892007-01-19 07:51:42 +0000579 return false;
580}
581
Evan Chengc99ef082007-02-09 20:54:44 +0000582/// findConstPoolEntry - Given the constpool index and CONSTPOOL_ENTRY MI,
583/// look up the corresponding CPEntry.
584ARMConstantIslands::CPEntry
585*ARMConstantIslands::findConstPoolEntry(unsigned CPI,
586 const MachineInstr *CPEMI) {
587 std::vector<CPEntry> &CPEs = CPEntries[CPI];
588 // Number of entries per constpool index should be small, just do a
589 // linear search.
590 for (unsigned i = 0, e = CPEs.size(); i != e; ++i) {
591 if (CPEs[i].CPEMI == CPEMI)
592 return &CPEs[i];
593 }
594 return NULL;
595}
596
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +0000597/// getCPELogAlign - Returns the required alignment of the constant pool entry
Jakob Stoklund Olesenbd1ec172011-12-12 19:25:51 +0000598/// represented by CPEMI. Alignment is measured in log2(bytes) units.
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +0000599unsigned ARMConstantIslands::getCPELogAlign(const MachineInstr *CPEMI) {
600 assert(CPEMI && CPEMI->getOpcode() == ARM::CONSTPOOL_ENTRY);
601
602 // Everything is 4-byte aligned unless AlignConstantIslands is set.
603 if (!AlignConstantIslands)
604 return 2;
605
606 unsigned CPI = CPEMI->getOperand(1).getIndex();
607 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
608 unsigned Align = MCP->getConstants()[CPI].getAlignment();
609 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
610 return Log2_32(Align);
611}
612
Jim Grosbach80697d12009-11-12 17:25:07 +0000613/// JumpTableFunctionScan - Do a scan of the function, building up
614/// information about the sizes of each block and the locations of all
615/// the jump tables.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000616void ARMConstantIslands::JumpTableFunctionScan() {
617 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
Jim Grosbach80697d12009-11-12 17:25:07 +0000618 MBBI != E; ++MBBI) {
619 MachineBasicBlock &MBB = *MBBI;
620
Jim Grosbach80697d12009-11-12 17:25:07 +0000621 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
Jim Grosbach08cbda52009-11-16 18:58:52 +0000622 I != E; ++I)
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000623 if (I->isBranch() && I->getOpcode() == ARM::t2BR_JT)
Jim Grosbach08cbda52009-11-16 18:58:52 +0000624 T2JumpTables.push_back(I);
Jim Grosbach80697d12009-11-12 17:25:07 +0000625 }
626}
627
Evan Chenga8e29892007-01-19 07:51:42 +0000628/// InitialFunctionScan - Do the initial scan of the function, building up
629/// information about the sizes of each block, the location of all the water,
630/// and finding all of the constant pool users.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000631void ARMConstantIslands::
632InitialFunctionScan(const std::vector<MachineInstr*> &CPEMIs) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000633 BBInfo.clear();
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000634 BBInfo.resize(MF->getNumBlockIDs());
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000635
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000636 // First thing, compute the size of all basic blocks, and see if the function
637 // has any inline assembly in it. If so, we have to be conservative about
638 // alignment assumptions, as we don't know for sure the size of any
639 // instructions in the inline assembly.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000640 for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I)
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000641 ComputeBlockSize(I);
642
643 // The known bits of the entry block offset are determined by the function
644 // alignment.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000645 BBInfo.front().KnownBits = MF->getAlignment();
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000646
647 // Compute block offsets and known bits.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000648 AdjustBBOffsetsAfter(MF->begin());
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000649
Bill Wendling9a4d2e42010-12-21 01:54:40 +0000650 // Now go back through the instructions and build up our data structures.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000651 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
Evan Chenga8e29892007-01-19 07:51:42 +0000652 MBBI != E; ++MBBI) {
653 MachineBasicBlock &MBB = *MBBI;
Bob Wilson84945262009-05-12 17:09:30 +0000654
Evan Chenga8e29892007-01-19 07:51:42 +0000655 // If this block doesn't fall through into the next MBB, then this is
656 // 'water' that a constant pool island could be placed.
657 if (!BBHasFallthrough(&MBB))
658 WaterList.push_back(&MBB);
Bob Wilson84945262009-05-12 17:09:30 +0000659
Evan Chenga8e29892007-01-19 07:51:42 +0000660 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
661 I != E; ++I) {
Jim Grosbach9cfcfeb2010-06-21 17:49:23 +0000662 if (I->isDebugValue())
663 continue;
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000664
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000665 int Opc = I->getOpcode();
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000666 if (I->isBranch()) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000667 bool isCond = false;
668 unsigned Bits = 0;
669 unsigned Scale = 1;
670 int UOpc = Opc;
671 switch (Opc) {
Evan Cheng5657c012009-07-29 02:18:14 +0000672 default:
673 continue; // Ignore other JT branches
Evan Cheng5657c012009-07-29 02:18:14 +0000674 case ARM::t2BR_JT:
675 T2JumpTables.push_back(I);
676 continue; // Does not get an entry in ImmBranches
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000677 case ARM::Bcc:
678 isCond = true;
679 UOpc = ARM::B;
680 // Fallthrough
681 case ARM::B:
682 Bits = 24;
683 Scale = 4;
684 break;
685 case ARM::tBcc:
686 isCond = true;
687 UOpc = ARM::tB;
688 Bits = 8;
689 Scale = 2;
690 break;
691 case ARM::tB:
692 Bits = 11;
693 Scale = 2;
694 break;
David Goodwin5e47a9a2009-06-30 18:04:13 +0000695 case ARM::t2Bcc:
696 isCond = true;
697 UOpc = ARM::t2B;
698 Bits = 20;
699 Scale = 2;
700 break;
701 case ARM::t2B:
702 Bits = 24;
703 Scale = 2;
704 break;
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000705 }
Evan Chengb43216e2007-02-01 10:16:15 +0000706
707 // Record this immediate branch.
Evan Chengbd5d3db2007-02-03 02:08:34 +0000708 unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
Evan Chengb43216e2007-02-01 10:16:15 +0000709 ImmBranches.push_back(ImmBranch(I, MaxOffs, isCond, UOpc));
Evan Chengaf5cbcb2007-01-25 03:12:46 +0000710 }
711
Evan Chengd1b2c1e2007-01-30 01:18:38 +0000712 if (Opc == ARM::tPUSH || Opc == ARM::tPOP_RET)
713 PushPopMIs.push_back(I);
714
Evan Chengd3d9d662009-07-23 18:27:47 +0000715 if (Opc == ARM::CONSTPOOL_ENTRY)
716 continue;
717
Evan Chenga8e29892007-01-19 07:51:42 +0000718 // Scan the instructions for constant pool operands.
719 for (unsigned op = 0, e = I->getNumOperands(); op != e; ++op)
Dan Gohmand735b802008-10-03 15:45:36 +0000720 if (I->getOperand(op).isCPI()) {
Evan Chenga8e29892007-01-19 07:51:42 +0000721 // We found one. The addressing mode tells us the max displacement
722 // from the PC that this instruction permits.
Bob Wilson84945262009-05-12 17:09:30 +0000723
Evan Chenga8e29892007-01-19 07:51:42 +0000724 // Basic size info comes from the TSFlags field.
Evan Chengb43216e2007-02-01 10:16:15 +0000725 unsigned Bits = 0;
726 unsigned Scale = 1;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000727 bool NegOk = false;
Evan Chengd3d9d662009-07-23 18:27:47 +0000728 bool IsSoImm = false;
729
730 switch (Opc) {
Bob Wilson84945262009-05-12 17:09:30 +0000731 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000732 llvm_unreachable("Unknown addressing mode for CP reference!");
Evan Chengd3d9d662009-07-23 18:27:47 +0000733
734 // Taking the address of a CP entry.
735 case ARM::LEApcrel:
736 // This takes a SoImm, which is 8 bit immediate rotated. We'll
737 // pretend the maximum offset is 255 * 4. Since each instruction
Jim Grosbachdec6de92009-11-19 18:23:19 +0000738 // 4 byte wide, this is always correct. We'll check for other
Evan Chengd3d9d662009-07-23 18:27:47 +0000739 // displacements that fits in a SoImm as well.
Evan Chengb43216e2007-02-01 10:16:15 +0000740 Bits = 8;
Evan Chengd3d9d662009-07-23 18:27:47 +0000741 Scale = 4;
742 NegOk = true;
743 IsSoImm = true;
744 break;
Owen Anderson6b8719f2010-12-13 22:51:08 +0000745 case ARM::t2LEApcrel:
Evan Chengd3d9d662009-07-23 18:27:47 +0000746 Bits = 12;
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000747 NegOk = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000748 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000749 case ARM::tLEApcrel:
750 Bits = 8;
751 Scale = 4;
752 break;
753
Jim Grosbach3e556122010-10-26 22:37:02 +0000754 case ARM::LDRi12:
Evan Chengd3d9d662009-07-23 18:27:47 +0000755 case ARM::LDRcp:
Owen Anderson971b83b2011-02-08 22:39:40 +0000756 case ARM::t2LDRpci:
Evan Cheng556f33c2007-02-01 20:44:52 +0000757 Bits = 12; // +-offset_12
Evan Cheng5d8f1ca2009-07-21 23:56:01 +0000758 NegOk = true;
Evan Chenga8e29892007-01-19 07:51:42 +0000759 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000760
761 case ARM::tLDRpci:
Evan Chengb43216e2007-02-01 10:16:15 +0000762 Bits = 8;
763 Scale = 4; // +(offset_8*4)
Evan Cheng012f2d92007-01-24 08:53:17 +0000764 break;
Evan Chengd3d9d662009-07-23 18:27:47 +0000765
Jim Grosbache5165492009-11-09 00:11:35 +0000766 case ARM::VLDRD:
767 case ARM::VLDRS:
Evan Chengd3d9d662009-07-23 18:27:47 +0000768 Bits = 8;
769 Scale = 4; // +-(offset_8*4)
770 NegOk = true;
Evan Cheng055b0312009-06-29 07:51:04 +0000771 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000772 }
Evan Chengb43216e2007-02-01 10:16:15 +0000773
Evan Chenga8e29892007-01-19 07:51:42 +0000774 // Remember that this is a user of a CP entry.
Chris Lattner8aa797a2007-12-30 23:10:15 +0000775 unsigned CPI = I->getOperand(op).getIndex();
Evan Chengc99ef082007-02-09 20:54:44 +0000776 MachineInstr *CPEMI = CPEMIs[CPI];
Evan Cheng31b99dd2009-08-14 18:31:44 +0000777 unsigned MaxOffs = ((1 << Bits)-1) * Scale;
Evan Chengd3d9d662009-07-23 18:27:47 +0000778 CPUsers.push_back(CPUser(I, CPEMI, MaxOffs, NegOk, IsSoImm));
Evan Chengc99ef082007-02-09 20:54:44 +0000779
780 // Increment corresponding CPEntry reference count.
781 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
782 assert(CPE && "Cannot find a corresponding CPEntry!");
783 CPE->RefCount++;
Bob Wilson84945262009-05-12 17:09:30 +0000784
Evan Chenga8e29892007-01-19 07:51:42 +0000785 // Instructions can only use one CP entry, don't bother scanning the
786 // rest of the operands.
787 break;
788 }
789 }
Evan Chenga8e29892007-01-19 07:51:42 +0000790 }
791}
792
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000793/// ComputeBlockSize - Compute the size and some alignment information for MBB.
794/// This function updates BBInfo directly.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000795void ARMConstantIslands::ComputeBlockSize(MachineBasicBlock *MBB) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000796 BasicBlockInfo &BBI = BBInfo[MBB->getNumber()];
797 BBI.Size = 0;
798 BBI.Unalign = 0;
799 BBI.PostAlign = 0;
800
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000801 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E;
802 ++I) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000803 BBI.Size += TII->GetInstSizeInBytes(I);
804 // For inline asm, GetInstSizeInBytes returns a conservative estimate.
805 // The actual size may be smaller, but still a multiple of the instr size.
Jakob Stoklund Olesene6f9e9d2011-12-08 01:22:39 +0000806 if (I->isInlineAsm())
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000807 BBI.Unalign = isThumb ? 1 : 2;
Jakob Stoklund Olesen19d0bf32012-01-10 22:32:14 +0000808 // Also consider instructions that may be shrunk later.
809 else if (isThumb && mayOptimizeThumb2Instruction(I))
810 BBI.Unalign = 1;
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000811 }
812
813 // tBR_JTr contains a .align 2 directive.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000814 if (!MBB->empty() && MBB->back().getOpcode() == ARM::tBR_JTr) {
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000815 BBI.PostAlign = 2;
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000816 MBB->getParent()->EnsureAlignment(2);
817 }
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000818}
819
Evan Chenga8e29892007-01-19 07:51:42 +0000820/// GetOffsetOf - Return the current offset of the specified machine instruction
821/// from the start of the function. This offset changes as stuff is moved
822/// around inside the function.
823unsigned ARMConstantIslands::GetOffsetOf(MachineInstr *MI) const {
824 MachineBasicBlock *MBB = MI->getParent();
Bob Wilson84945262009-05-12 17:09:30 +0000825
Evan Chenga8e29892007-01-19 07:51:42 +0000826 // The offset is composed of two things: the sum of the sizes of all MBB's
827 // before this instruction's block, and the offset from the start of the block
828 // it is in.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000829 unsigned Offset = BBInfo[MBB->getNumber()].Offset;
Evan Chenga8e29892007-01-19 07:51:42 +0000830
831 // Sum instructions before MI in MBB.
Jim Grosbach0c3cfef2012-01-31 20:56:55 +0000832 for (MachineBasicBlock::iterator I = MBB->begin(); &*I != MI; ++I) {
Evan Chenga8e29892007-01-19 07:51:42 +0000833 assert(I != MBB->end() && "Didn't find MI in its own basic block?");
Nicolas Geoffray52e724a2008-04-16 20:10:13 +0000834 Offset += TII->GetInstSizeInBytes(I);
Evan Chenga8e29892007-01-19 07:51:42 +0000835 }
Jim Grosbach0c3cfef2012-01-31 20:56:55 +0000836 return Offset;
Evan Chenga8e29892007-01-19 07:51:42 +0000837}
838
839/// CompareMBBNumbers - Little predicate function to sort the WaterList by MBB
840/// ID.
841static bool CompareMBBNumbers(const MachineBasicBlock *LHS,
842 const MachineBasicBlock *RHS) {
843 return LHS->getNumber() < RHS->getNumber();
844}
845
846/// UpdateForInsertedWaterBlock - When a block is newly inserted into the
847/// machine function, it upsets all of the block numbers. Renumber the blocks
848/// and update the arrays that parallel this numbering.
849void ARMConstantIslands::UpdateForInsertedWaterBlock(MachineBasicBlock *NewBB) {
Duncan Sandsab4c3662011-02-15 09:23:02 +0000850 // Renumber the MBB's to keep them consecutive.
Evan Chenga8e29892007-01-19 07:51:42 +0000851 NewBB->getParent()->RenumberBlocks(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000852
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000853 // Insert an entry into BBInfo to align it properly with the (newly
Evan Chenga8e29892007-01-19 07:51:42 +0000854 // renumbered) block numbers.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000855 BBInfo.insert(BBInfo.begin() + NewBB->getNumber(), BasicBlockInfo());
Bob Wilson84945262009-05-12 17:09:30 +0000856
857 // Next, update WaterList. Specifically, we need to add NewMBB as having
Evan Chenga8e29892007-01-19 07:51:42 +0000858 // available water after it.
Bob Wilson034de5f2009-10-12 18:52:13 +0000859 water_iterator IP =
Evan Chenga8e29892007-01-19 07:51:42 +0000860 std::lower_bound(WaterList.begin(), WaterList.end(), NewBB,
861 CompareMBBNumbers);
862 WaterList.insert(IP, NewBB);
863}
864
865
866/// Split the basic block containing MI into two blocks, which are joined by
Bob Wilsonb9239532009-10-15 20:49:47 +0000867/// an unconditional branch. Update data structures and renumber blocks to
Evan Cheng0c615842007-01-31 02:22:22 +0000868/// account for this change and returns the newly created block.
869MachineBasicBlock *ARMConstantIslands::SplitBlockBeforeInstr(MachineInstr *MI) {
Evan Chenga8e29892007-01-19 07:51:42 +0000870 MachineBasicBlock *OrigBB = MI->getParent();
871
872 // Create a new MBB for the code after the OrigBB.
Bob Wilson84945262009-05-12 17:09:30 +0000873 MachineBasicBlock *NewBB =
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000874 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock());
Evan Chenga8e29892007-01-19 07:51:42 +0000875 MachineFunction::iterator MBBI = OrigBB; ++MBBI;
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000876 MF->insert(MBBI, NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000877
Evan Chenga8e29892007-01-19 07:51:42 +0000878 // Splice the instructions starting with MI over to NewBB.
879 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
Bob Wilson84945262009-05-12 17:09:30 +0000880
Evan Chenga8e29892007-01-19 07:51:42 +0000881 // Add an unconditional branch from OrigBB to NewBB.
Evan Chenga9b8b8d2007-01-31 18:29:27 +0000882 // Note the new unconditional branch is not being recorded.
Dale Johannesenb6728402009-02-13 02:25:56 +0000883 // There doesn't seem to be meaningful DebugInfo available; this doesn't
884 // correspond to anything in the source.
Evan Cheng58541fd2009-07-07 01:16:41 +0000885 unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B;
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000886 if (!isThumb)
887 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB);
888 else
889 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB)
890 .addImm(ARMCC::AL).addReg(0);
Dan Gohmanfe601042010-06-22 15:08:57 +0000891 ++NumSplit;
Bob Wilson84945262009-05-12 17:09:30 +0000892
Evan Chenga8e29892007-01-19 07:51:42 +0000893 // Update the CFG. All succs of OrigBB are now succs of NewBB.
Jakob Stoklund Olesene80fba02011-12-06 00:51:12 +0000894 NewBB->transferSuccessors(OrigBB);
Bob Wilson84945262009-05-12 17:09:30 +0000895
Evan Chenga8e29892007-01-19 07:51:42 +0000896 // OrigBB branches to NewBB.
897 OrigBB->addSuccessor(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000898
Evan Chenga8e29892007-01-19 07:51:42 +0000899 // Update internal data structures to account for the newly inserted MBB.
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000900 // This is almost the same as UpdateForInsertedWaterBlock, except that
901 // the Water goes after OrigBB, not NewBB.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +0000902 MF->RenumberBlocks(NewBB);
Bob Wilson84945262009-05-12 17:09:30 +0000903
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000904 // Insert an entry into BBInfo to align it properly with the (newly
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000905 // renumbered) block numbers.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +0000906 BBInfo.insert(BBInfo.begin() + NewBB->getNumber(), BasicBlockInfo());
Dale Johannesen99c49a42007-02-25 00:47:03 +0000907
Bob Wilson84945262009-05-12 17:09:30 +0000908 // Next, update WaterList. Specifically, we need to add OrigMBB as having
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000909 // available water after it (but not if it's already there, which happens
910 // when splitting before a conditional branch that is followed by an
911 // unconditional branch - in that case we want to insert NewBB).
Bob Wilson034de5f2009-10-12 18:52:13 +0000912 water_iterator IP =
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000913 std::lower_bound(WaterList.begin(), WaterList.end(), OrigBB,
914 CompareMBBNumbers);
915 MachineBasicBlock* WaterBB = *IP;
916 if (WaterBB == OrigBB)
Chris Lattner7896c9f2009-12-03 00:50:42 +0000917 WaterList.insert(llvm::next(IP), NewBB);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000918 else
919 WaterList.insert(IP, OrigBB);
Bob Wilsonb9239532009-10-15 20:49:47 +0000920 NewWaterList.insert(OrigBB);
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000921
Dale Johannesen8086d582010-07-23 22:50:23 +0000922 // Figure out how large the OrigBB is. As the first half of the original
923 // block, it cannot contain a tablejump. The size includes
924 // the new jump we added. (It should be possible to do this without
925 // recounting everything, but it's very confusing, and this is rarely
926 // executed.)
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000927 ComputeBlockSize(OrigBB);
Dale Johannesen99c49a42007-02-25 00:47:03 +0000928
Dale Johannesen8086d582010-07-23 22:50:23 +0000929 // Figure out how large the NewMBB is. As the second half of the original
930 // block, it may contain a tablejump.
Jakob Stoklund Olesena26811e2011-12-07 04:17:35 +0000931 ComputeBlockSize(NewBB);
Dale Johannesen8086d582010-07-23 22:50:23 +0000932
Dale Johannesen99c49a42007-02-25 00:47:03 +0000933 // All BBOffsets following these blocks must be modified.
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +0000934 AdjustBBOffsetsAfter(OrigBB);
Evan Cheng0c615842007-01-31 02:22:22 +0000935
936 return NewBB;
Evan Chenga8e29892007-01-19 07:51:42 +0000937}
938
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000939/// GetUserOffset - Compute the offset of U.MI as seen by the hardware
940/// displacement computation. Update U.KnownAlignment to match its current
941/// basic block location.
942unsigned ARMConstantIslands::GetUserOffset(CPUser &U) const {
943 unsigned UserOffset = GetOffsetOf(U.MI);
944 const BasicBlockInfo &BBI = BBInfo[U.MI->getParent()->getNumber()];
945 unsigned KnownBits = BBI.internalKnownBits();
946
947 // The value read from PC is offset from the actual instruction address.
948 UserOffset += (isThumb ? 4 : 8);
949
950 // Because of inline assembly, we may not know the alignment (mod 4) of U.MI.
951 // Make sure U.getMaxDisp() returns a constrained range.
952 U.KnownAlignment = (KnownBits >= 2);
953
954 // On Thumb, offsets==2 mod 4 are rounded down by the hardware for
955 // purposes of the displacement computation; compensate for that here.
956 // For unknown alignments, getMaxDisp() constrains the range instead.
957 if (isThumb && U.KnownAlignment)
958 UserOffset &= ~3u;
959
960 return UserOffset;
961}
962
Dale Johannesen8593e412007-04-29 19:19:30 +0000963/// OffsetIsInRange - Checks whether UserOffset (the location of a constant pool
Bob Wilson84945262009-05-12 17:09:30 +0000964/// reference) is within MaxDisp of TrialOffset (a proposed location of a
Dale Johannesen8593e412007-04-29 19:19:30 +0000965/// constant pool entry).
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +0000966/// UserOffset is computed by GetUserOffset above to include PC adjustments. If
967/// the mod 4 alignment of UserOffset is not known, the uncertainty must be
968/// subtracted from MaxDisp instead. CPUser::getMaxDisp() does that.
Bob Wilson84945262009-05-12 17:09:30 +0000969bool ARMConstantIslands::OffsetIsInRange(unsigned UserOffset,
Evan Chengd3d9d662009-07-23 18:27:47 +0000970 unsigned TrialOffset, unsigned MaxDisp,
971 bool NegativeOK, bool IsSoImm) {
Dale Johannesen99c49a42007-02-25 00:47:03 +0000972 if (UserOffset <= TrialOffset) {
973 // User before the Trial.
Evan Chengd3d9d662009-07-23 18:27:47 +0000974 if (TrialOffset - UserOffset <= MaxDisp)
975 return true;
Evan Cheng40efc252009-07-24 19:31:03 +0000976 // FIXME: Make use full range of soimm values.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000977 } else if (NegativeOK) {
Evan Chengd3d9d662009-07-23 18:27:47 +0000978 if (UserOffset - TrialOffset <= MaxDisp)
979 return true;
Evan Cheng40efc252009-07-24 19:31:03 +0000980 // FIXME: Make use full range of soimm values.
Dale Johannesen99c49a42007-02-25 00:47:03 +0000981 }
982 return false;
983}
984
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000985/// WaterIsInRange - Returns true if a CPE placed after the specified
986/// Water (a basic block) will be in range for the specific MI.
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +0000987///
988/// Compute how much the function will grow by inserting a CPE after Water.
Dale Johannesen88e37ae2007-02-23 05:02:36 +0000989bool ARMConstantIslands::WaterIsInRange(unsigned UserOffset,
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +0000990 MachineBasicBlock* Water, CPUser &U,
991 unsigned &Growth) {
992 unsigned CPELogAlign = getCPELogAlign(U.CPEMI);
993 unsigned CPEOffset = BBInfo[Water->getNumber()].postOffset(CPELogAlign);
994 unsigned NextBlockOffset, NextBlockAlignment;
995 MachineFunction::const_iterator NextBlock = Water;
996 if (++NextBlock == MF->end()) {
997 NextBlockOffset = BBInfo[Water->getNumber()].postOffset();
998 NextBlockAlignment = 0;
999 } else {
1000 NextBlockOffset = BBInfo[NextBlock->getNumber()].Offset;
1001 NextBlockAlignment = NextBlock->getAlignment();
1002 }
1003 unsigned Size = U.CPEMI->getOperand(2).getImm();
1004 unsigned CPEEnd = CPEOffset + Size;
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001005
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +00001006 // The CPE may be able to hide in the alignment padding before the next
1007 // block. It may also cause more padding to be required if it is more aligned
1008 // that the next block.
1009 if (CPEEnd > NextBlockOffset) {
1010 Growth = CPEEnd - NextBlockOffset;
1011 // Compute the padding that would go at the end of the CPE to align the next
1012 // block.
1013 Growth += OffsetToAlignment(CPEEnd, 1u << NextBlockAlignment);
1014
1015 // If the CPE is to be inserted before the instruction, that will raise
1016 // the offset of the instruction. Also account for unknown alignment padding
1017 // in blocks between CPE and the user.
1018 if (CPEOffset < UserOffset)
1019 UserOffset += Growth + UnknownPadding(MF->getAlignment(), CPELogAlign);
1020 } else
1021 // CPE fits in existing padding.
1022 Growth = 0;
Dale Johannesend959aa42007-04-02 20:31:06 +00001023
Jakob Stoklund Olesen493ad6b2011-12-09 19:44:39 +00001024 return OffsetIsInRange(UserOffset, CPEOffset, U);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001025}
1026
1027/// CPEIsInRange - Returns true if the distance between specific MI and
Evan Chengc0dbec72007-01-31 19:57:44 +00001028/// specific ConstPool entry instruction can fit in MI's displacement field.
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001029bool ARMConstantIslands::CPEIsInRange(MachineInstr *MI, unsigned UserOffset,
Evan Cheng5d8f1ca2009-07-21 23:56:01 +00001030 MachineInstr *CPEMI, unsigned MaxDisp,
1031 bool NegOk, bool DoDump) {
Dale Johannesen8593e412007-04-29 19:19:30 +00001032 unsigned CPEOffset = GetOffsetOf(CPEMI);
Jakob Stoklund Olesene6f9e9d2011-12-08 01:22:39 +00001033 assert(CPEOffset % 4 == 0 && "Misaligned CPE");
Evan Cheng2021abe2007-02-01 01:09:47 +00001034
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001035 if (DoDump) {
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001036 DEBUG({
1037 unsigned Block = MI->getParent()->getNumber();
1038 const BasicBlockInfo &BBI = BBInfo[Block];
1039 dbgs() << "User of CPE#" << CPEMI->getOperand(0).getImm()
1040 << " max delta=" << MaxDisp
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +00001041 << format(" insn address=%#x", UserOffset)
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001042 << " in BB#" << Block << ": "
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +00001043 << format("%#x-%x\t", BBI.Offset, BBI.postOffset()) << *MI
1044 << format("CPE address=%#x offset=%+d: ", CPEOffset,
1045 int(CPEOffset-UserOffset));
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001046 });
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001047 }
Evan Chengc0dbec72007-01-31 19:57:44 +00001048
Evan Cheng5d8f1ca2009-07-21 23:56:01 +00001049 return OffsetIsInRange(UserOffset, CPEOffset, MaxDisp, NegOk);
Evan Chengc0dbec72007-01-31 19:57:44 +00001050}
1051
Evan Chengd1e7d9a2009-01-28 00:53:34 +00001052#ifndef NDEBUG
Evan Chengc99ef082007-02-09 20:54:44 +00001053/// BBIsJumpedOver - Return true of the specified basic block's only predecessor
1054/// unconditionally branches to its only successor.
1055static bool BBIsJumpedOver(MachineBasicBlock *MBB) {
1056 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
1057 return false;
1058
1059 MachineBasicBlock *Succ = *MBB->succ_begin();
1060 MachineBasicBlock *Pred = *MBB->pred_begin();
1061 MachineInstr *PredMI = &Pred->back();
David Goodwin5e47a9a2009-06-30 18:04:13 +00001062 if (PredMI->getOpcode() == ARM::B || PredMI->getOpcode() == ARM::tB
1063 || PredMI->getOpcode() == ARM::t2B)
Evan Chengc99ef082007-02-09 20:54:44 +00001064 return PredMI->getOperand(0).getMBB() == Succ;
1065 return false;
1066}
Evan Chengd1e7d9a2009-01-28 00:53:34 +00001067#endif // NDEBUG
Evan Chengc99ef082007-02-09 20:54:44 +00001068
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001069void ARMConstantIslands::AdjustBBOffsetsAfter(MachineBasicBlock *BB) {
Jakob Stoklund Olesen59ecaae2012-01-06 21:40:15 +00001070 unsigned BBNum = BB->getNumber();
1071 for(unsigned i = BBNum + 1, e = MF->getNumBlockIDs(); i < e; ++i) {
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +00001072 // Get the offset and known bits at the end of the layout predecessor.
Jakob Stoklund Olesen85528212011-12-12 19:25:54 +00001073 // Include the alignment of the current block.
1074 unsigned LogAlign = MF->getBlockNumbered(i)->getAlignment();
1075 unsigned Offset = BBInfo[i - 1].postOffset(LogAlign);
1076 unsigned KnownBits = BBInfo[i - 1].postKnownBits(LogAlign);
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +00001077
Jakob Stoklund Olesen59ecaae2012-01-06 21:40:15 +00001078 // This is where block i begins. Stop if the offset is already correct,
1079 // and we have updated 2 blocks. This is the maximum number of blocks
1080 // changed before calling this function.
1081 if (i > BBNum + 2 &&
1082 BBInfo[i].Offset == Offset &&
1083 BBInfo[i].KnownBits == KnownBits)
1084 break;
1085
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +00001086 BBInfo[i].Offset = Offset;
1087 BBInfo[i].KnownBits = KnownBits;
Dale Johannesen8593e412007-04-29 19:19:30 +00001088 }
Dale Johannesen99c49a42007-02-25 00:47:03 +00001089}
1090
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001091/// DecrementOldEntry - find the constant pool entry with index CPI
1092/// and instruction CPEMI, and decrement its refcount. If the refcount
Bob Wilson84945262009-05-12 17:09:30 +00001093/// becomes 0 remove the entry and instruction. Returns true if we removed
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001094/// the entry, false if we didn't.
Evan Chenga8e29892007-01-19 07:51:42 +00001095
Evan Chenged884f32007-04-03 23:39:48 +00001096bool ARMConstantIslands::DecrementOldEntry(unsigned CPI, MachineInstr *CPEMI) {
Evan Chengc99ef082007-02-09 20:54:44 +00001097 // Find the old entry. Eliminate it if it is no longer used.
Evan Chenged884f32007-04-03 23:39:48 +00001098 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
1099 assert(CPE && "Unexpected!");
1100 if (--CPE->RefCount == 0) {
1101 RemoveDeadCPEMI(CPEMI);
1102 CPE->CPEMI = NULL;
Dan Gohmanfe601042010-06-22 15:08:57 +00001103 --NumCPEs;
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001104 return true;
1105 }
1106 return false;
1107}
1108
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001109/// LookForCPEntryInRange - see if the currently referenced CPE is in range;
1110/// if not, see if an in-range clone of the CPE is in range, and if so,
1111/// change the data structures so the user references the clone. Returns:
1112/// 0 = no existing entry found
1113/// 1 = entry found, and there were no code insertions or deletions
1114/// 2 = entry found, and there were code insertions or deletions
1115int ARMConstantIslands::LookForExistingCPEntry(CPUser& U, unsigned UserOffset)
1116{
1117 MachineInstr *UserMI = U.MI;
1118 MachineInstr *CPEMI = U.CPEMI;
1119
1120 // Check to see if the CPE is already in-range.
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001121 if (CPEIsInRange(UserMI, UserOffset, CPEMI, U.getMaxDisp(), U.NegOk, true)) {
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001122 DEBUG(dbgs() << "In range\n");
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001123 return 1;
Evan Chengc99ef082007-02-09 20:54:44 +00001124 }
1125
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001126 // No. Look for previously created clones of the CPE that are in range.
Chris Lattner8aa797a2007-12-30 23:10:15 +00001127 unsigned CPI = CPEMI->getOperand(1).getIndex();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001128 std::vector<CPEntry> &CPEs = CPEntries[CPI];
1129 for (unsigned i = 0, e = CPEs.size(); i != e; ++i) {
1130 // We already tried this one
1131 if (CPEs[i].CPEMI == CPEMI)
1132 continue;
1133 // Removing CPEs can leave empty entries, skip
1134 if (CPEs[i].CPEMI == NULL)
1135 continue;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001136 if (CPEIsInRange(UserMI, UserOffset, CPEs[i].CPEMI, U.getMaxDisp(),
1137 U.NegOk)) {
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001138 DEBUG(dbgs() << "Replacing CPE#" << CPI << " with CPE#"
Chris Lattner893e1c92009-08-23 06:49:22 +00001139 << CPEs[i].CPI << "\n");
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001140 // Point the CPUser node to the replacement
1141 U.CPEMI = CPEs[i].CPEMI;
1142 // Change the CPI in the instruction operand to refer to the clone.
1143 for (unsigned j = 0, e = UserMI->getNumOperands(); j != e; ++j)
Dan Gohmand735b802008-10-03 15:45:36 +00001144 if (UserMI->getOperand(j).isCPI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +00001145 UserMI->getOperand(j).setIndex(CPEs[i].CPI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001146 break;
1147 }
1148 // Adjust the refcount of the clone...
1149 CPEs[i].RefCount++;
1150 // ...and the original. If we didn't remove the old entry, none of the
1151 // addresses changed, so we don't need another pass.
Evan Chenged884f32007-04-03 23:39:48 +00001152 return DecrementOldEntry(CPI, CPEMI) ? 2 : 1;
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001153 }
1154 }
1155 return 0;
1156}
1157
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001158/// getUnconditionalBrDisp - Returns the maximum displacement that can fit in
1159/// the specific unconditional branch instruction.
1160static inline unsigned getUnconditionalBrDisp(int Opc) {
David Goodwin5e47a9a2009-06-30 18:04:13 +00001161 switch (Opc) {
1162 case ARM::tB:
1163 return ((1<<10)-1)*2;
1164 case ARM::t2B:
1165 return ((1<<23)-1)*2;
1166 default:
1167 break;
1168 }
Jim Grosbach764ab522009-08-11 15:33:49 +00001169
David Goodwin5e47a9a2009-06-30 18:04:13 +00001170 return ((1<<23)-1)*4;
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001171}
1172
Bob Wilsonb9239532009-10-15 20:49:47 +00001173/// LookForWater - Look for an existing entry in the WaterList in which
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001174/// we can place the CPE referenced from U so it's within range of U's MI.
Bob Wilsonb9239532009-10-15 20:49:47 +00001175/// Returns true if found, false if not. If it returns true, WaterIter
Bob Wilsonf98032e2009-10-12 21:23:15 +00001176/// is set to the WaterList entry. For Thumb, prefer water that will not
1177/// introduce padding to water that will. To ensure that this pass
1178/// terminates, the CPE location for a particular CPUser is only allowed to
1179/// move to a lower address, so search backward from the end of the list and
1180/// prefer the first water that is in range.
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001181bool ARMConstantIslands::LookForWater(CPUser &U, unsigned UserOffset,
Bob Wilsonb9239532009-10-15 20:49:47 +00001182 water_iterator &WaterIter) {
Bob Wilson3b757352009-10-12 19:04:03 +00001183 if (WaterList.empty())
1184 return false;
1185
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +00001186 unsigned BestGrowth = ~0u;
1187 for (water_iterator IP = prior(WaterList.end()), B = WaterList.begin();;
1188 --IP) {
Bob Wilson3b757352009-10-12 19:04:03 +00001189 MachineBasicBlock* WaterBB = *IP;
Bob Wilsonb9239532009-10-15 20:49:47 +00001190 // Check if water is in range and is either at a lower address than the
1191 // current "high water mark" or a new water block that was created since
1192 // the previous iteration by inserting an unconditional branch. In the
1193 // latter case, we want to allow resetting the high water mark back to
1194 // this new water since we haven't seen it before. Inserting branches
1195 // should be relatively uncommon and when it does happen, we want to be
1196 // sure to take advantage of it for all the CPEs near that block, so that
1197 // we don't insert more branches than necessary.
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +00001198 unsigned Growth;
1199 if (WaterIsInRange(UserOffset, WaterBB, U, Growth) &&
Bob Wilsonb9239532009-10-15 20:49:47 +00001200 (WaterBB->getNumber() < U.HighWaterMark->getNumber() ||
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +00001201 NewWaterList.count(WaterBB)) && Growth < BestGrowth) {
1202 // This is the least amount of required padding seen so far.
1203 BestGrowth = Growth;
1204 WaterIter = IP;
1205 DEBUG(dbgs() << "Found water after BB#" << WaterBB->getNumber()
1206 << " Growth=" << Growth << '\n');
1207
1208 // Keep looking unless it is perfect.
1209 if (BestGrowth == 0)
Bob Wilson3b757352009-10-12 19:04:03 +00001210 return true;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001211 }
Bob Wilson3b757352009-10-12 19:04:03 +00001212 if (IP == B)
1213 break;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001214 }
Jakob Stoklund Olesen2e290242011-12-13 00:44:30 +00001215 return BestGrowth != ~0u;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001216}
1217
Bob Wilson84945262009-05-12 17:09:30 +00001218/// CreateNewWater - No existing WaterList entry will work for
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001219/// CPUsers[CPUserIndex], so create a place to put the CPE. The end of the
1220/// block is used if in range, and the conditional branch munged so control
1221/// flow is correct. Otherwise the block is split to create a hole with an
Bob Wilson757652c2009-10-12 21:39:43 +00001222/// unconditional branch around it. In either case NewMBB is set to a
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001223/// block following which the new island can be inserted (the WaterList
1224/// is not adjusted).
Bob Wilson84945262009-05-12 17:09:30 +00001225void ARMConstantIslands::CreateNewWater(unsigned CPUserIndex,
Bob Wilson757652c2009-10-12 21:39:43 +00001226 unsigned UserOffset,
1227 MachineBasicBlock *&NewMBB) {
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001228 CPUser &U = CPUsers[CPUserIndex];
1229 MachineInstr *UserMI = U.MI;
1230 MachineInstr *CPEMI = U.CPEMI;
Jakob Stoklund Olesen299b0592011-12-14 23:48:54 +00001231 unsigned CPELogAlign = getCPELogAlign(CPEMI);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001232 MachineBasicBlock *UserMBB = UserMI->getParent();
Jakob Stoklund Olesen77caaf02011-12-10 02:55:10 +00001233 const BasicBlockInfo &UserBBI = BBInfo[UserMBB->getNumber()];
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001234
Bob Wilson36fa5322009-10-15 05:10:36 +00001235 // If the block does not end in an unconditional branch already, and if the
1236 // end of the block is within range, make new water there. (The addition
1237 // below is for the unconditional branch we will be adding: 4 bytes on ARM +
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001238 // Thumb2, 2 on Thumb1.
Jakob Stoklund Olesen299b0592011-12-14 23:48:54 +00001239 if (BBHasFallthrough(UserMBB)) {
1240 // Size of branch to insert.
1241 unsigned Delta = isThumb1 ? 2 : 4;
1242 // End of UserBlock after adding a branch.
1243 unsigned UserBlockEnd = UserBBI.postOffset() + Delta;
1244 // Compute the offset where the CPE will begin.
1245 unsigned CPEOffset = WorstCaseAlign(UserBlockEnd, CPELogAlign,
1246 UserBBI.postKnownBits());
Dale Johannesen8593e412007-04-29 19:19:30 +00001247
Jakob Stoklund Olesen299b0592011-12-14 23:48:54 +00001248 if (OffsetIsInRange(UserOffset, CPEOffset, U)) {
1249 DEBUG(dbgs() << "Split at end of BB#" << UserMBB->getNumber()
1250 << format(", expected CPE offset %#x\n", CPEOffset));
1251 NewMBB = llvm::next(MachineFunction::iterator(UserMBB));
1252 // Add an unconditional branch from UserMBB to fallthrough block. Record
1253 // it for branch lengthening; this new branch will not get out of range,
1254 // but if the preceding conditional branch is out of range, the targets
1255 // will be exchanged, and the altered branch may be out of range, so the
1256 // machinery has to know about it.
1257 int UncondBr = isThumb ? ((isThumb2) ? ARM::t2B : ARM::tB) : ARM::B;
1258 if (!isThumb)
1259 BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr)).addMBB(NewMBB);
1260 else
1261 BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr)).addMBB(NewMBB)
1262 .addImm(ARMCC::AL).addReg(0);
1263 unsigned MaxDisp = getUnconditionalBrDisp(UncondBr);
1264 ImmBranches.push_back(ImmBranch(&UserMBB->back(),
1265 MaxDisp, false, UncondBr));
1266 BBInfo[UserMBB->getNumber()].Size += Delta;
1267 AdjustBBOffsetsAfter(UserMBB);
1268 return;
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001269 }
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001270 }
Jakob Stoklund Olesen299b0592011-12-14 23:48:54 +00001271
1272 // What a big block. Find a place within the block to split it. This is a
1273 // little tricky on Thumb1 since instructions are 2 bytes and constant pool
1274 // entries are 4 bytes: if instruction I references island CPE, and
1275 // instruction I+1 references CPE', it will not work well to put CPE as far
1276 // forward as possible, since then CPE' cannot immediately follow it (that
1277 // location is 2 bytes farther away from I+1 than CPE was from I) and we'd
1278 // need to create a new island. So, we make a first guess, then walk through
1279 // the instructions between the one currently being looked at and the
1280 // possible insertion point, and make sure any other instructions that
1281 // reference CPEs will be able to use the same island area; if not, we back
1282 // up the insertion point.
1283
1284 // Try to split the block so it's fully aligned. Compute the latest split
1285 // point where we can add a 4-byte branch instruction, and then
1286 // WorstCaseAlign to LogAlign.
1287 unsigned LogAlign = MF->getAlignment();
1288 assert(LogAlign >= CPELogAlign && "Over-aligned constant pool entry");
1289 unsigned KnownBits = UserBBI.internalKnownBits();
1290 unsigned UPad = UnknownPadding(LogAlign, KnownBits);
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001291 unsigned BaseInsertOffset = UserOffset + U.getMaxDisp();
Jakob Stoklund Olesen299b0592011-12-14 23:48:54 +00001292 DEBUG(dbgs() << format("Split in middle of big block before %#x",
1293 BaseInsertOffset));
1294
1295 // Account for alignment and unknown padding.
1296 BaseInsertOffset &= ~((1u << LogAlign) - 1);
1297 BaseInsertOffset -= UPad;
1298
1299 // The 4 in the following is for the unconditional branch we'll be inserting
1300 // (allows for long branch on Thumb1). Alignment of the island is handled
1301 // inside OffsetIsInRange.
1302 BaseInsertOffset -= 4;
1303
1304 DEBUG(dbgs() << format(", adjusted to %#x", BaseInsertOffset)
1305 << " la=" << LogAlign
1306 << " kb=" << KnownBits
1307 << " up=" << UPad << '\n');
1308
1309 // This could point off the end of the block if we've already got constant
1310 // pool entries following this block; only the last one is in the water list.
1311 // Back past any possible branches (allow for a conditional and a maximally
1312 // long unconditional).
1313 if (BaseInsertOffset >= BBInfo[UserMBB->getNumber()+1].Offset)
1314 BaseInsertOffset = BBInfo[UserMBB->getNumber()+1].Offset -
1315 (isThumb1 ? 6 : 8);
1316 unsigned EndInsertOffset =
1317 WorstCaseAlign(BaseInsertOffset + 4, LogAlign, KnownBits) +
1318 CPEMI->getOperand(2).getImm();
1319 MachineBasicBlock::iterator MI = UserMI;
1320 ++MI;
1321 unsigned CPUIndex = CPUserIndex+1;
1322 unsigned NumCPUsers = CPUsers.size();
1323 MachineInstr *LastIT = 0;
1324 for (unsigned Offset = UserOffset+TII->GetInstSizeInBytes(UserMI);
1325 Offset < BaseInsertOffset;
1326 Offset += TII->GetInstSizeInBytes(MI),
1327 MI = llvm::next(MI)) {
1328 if (CPUIndex < NumCPUsers && CPUsers[CPUIndex].MI == MI) {
1329 CPUser &U = CPUsers[CPUIndex];
1330 if (!OffsetIsInRange(Offset, EndInsertOffset, U)) {
1331 // Shift intertion point by one unit of alignment so it is within reach.
1332 BaseInsertOffset -= 1u << LogAlign;
1333 EndInsertOffset -= 1u << LogAlign;
1334 }
1335 // This is overly conservative, as we don't account for CPEMIs being
1336 // reused within the block, but it doesn't matter much. Also assume CPEs
1337 // are added in order with alignment padding. We may eventually be able
1338 // to pack the aligned CPEs better.
1339 EndInsertOffset = RoundUpToAlignment(EndInsertOffset,
1340 1u << getCPELogAlign(U.CPEMI)) +
1341 U.CPEMI->getOperand(2).getImm();
1342 CPUIndex++;
1343 }
1344
1345 // Remember the last IT instruction.
1346 if (MI->getOpcode() == ARM::t2IT)
1347 LastIT = MI;
1348 }
1349
1350 --MI;
1351
1352 // Avoid splitting an IT block.
1353 if (LastIT) {
1354 unsigned PredReg = 0;
1355 ARMCC::CondCodes CC = llvm::getITInstrPredicate(MI, PredReg);
1356 if (CC != ARMCC::AL)
1357 MI = LastIT;
1358 }
1359 NewMBB = SplitBlockBeforeInstr(MI);
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001360}
1361
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001362/// HandleConstantPoolUser - Analyze the specified user, checking to see if it
Bob Wilson39bf0512009-05-12 17:35:29 +00001363/// is out-of-range. If so, pick up the constant pool value and move it some
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001364/// place in-range. Return true if we changed any addresses (thus must run
1365/// another pass of branch lengthening), false otherwise.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001366bool ARMConstantIslands::HandleConstantPoolUser(unsigned CPUserIndex) {
Dale Johannesenf1b214d2007-02-28 18:41:23 +00001367 CPUser &U = CPUsers[CPUserIndex];
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001368 MachineInstr *UserMI = U.MI;
1369 MachineInstr *CPEMI = U.CPEMI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001370 unsigned CPI = CPEMI->getOperand(1).getIndex();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001371 unsigned Size = CPEMI->getOperand(2).getImm();
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001372 // Compute this only once, it's expensive.
1373 unsigned UserOffset = GetUserOffset(U);
Evan Cheng768c9f72007-04-27 08:14:15 +00001374
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001375 // See if the current entry is within range, or there is a clone of it
1376 // in range.
1377 int result = LookForExistingCPEntry(U, UserOffset);
1378 if (result==1) return false;
1379 else if (result==2) return true;
1380
1381 // No existing clone of this CPE is within range.
1382 // We will be generating a new clone. Get a UID for it.
Evan Cheng5de5d4b2011-01-17 08:03:18 +00001383 unsigned ID = AFI->createPICLabelUId();
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001384
Bob Wilsonf98032e2009-10-12 21:23:15 +00001385 // Look for water where we can place this CPE.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001386 MachineBasicBlock *NewIsland = MF->CreateMachineBasicBlock();
Bob Wilsonb9239532009-10-15 20:49:47 +00001387 MachineBasicBlock *NewMBB;
1388 water_iterator IP;
1389 if (LookForWater(U, UserOffset, IP)) {
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001390 DEBUG(dbgs() << "Found water in range\n");
Bob Wilsonb9239532009-10-15 20:49:47 +00001391 MachineBasicBlock *WaterBB = *IP;
1392
1393 // If the original WaterList entry was "new water" on this iteration,
1394 // propagate that to the new island. This is just keeping NewWaterList
1395 // updated to match the WaterList, which will be updated below.
1396 if (NewWaterList.count(WaterBB)) {
1397 NewWaterList.erase(WaterBB);
1398 NewWaterList.insert(NewIsland);
1399 }
1400 // The new CPE goes before the following block (NewMBB).
Chris Lattner7896c9f2009-12-03 00:50:42 +00001401 NewMBB = llvm::next(MachineFunction::iterator(WaterBB));
Bob Wilsonb9239532009-10-15 20:49:47 +00001402
1403 } else {
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001404 // No water found.
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001405 DEBUG(dbgs() << "No water found\n");
Bob Wilson757652c2009-10-12 21:39:43 +00001406 CreateNewWater(CPUserIndex, UserOffset, NewMBB);
Bob Wilsonb9239532009-10-15 20:49:47 +00001407
1408 // SplitBlockBeforeInstr adds to WaterList, which is important when it is
1409 // called while handling branches so that the water will be seen on the
1410 // next iteration for constant pools, but in this context, we don't want
1411 // it. Check for this so it will be removed from the WaterList.
1412 // Also remove any entry from NewWaterList.
1413 MachineBasicBlock *WaterBB = prior(MachineFunction::iterator(NewMBB));
1414 IP = std::find(WaterList.begin(), WaterList.end(), WaterBB);
1415 if (IP != WaterList.end())
1416 NewWaterList.erase(WaterBB);
1417
1418 // We are adding new water. Update NewWaterList.
1419 NewWaterList.insert(NewIsland);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001420 }
1421
Bob Wilsonb9239532009-10-15 20:49:47 +00001422 // Remove the original WaterList entry; we want subsequent insertions in
1423 // this vicinity to go after the one we're about to insert. This
1424 // considerably reduces the number of times we have to move the same CPE
1425 // more than once and is also important to ensure the algorithm terminates.
1426 if (IP != WaterList.end())
1427 WaterList.erase(IP);
1428
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001429 // Okay, we know we can put an island before NewMBB now, do it!
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001430 MF->insert(NewMBB, NewIsland);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001431
1432 // Update internal data structures to account for the newly inserted MBB.
1433 UpdateForInsertedWaterBlock(NewIsland);
1434
1435 // Decrement the old entry, and remove it if refcount becomes 0.
Evan Chenged884f32007-04-03 23:39:48 +00001436 DecrementOldEntry(CPI, CPEMI);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001437
1438 // Now that we have an island to add the CPE to, clone the original CPE and
1439 // add it to the island.
Bob Wilson549dda92009-10-15 05:52:29 +00001440 U.HighWaterMark = NewIsland;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001441 U.CPEMI = BuildMI(NewIsland, DebugLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
Evan Chenga8e29892007-01-19 07:51:42 +00001442 .addImm(ID).addConstantPoolIndex(CPI).addImm(Size);
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001443 CPEntries[CPI].push_back(CPEntry(U.CPEMI, ID, 1));
Dan Gohmanfe601042010-06-22 15:08:57 +00001444 ++NumCPEs;
Evan Chengc99ef082007-02-09 20:54:44 +00001445
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +00001446 // Mark the basic block as aligned as required by the const-pool entry.
1447 NewIsland->setAlignment(getCPELogAlign(U.CPEMI));
Jakob Stoklund Olesen3e572ac2011-12-06 01:43:02 +00001448
Evan Chenga8e29892007-01-19 07:51:42 +00001449 // Increase the size of the island block to account for the new entry.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001450 BBInfo[NewIsland->getNumber()].Size += Size;
Jakob Stoklund Olesen540c6d92011-12-08 00:55:02 +00001451 AdjustBBOffsetsAfter(llvm::prior(MachineFunction::iterator(NewIsland)));
Bob Wilson84945262009-05-12 17:09:30 +00001452
Evan Chenga8e29892007-01-19 07:51:42 +00001453 // Finally, change the CPI in the instruction operand to be ID.
1454 for (unsigned i = 0, e = UserMI->getNumOperands(); i != e; ++i)
Dan Gohmand735b802008-10-03 15:45:36 +00001455 if (UserMI->getOperand(i).isCPI()) {
Chris Lattner8aa797a2007-12-30 23:10:15 +00001456 UserMI->getOperand(i).setIndex(ID);
Evan Chenga8e29892007-01-19 07:51:42 +00001457 break;
1458 }
Bob Wilson84945262009-05-12 17:09:30 +00001459
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001460 DEBUG(dbgs() << " Moved CPE to #" << ID << " CPI=" << CPI
Jakob Stoklund Olesen2d5023b2011-12-10 02:55:06 +00001461 << format(" offset=%#x\n", BBInfo[NewIsland->getNumber()].Offset));
Bob Wilson84945262009-05-12 17:09:30 +00001462
Evan Chenga8e29892007-01-19 07:51:42 +00001463 return true;
1464}
1465
Evan Chenged884f32007-04-03 23:39:48 +00001466/// RemoveDeadCPEMI - Remove a dead constant pool entry instruction. Update
1467/// sizes and offsets of impacted basic blocks.
1468void ARMConstantIslands::RemoveDeadCPEMI(MachineInstr *CPEMI) {
1469 MachineBasicBlock *CPEBB = CPEMI->getParent();
Dale Johannesen8593e412007-04-29 19:19:30 +00001470 unsigned Size = CPEMI->getOperand(2).getImm();
1471 CPEMI->eraseFromParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001472 BBInfo[CPEBB->getNumber()].Size -= Size;
Dale Johannesen8593e412007-04-29 19:19:30 +00001473 // All succeeding offsets have the current size value added in, fix this.
Evan Chenged884f32007-04-03 23:39:48 +00001474 if (CPEBB->empty()) {
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +00001475 BBInfo[CPEBB->getNumber()].Size = 0;
Jakob Stoklund Olesen305e5fe2011-12-06 21:55:35 +00001476
1477 // This block no longer needs to be aligned. <rdar://problem/10534709>.
1478 CPEBB->setAlignment(0);
Jakob Stoklund Olesencca33a32011-12-12 18:45:45 +00001479 } else
1480 // Entries are sorted by descending alignment, so realign from the front.
1481 CPEBB->setAlignment(getCPELogAlign(CPEBB->begin()));
1482
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001483 AdjustBBOffsetsAfter(CPEBB);
Dale Johannesen8593e412007-04-29 19:19:30 +00001484 // An island has only one predecessor BB and one successor BB. Check if
1485 // this BB's predecessor jumps directly to this BB's successor. This
1486 // shouldn't happen currently.
1487 assert(!BBIsJumpedOver(CPEBB) && "How did this happen?");
1488 // FIXME: remove the empty blocks after all the work is done?
Evan Chenged884f32007-04-03 23:39:48 +00001489}
1490
1491/// RemoveUnusedCPEntries - Remove constant pool entries whose refcounts
1492/// are zero.
1493bool ARMConstantIslands::RemoveUnusedCPEntries() {
1494 unsigned MadeChange = false;
1495 for (unsigned i = 0, e = CPEntries.size(); i != e; ++i) {
1496 std::vector<CPEntry> &CPEs = CPEntries[i];
1497 for (unsigned j = 0, ee = CPEs.size(); j != ee; ++j) {
1498 if (CPEs[j].RefCount == 0 && CPEs[j].CPEMI) {
1499 RemoveDeadCPEMI(CPEs[j].CPEMI);
1500 CPEs[j].CPEMI = NULL;
1501 MadeChange = true;
1502 }
1503 }
Bob Wilson84945262009-05-12 17:09:30 +00001504 }
Evan Chenged884f32007-04-03 23:39:48 +00001505 return MadeChange;
1506}
1507
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001508/// BBIsInRange - Returns true if the distance between specific MI and
Evan Cheng43aeab62007-01-26 20:38:26 +00001509/// specific BB can fit in MI's displacement field.
Evan Chengc0dbec72007-01-31 19:57:44 +00001510bool ARMConstantIslands::BBIsInRange(MachineInstr *MI,MachineBasicBlock *DestBB,
1511 unsigned MaxDisp) {
Dale Johannesenb71aa2b2007-02-28 23:20:38 +00001512 unsigned PCAdj = isThumb ? 4 : 8;
Evan Chengc0dbec72007-01-31 19:57:44 +00001513 unsigned BrOffset = GetOffsetOf(MI) + PCAdj;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001514 unsigned DestOffset = BBInfo[DestBB->getNumber()].Offset;
Evan Cheng43aeab62007-01-26 20:38:26 +00001515
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001516 DEBUG(dbgs() << "Branch of destination BB#" << DestBB->getNumber()
Chris Lattner705e07f2009-08-23 03:41:05 +00001517 << " from BB#" << MI->getParent()->getNumber()
1518 << " max delta=" << MaxDisp
1519 << " from " << GetOffsetOf(MI) << " to " << DestOffset
1520 << " offset " << int(DestOffset-BrOffset) << "\t" << *MI);
Evan Chengc0dbec72007-01-31 19:57:44 +00001521
Dale Johannesen8593e412007-04-29 19:19:30 +00001522 if (BrOffset <= DestOffset) {
1523 // Branch before the Dest.
1524 if (DestOffset-BrOffset <= MaxDisp)
1525 return true;
1526 } else {
1527 if (BrOffset-DestOffset <= MaxDisp)
1528 return true;
1529 }
1530 return false;
Evan Cheng43aeab62007-01-26 20:38:26 +00001531}
1532
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001533/// FixUpImmediateBr - Fix up an immediate branch whose destination is too far
1534/// away to fit in its displacement field.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001535bool ARMConstantIslands::FixUpImmediateBr(ImmBranch &Br) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001536 MachineInstr *MI = Br.MI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001537 MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001538
Evan Chengc0dbec72007-01-31 19:57:44 +00001539 // Check to see if the DestBB is already in-range.
1540 if (BBIsInRange(MI, DestBB, Br.MaxDisp))
Evan Cheng43aeab62007-01-26 20:38:26 +00001541 return false;
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001542
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001543 if (!Br.isCond)
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001544 return FixUpUnconditionalBr(Br);
1545 return FixUpConditionalBr(Br);
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001546}
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001547
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001548/// FixUpUnconditionalBr - Fix up an unconditional branch whose destination is
1549/// too far away to fit in its displacement field. If the LR register has been
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001550/// spilled in the epilogue, then we can use BL to implement a far jump.
Bob Wilson39bf0512009-05-12 17:35:29 +00001551/// Otherwise, add an intermediate branch instruction to a branch.
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001552bool
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001553ARMConstantIslands::FixUpUnconditionalBr(ImmBranch &Br) {
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001554 MachineInstr *MI = Br.MI;
1555 MachineBasicBlock *MBB = MI->getParent();
Evan Cheng53c67c02009-08-07 05:45:07 +00001556 if (!isThumb1)
1557 llvm_unreachable("FixUpUnconditionalBr is Thumb1 only!");
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001558
1559 // Use BL to implement far jump.
1560 Br.MaxDisp = (1 << 21) * 2;
Chris Lattner5080f4d2008-01-11 18:10:50 +00001561 MI->setDesc(TII->get(ARM::tBfar));
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001562 BBInfo[MBB->getNumber()].Size += 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001563 AdjustBBOffsetsAfter(MBB);
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001564 HasFarJump = true;
Dan Gohmanfe601042010-06-22 15:08:57 +00001565 ++NumUBrFixed;
Evan Chengbd5d3db2007-02-03 02:08:34 +00001566
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001567 DEBUG(dbgs() << " Changed B to long jump " << *MI);
Evan Chengbd5d3db2007-02-03 02:08:34 +00001568
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001569 return true;
1570}
1571
Dale Johannesen88e37ae2007-02-23 05:02:36 +00001572/// FixUpConditionalBr - Fix up a conditional branch whose destination is too
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001573/// far away to fit in its displacement field. It is converted to an inverse
1574/// conditional branch + an unconditional branch to the destination.
1575bool
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001576ARMConstantIslands::FixUpConditionalBr(ImmBranch &Br) {
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001577 MachineInstr *MI = Br.MI;
Chris Lattner8aa797a2007-12-30 23:10:15 +00001578 MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001579
Bob Wilson39bf0512009-05-12 17:35:29 +00001580 // Add an unconditional branch to the destination and invert the branch
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001581 // condition to jump over it:
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001582 // blt L1
1583 // =>
1584 // bge L2
1585 // b L1
1586 // L2:
Chris Lattner9a1ceae2007-12-30 20:49:49 +00001587 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(1).getImm();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001588 CC = ARMCC::getOppositeCondition(CC);
Evan Cheng0e1d3792007-07-05 07:18:20 +00001589 unsigned CCReg = MI->getOperand(2).getReg();
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001590
1591 // If the branch is at the end of its MBB and that has a fall-through block,
1592 // direct the updated conditional branch to the fall-through block. Otherwise,
1593 // split the MBB before the next instruction.
1594 MachineBasicBlock *MBB = MI->getParent();
Evan Chengbd5d3db2007-02-03 02:08:34 +00001595 MachineInstr *BMI = &MBB->back();
1596 bool NeedSplit = (BMI != MI) || !BBHasFallthrough(MBB);
Evan Cheng43aeab62007-01-26 20:38:26 +00001597
Dan Gohmanfe601042010-06-22 15:08:57 +00001598 ++NumCBrFixed;
Evan Chengbd5d3db2007-02-03 02:08:34 +00001599 if (BMI != MI) {
Chris Lattner7896c9f2009-12-03 00:50:42 +00001600 if (llvm::next(MachineBasicBlock::iterator(MI)) == prior(MBB->end()) &&
Evan Chengbd5d3db2007-02-03 02:08:34 +00001601 BMI->getOpcode() == Br.UncondBr) {
Bob Wilson39bf0512009-05-12 17:35:29 +00001602 // Last MI in the BB is an unconditional branch. Can we simply invert the
Evan Cheng43aeab62007-01-26 20:38:26 +00001603 // condition and swap destinations:
1604 // beq L1
1605 // b L2
1606 // =>
1607 // bne L2
1608 // b L1
Chris Lattner8aa797a2007-12-30 23:10:15 +00001609 MachineBasicBlock *NewDest = BMI->getOperand(0).getMBB();
Evan Chengc0dbec72007-01-31 19:57:44 +00001610 if (BBIsInRange(MI, NewDest, Br.MaxDisp)) {
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001611 DEBUG(dbgs() << " Invert Bcc condition and swap its destination with "
Chris Lattner705e07f2009-08-23 03:41:05 +00001612 << *BMI);
Chris Lattner8aa797a2007-12-30 23:10:15 +00001613 BMI->getOperand(0).setMBB(DestBB);
1614 MI->getOperand(0).setMBB(NewDest);
Evan Cheng43aeab62007-01-26 20:38:26 +00001615 MI->getOperand(1).setImm(CC);
1616 return true;
1617 }
1618 }
1619 }
1620
1621 if (NeedSplit) {
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001622 SplitBlockBeforeInstr(MI);
Bob Wilson39bf0512009-05-12 17:35:29 +00001623 // No need for the branch to the next block. We're adding an unconditional
Evan Chengdd353b82007-01-26 02:02:39 +00001624 // branch to the destination.
Nicolas Geoffray52e724a2008-04-16 20:10:13 +00001625 int delta = TII->GetInstSizeInBytes(&MBB->back());
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001626 BBInfo[MBB->getNumber()].Size -= delta;
Evan Chengdd353b82007-01-26 02:02:39 +00001627 MBB->back().eraseFromParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001628 // BBInfo[SplitBB].Offset is wrong temporarily, fixed below
Evan Chengdd353b82007-01-26 02:02:39 +00001629 }
Chris Lattner7896c9f2009-12-03 00:50:42 +00001630 MachineBasicBlock *NextBB = llvm::next(MachineFunction::iterator(MBB));
Bob Wilson84945262009-05-12 17:09:30 +00001631
Jakob Stoklund Olesen3c4615e2011-12-09 18:20:35 +00001632 DEBUG(dbgs() << " Insert B to BB#" << DestBB->getNumber()
Chris Lattner893e1c92009-08-23 06:49:22 +00001633 << " also invert condition and change dest. to BB#"
1634 << NextBB->getNumber() << "\n");
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001635
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001636 // Insert a new conditional branch and a new unconditional branch.
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001637 // Also update the ImmBranch as well as adding a new entry for the new branch.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001638 BuildMI(MBB, DebugLoc(), TII->get(MI->getOpcode()))
Dale Johannesenb6728402009-02-13 02:25:56 +00001639 .addMBB(NextBB).addImm(CC).addReg(CCReg);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001640 Br.MI = &MBB->back();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001641 BBInfo[MBB->getNumber()].Size += TII->GetInstSizeInBytes(&MBB->back());
Owen Andersoncd4338f2011-09-09 23:05:14 +00001642 if (isThumb)
1643 BuildMI(MBB, DebugLoc(), TII->get(Br.UncondBr)).addMBB(DestBB)
1644 .addImm(ARMCC::AL).addReg(0);
1645 else
1646 BuildMI(MBB, DebugLoc(), TII->get(Br.UncondBr)).addMBB(DestBB);
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001647 BBInfo[MBB->getNumber()].Size += TII->GetInstSizeInBytes(&MBB->back());
Evan Chenga9b8b8d2007-01-31 18:29:27 +00001648 unsigned MaxDisp = getUnconditionalBrDisp(Br.UncondBr);
Evan Chenga0bf7942007-01-25 23:31:04 +00001649 ImmBranches.push_back(ImmBranch(&MBB->back(), MaxDisp, false, Br.UncondBr));
Dale Johannesen56c42ef2007-04-23 20:09:04 +00001650
1651 // Remove the old conditional branch. It may or may not still be in MBB.
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001652 BBInfo[MI->getParent()->getNumber()].Size -= TII->GetInstSizeInBytes(MI);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001653 MI->eraseFromParent();
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001654 AdjustBBOffsetsAfter(MBB);
Evan Chengaf5cbcb2007-01-25 03:12:46 +00001655 return true;
1656}
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001657
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001658/// UndoLRSpillRestore - Remove Thumb push / pop instructions that only spills
Evan Cheng4b322e52009-08-11 21:11:32 +00001659/// LR / restores LR to pc. FIXME: This is done here because it's only possible
1660/// to do this if tBfar is not used.
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001661bool ARMConstantIslands::UndoLRSpillRestore() {
1662 bool MadeChange = false;
1663 for (unsigned i = 0, e = PushPopMIs.size(); i != e; ++i) {
1664 MachineInstr *MI = PushPopMIs[i];
Bob Wilson815baeb2010-03-13 01:08:20 +00001665 // First two operands are predicates.
Evan Cheng44bec522007-05-15 01:29:07 +00001666 if (MI->getOpcode() == ARM::tPOP_RET &&
Bob Wilson815baeb2010-03-13 01:08:20 +00001667 MI->getOperand(2).getReg() == ARM::PC &&
1668 MI->getNumExplicitOperands() == 3) {
Jim Grosbach25e6d482011-07-08 21:50:04 +00001669 // Create the new insn and copy the predicate from the old.
1670 BuildMI(MI->getParent(), MI->getDebugLoc(), TII->get(ARM::tBX_RET))
1671 .addOperand(MI->getOperand(0))
1672 .addOperand(MI->getOperand(1));
Evan Cheng44bec522007-05-15 01:29:07 +00001673 MI->eraseFromParent();
1674 MadeChange = true;
Evan Chengd1b2c1e2007-01-30 01:18:38 +00001675 }
1676 }
1677 return MadeChange;
1678}
Evan Cheng5657c012009-07-29 02:18:14 +00001679
Jakob Stoklund Olesen19d0bf32012-01-10 22:32:14 +00001680// mayOptimizeThumb2Instruction - Returns true if OptimizeThumb2Instructions
1681// below may shrink MI.
1682bool
1683ARMConstantIslands::mayOptimizeThumb2Instruction(const MachineInstr *MI) const {
1684 switch(MI->getOpcode()) {
1685 // OptimizeThumb2Instructions.
1686 case ARM::t2LEApcrel:
1687 case ARM::t2LDRpci:
1688 // OptimizeThumb2Branches.
1689 case ARM::t2B:
1690 case ARM::t2Bcc:
1691 case ARM::tBcc:
1692 // OptimizeThumb2JumpTables.
1693 case ARM::t2BR_JT:
1694 return true;
1695 }
1696 return false;
1697}
1698
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001699bool ARMConstantIslands::OptimizeThumb2Instructions() {
Evan Chenga1efbbd2009-08-14 00:32:16 +00001700 bool MadeChange = false;
1701
1702 // Shrink ADR and LDR from constantpool.
1703 for (unsigned i = 0, e = CPUsers.size(); i != e; ++i) {
1704 CPUser &U = CPUsers[i];
1705 unsigned Opcode = U.MI->getOpcode();
1706 unsigned NewOpc = 0;
1707 unsigned Scale = 1;
1708 unsigned Bits = 0;
1709 switch (Opcode) {
1710 default: break;
Owen Anderson6b8719f2010-12-13 22:51:08 +00001711 case ARM::t2LEApcrel:
Evan Chenga1efbbd2009-08-14 00:32:16 +00001712 if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
1713 NewOpc = ARM::tLEApcrel;
1714 Bits = 8;
1715 Scale = 4;
1716 }
1717 break;
1718 case ARM::t2LDRpci:
1719 if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
1720 NewOpc = ARM::tLDRpci;
1721 Bits = 8;
1722 Scale = 4;
1723 }
1724 break;
1725 }
1726
1727 if (!NewOpc)
1728 continue;
1729
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001730 unsigned UserOffset = GetUserOffset(U);
Evan Chenga1efbbd2009-08-14 00:32:16 +00001731 unsigned MaxOffs = ((1 << Bits) - 1) * Scale;
Jakob Stoklund Olesendae412b2012-01-10 01:34:59 +00001732
1733 // Be conservative with inline asm.
1734 if (!U.KnownAlignment)
1735 MaxOffs -= 2;
1736
Evan Chenga1efbbd2009-08-14 00:32:16 +00001737 // FIXME: Check if offset is multiple of scale if scale is not 4.
1738 if (CPEIsInRange(U.MI, UserOffset, U.CPEMI, MaxOffs, false, true)) {
1739 U.MI->setDesc(TII->get(NewOpc));
1740 MachineBasicBlock *MBB = U.MI->getParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001741 BBInfo[MBB->getNumber()].Size -= 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001742 AdjustBBOffsetsAfter(MBB);
Evan Chenga1efbbd2009-08-14 00:32:16 +00001743 ++NumT2CPShrunk;
1744 MadeChange = true;
1745 }
1746 }
1747
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001748 MadeChange |= OptimizeThumb2Branches();
1749 MadeChange |= OptimizeThumb2JumpTables();
Evan Chenga1efbbd2009-08-14 00:32:16 +00001750 return MadeChange;
1751}
1752
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001753bool ARMConstantIslands::OptimizeThumb2Branches() {
Evan Cheng31b99dd2009-08-14 18:31:44 +00001754 bool MadeChange = false;
1755
1756 for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i) {
1757 ImmBranch &Br = ImmBranches[i];
1758 unsigned Opcode = Br.MI->getOpcode();
1759 unsigned NewOpc = 0;
1760 unsigned Scale = 1;
1761 unsigned Bits = 0;
1762 switch (Opcode) {
1763 default: break;
1764 case ARM::t2B:
1765 NewOpc = ARM::tB;
1766 Bits = 11;
1767 Scale = 2;
1768 break;
Evan Chengde17fb62009-10-31 23:46:45 +00001769 case ARM::t2Bcc: {
Evan Cheng31b99dd2009-08-14 18:31:44 +00001770 NewOpc = ARM::tBcc;
1771 Bits = 8;
Evan Chengde17fb62009-10-31 23:46:45 +00001772 Scale = 2;
Evan Cheng31b99dd2009-08-14 18:31:44 +00001773 break;
1774 }
Evan Chengde17fb62009-10-31 23:46:45 +00001775 }
1776 if (NewOpc) {
1777 unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
1778 MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
1779 if (BBIsInRange(Br.MI, DestBB, MaxOffs)) {
1780 Br.MI->setDesc(TII->get(NewOpc));
1781 MachineBasicBlock *MBB = Br.MI->getParent();
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001782 BBInfo[MBB->getNumber()].Size -= 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001783 AdjustBBOffsetsAfter(MBB);
Evan Chengde17fb62009-10-31 23:46:45 +00001784 ++NumT2BrShrunk;
1785 MadeChange = true;
1786 }
1787 }
1788
1789 Opcode = Br.MI->getOpcode();
1790 if (Opcode != ARM::tBcc)
Evan Cheng31b99dd2009-08-14 18:31:44 +00001791 continue;
1792
Evan Chengbfe8afa2012-01-14 01:53:46 +00001793 // If the conditional branch doesn't kill CPSR, then CPSR can be liveout
1794 // so this transformation is not safe.
1795 if (!Br.MI->killsRegister(ARM::CPSR))
1796 continue;
1797
Evan Chengde17fb62009-10-31 23:46:45 +00001798 NewOpc = 0;
1799 unsigned PredReg = 0;
1800 ARMCC::CondCodes Pred = llvm::getInstrPredicate(Br.MI, PredReg);
1801 if (Pred == ARMCC::EQ)
1802 NewOpc = ARM::tCBZ;
1803 else if (Pred == ARMCC::NE)
1804 NewOpc = ARM::tCBNZ;
1805 if (!NewOpc)
1806 continue;
Evan Cheng31b99dd2009-08-14 18:31:44 +00001807 MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
Evan Chengde17fb62009-10-31 23:46:45 +00001808 // Check if the distance is within 126. Subtract starting offset by 2
1809 // because the cmp will be eliminated.
1810 unsigned BrOffset = GetOffsetOf(Br.MI) + 4 - 2;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001811 unsigned DestOffset = BBInfo[DestBB->getNumber()].Offset;
Evan Chengde17fb62009-10-31 23:46:45 +00001812 if (BrOffset < DestOffset && (DestOffset - BrOffset) <= 126) {
Evan Cheng0539c152011-04-01 22:09:28 +00001813 MachineBasicBlock::iterator CmpMI = Br.MI;
1814 if (CmpMI != Br.MI->getParent()->begin()) {
1815 --CmpMI;
1816 if (CmpMI->getOpcode() == ARM::tCMPi8) {
1817 unsigned Reg = CmpMI->getOperand(0).getReg();
1818 Pred = llvm::getInstrPredicate(CmpMI, PredReg);
1819 if (Pred == ARMCC::AL &&
1820 CmpMI->getOperand(1).getImm() == 0 &&
1821 isARMLowRegister(Reg)) {
1822 MachineBasicBlock *MBB = Br.MI->getParent();
1823 MachineInstr *NewBR =
1824 BuildMI(*MBB, CmpMI, Br.MI->getDebugLoc(), TII->get(NewOpc))
1825 .addReg(Reg).addMBB(DestBB,Br.MI->getOperand(0).getTargetFlags());
1826 CmpMI->eraseFromParent();
1827 Br.MI->eraseFromParent();
1828 Br.MI = NewBR;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001829 BBInfo[MBB->getNumber()].Size -= 2;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001830 AdjustBBOffsetsAfter(MBB);
Evan Cheng0539c152011-04-01 22:09:28 +00001831 ++NumCBZ;
1832 MadeChange = true;
1833 }
Evan Chengde17fb62009-10-31 23:46:45 +00001834 }
1835 }
Evan Cheng31b99dd2009-08-14 18:31:44 +00001836 }
1837 }
1838
1839 return MadeChange;
Evan Chenga1efbbd2009-08-14 00:32:16 +00001840}
1841
Evan Chenga1efbbd2009-08-14 00:32:16 +00001842/// OptimizeThumb2JumpTables - Use tbb / tbh instructions to generate smaller
1843/// jumptables when it's possible.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001844bool ARMConstantIslands::OptimizeThumb2JumpTables() {
Evan Cheng5657c012009-07-29 02:18:14 +00001845 bool MadeChange = false;
1846
1847 // FIXME: After the tables are shrunk, can we get rid some of the
1848 // constantpool tables?
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001849 MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
Chris Lattnerb1e80392010-01-25 23:22:00 +00001850 if (MJTI == 0) return false;
Jim Grosbach26b8ef52010-07-07 21:06:51 +00001851
Evan Cheng5657c012009-07-29 02:18:14 +00001852 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1853 for (unsigned i = 0, e = T2JumpTables.size(); i != e; ++i) {
1854 MachineInstr *MI = T2JumpTables[i];
Evan Chenge837dea2011-06-28 19:10:37 +00001855 const MCInstrDesc &MCID = MI->getDesc();
1856 unsigned NumOps = MCID.getNumOperands();
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001857 unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 3 : 2);
Evan Cheng5657c012009-07-29 02:18:14 +00001858 MachineOperand JTOP = MI->getOperand(JTOpIdx);
1859 unsigned JTI = JTOP.getIndex();
1860 assert(JTI < JT.size());
1861
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001862 bool ByteOk = true;
1863 bool HalfWordOk = true;
Jim Grosbach80697d12009-11-12 17:25:07 +00001864 unsigned JTOffset = GetOffsetOf(MI) + 4;
1865 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Evan Cheng5657c012009-07-29 02:18:14 +00001866 for (unsigned j = 0, ee = JTBBs.size(); j != ee; ++j) {
1867 MachineBasicBlock *MBB = JTBBs[j];
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001868 unsigned DstOffset = BBInfo[MBB->getNumber()].Offset;
Evan Cheng8770f742009-07-29 23:20:20 +00001869 // Negative offset is not ok. FIXME: We should change BB layout to make
1870 // sure all the branches are forward.
Evan Chengd26b14c2009-07-31 18:28:05 +00001871 if (ByteOk && (DstOffset - JTOffset) > ((1<<8)-1)*2)
Evan Cheng5657c012009-07-29 02:18:14 +00001872 ByteOk = false;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001873 unsigned TBHLimit = ((1<<16)-1)*2;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001874 if (HalfWordOk && (DstOffset - JTOffset) > TBHLimit)
Evan Cheng5657c012009-07-29 02:18:14 +00001875 HalfWordOk = false;
1876 if (!ByteOk && !HalfWordOk)
1877 break;
1878 }
1879
1880 if (ByteOk || HalfWordOk) {
1881 MachineBasicBlock *MBB = MI->getParent();
1882 unsigned BaseReg = MI->getOperand(0).getReg();
1883 bool BaseRegKill = MI->getOperand(0).isKill();
1884 if (!BaseRegKill)
1885 continue;
1886 unsigned IdxReg = MI->getOperand(1).getReg();
1887 bool IdxRegKill = MI->getOperand(1).isKill();
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001888
1889 // Scan backwards to find the instruction that defines the base
1890 // register. Due to post-RA scheduling, we can't count on it
1891 // immediately preceding the branch instruction.
Evan Cheng5657c012009-07-29 02:18:14 +00001892 MachineBasicBlock::iterator PrevI = MI;
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001893 MachineBasicBlock::iterator B = MBB->begin();
1894 while (PrevI != B && !PrevI->definesRegister(BaseReg))
1895 --PrevI;
1896
1897 // If for some reason we didn't find it, we can't do anything, so
1898 // just skip this one.
1899 if (!PrevI->definesRegister(BaseReg))
Evan Cheng5657c012009-07-29 02:18:14 +00001900 continue;
1901
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001902 MachineInstr *AddrMI = PrevI;
Evan Cheng5657c012009-07-29 02:18:14 +00001903 bool OptOk = true;
Jim Grosbach26b8ef52010-07-07 21:06:51 +00001904 // Examine the instruction that calculates the jumptable entry address.
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001905 // Make sure it only defines the base register and kills any uses
1906 // other than the index register.
Evan Cheng5657c012009-07-29 02:18:14 +00001907 for (unsigned k = 0, eee = AddrMI->getNumOperands(); k != eee; ++k) {
1908 const MachineOperand &MO = AddrMI->getOperand(k);
1909 if (!MO.isReg() || !MO.getReg())
1910 continue;
1911 if (MO.isDef() && MO.getReg() != BaseReg) {
1912 OptOk = false;
1913 break;
1914 }
1915 if (MO.isUse() && !MO.isKill() && MO.getReg() != IdxReg) {
1916 OptOk = false;
1917 break;
1918 }
1919 }
1920 if (!OptOk)
1921 continue;
1922
Owen Anderson6b8719f2010-12-13 22:51:08 +00001923 // Now scan back again to find the tLEApcrel or t2LEApcrelJT instruction
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001924 // that gave us the initial base register definition.
1925 for (--PrevI; PrevI != B && !PrevI->definesRegister(BaseReg); --PrevI)
1926 ;
1927
Owen Anderson6b8719f2010-12-13 22:51:08 +00001928 // The instruction should be a tLEApcrel or t2LEApcrelJT; we want
Evan Chenga1efbbd2009-08-14 00:32:16 +00001929 // to delete it as well.
Jim Grosbachc7937ae2010-07-07 22:51:22 +00001930 MachineInstr *LeaMI = PrevI;
Evan Chenga1efbbd2009-08-14 00:32:16 +00001931 if ((LeaMI->getOpcode() != ARM::tLEApcrelJT &&
Owen Anderson6b8719f2010-12-13 22:51:08 +00001932 LeaMI->getOpcode() != ARM::t2LEApcrelJT) ||
Evan Cheng5657c012009-07-29 02:18:14 +00001933 LeaMI->getOperand(0).getReg() != BaseReg)
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001934 OptOk = false;
Evan Cheng5657c012009-07-29 02:18:14 +00001935
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001936 if (!OptOk)
1937 continue;
1938
Jim Grosbachd092a872010-11-29 21:28:32 +00001939 unsigned Opc = ByteOk ? ARM::t2TBB_JT : ARM::t2TBH_JT;
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001940 MachineInstr *NewJTMI = BuildMI(MBB, MI->getDebugLoc(), TII->get(Opc))
1941 .addReg(IdxReg, getKillRegState(IdxRegKill))
1942 .addJumpTableIndex(JTI, JTOP.getTargetFlags())
1943 .addImm(MI->getOperand(JTOpIdx+1).getImm());
1944 // FIXME: Insert an "ALIGN" instruction to ensure the next instruction
1945 // is 2-byte aligned. For now, asm printer will fix it up.
1946 unsigned NewSize = TII->GetInstSizeInBytes(NewJTMI);
1947 unsigned OrigSize = TII->GetInstSizeInBytes(AddrMI);
1948 OrigSize += TII->GetInstSizeInBytes(LeaMI);
1949 OrigSize += TII->GetInstSizeInBytes(MI);
1950
1951 AddrMI->eraseFromParent();
1952 LeaMI->eraseFromParent();
1953 MI->eraseFromParent();
1954
1955 int delta = OrigSize - NewSize;
Jakob Stoklund Olesena3f331b2011-12-07 01:08:25 +00001956 BBInfo[MBB->getNumber()].Size -= delta;
Jakob Stoklund Olesen2fe71c52011-12-07 05:17:30 +00001957 AdjustBBOffsetsAfter(MBB);
Evan Cheng25f7cfc2009-08-01 06:13:52 +00001958
1959 ++NumTBs;
1960 MadeChange = true;
Evan Cheng5657c012009-07-29 02:18:14 +00001961 }
1962 }
1963
1964 return MadeChange;
1965}
Jim Grosbach1fc7d712009-11-11 02:47:19 +00001966
Jim Grosbach9249efe2009-11-16 18:55:47 +00001967/// ReorderThumb2JumpTables - Adjust the function's block layout to ensure that
1968/// jump tables always branch forwards, since that's what tbb and tbh need.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001969bool ARMConstantIslands::ReorderThumb2JumpTables() {
Jim Grosbach80697d12009-11-12 17:25:07 +00001970 bool MadeChange = false;
1971
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00001972 MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
Chris Lattnerb1e80392010-01-25 23:22:00 +00001973 if (MJTI == 0) return false;
Jim Grosbach26b8ef52010-07-07 21:06:51 +00001974
Jim Grosbach80697d12009-11-12 17:25:07 +00001975 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1976 for (unsigned i = 0, e = T2JumpTables.size(); i != e; ++i) {
1977 MachineInstr *MI = T2JumpTables[i];
Evan Chenge837dea2011-06-28 19:10:37 +00001978 const MCInstrDesc &MCID = MI->getDesc();
1979 unsigned NumOps = MCID.getNumOperands();
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001980 unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 3 : 2);
Jim Grosbach80697d12009-11-12 17:25:07 +00001981 MachineOperand JTOP = MI->getOperand(JTOpIdx);
1982 unsigned JTI = JTOP.getIndex();
1983 assert(JTI < JT.size());
1984
1985 // We prefer if target blocks for the jump table come after the jump
1986 // instruction so we can use TB[BH]. Loop through the target blocks
1987 // and try to adjust them such that that's true.
Jim Grosbach08cbda52009-11-16 18:58:52 +00001988 int JTNumber = MI->getParent()->getNumber();
Jim Grosbach80697d12009-11-12 17:25:07 +00001989 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
1990 for (unsigned j = 0, ee = JTBBs.size(); j != ee; ++j) {
1991 MachineBasicBlock *MBB = JTBBs[j];
Jim Grosbach08cbda52009-11-16 18:58:52 +00001992 int DTNumber = MBB->getNumber();
Jim Grosbach80697d12009-11-12 17:25:07 +00001993
Jim Grosbach08cbda52009-11-16 18:58:52 +00001994 if (DTNumber < JTNumber) {
Jim Grosbach80697d12009-11-12 17:25:07 +00001995 // The destination precedes the switch. Try to move the block forward
1996 // so we have a positive offset.
1997 MachineBasicBlock *NewBB =
1998 AdjustJTTargetBlockForward(MBB, MI->getParent());
1999 if (NewBB)
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00002000 MJTI->ReplaceMBBInJumpTable(JTI, JTBBs[j], NewBB);
Jim Grosbach80697d12009-11-12 17:25:07 +00002001 MadeChange = true;
2002 }
2003 }
2004 }
2005
2006 return MadeChange;
2007}
2008
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002009MachineBasicBlock *ARMConstantIslands::
2010AdjustJTTargetBlockForward(MachineBasicBlock *BB, MachineBasicBlock *JTBB)
2011{
Jim Grosbach03e2d442010-07-07 22:53:35 +00002012 // If the destination block is terminated by an unconditional branch,
Jim Grosbach80697d12009-11-12 17:25:07 +00002013 // try to move it; otherwise, create a new block following the jump
Jim Grosbach08cbda52009-11-16 18:58:52 +00002014 // table that branches back to the actual target. This is a very simple
2015 // heuristic. FIXME: We can definitely improve it.
Jim Grosbach80697d12009-11-12 17:25:07 +00002016 MachineBasicBlock *TBB = 0, *FBB = 0;
2017 SmallVector<MachineOperand, 4> Cond;
Jim Grosbacha0a95a32009-11-17 01:21:04 +00002018 SmallVector<MachineOperand, 4> CondPrior;
2019 MachineFunction::iterator BBi = BB;
2020 MachineFunction::iterator OldPrior = prior(BBi);
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00002021
Jim Grosbachca215e72009-11-16 17:10:56 +00002022 // If the block terminator isn't analyzable, don't try to move the block
Jim Grosbacha0a95a32009-11-17 01:21:04 +00002023 bool B = TII->AnalyzeBranch(*BB, TBB, FBB, Cond);
Jim Grosbachca215e72009-11-16 17:10:56 +00002024
Jim Grosbacha0a95a32009-11-17 01:21:04 +00002025 // If the block ends in an unconditional branch, move it. The prior block
2026 // has to have an analyzable terminator for us to move this one. Be paranoid
Jim Grosbach08cbda52009-11-16 18:58:52 +00002027 // and make sure we're not trying to move the entry block of the function.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00002028 if (!B && Cond.empty() && BB != MF->begin() &&
Jim Grosbacha0a95a32009-11-17 01:21:04 +00002029 !TII->AnalyzeBranch(*OldPrior, TBB, FBB, CondPrior)) {
Jim Grosbach80697d12009-11-12 17:25:07 +00002030 BB->moveAfter(JTBB);
2031 OldPrior->updateTerminator();
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00002032 BB->updateTerminator();
Jim Grosbach08cbda52009-11-16 18:58:52 +00002033 // Update numbering to account for the block being moved.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00002034 MF->RenumberBlocks();
Jim Grosbach80697d12009-11-12 17:25:07 +00002035 ++NumJTMoved;
2036 return NULL;
2037 }
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002038
2039 // Create a new MBB for the code after the jump BB.
2040 MachineBasicBlock *NewBB =
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00002041 MF->CreateMachineBasicBlock(JTBB->getBasicBlock());
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002042 MachineFunction::iterator MBBI = JTBB; ++MBBI;
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00002043 MF->insert(MBBI, NewBB);
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002044
2045 // Add an unconditional branch from NewBB to BB.
2046 // There doesn't seem to be meaningful DebugInfo available; this doesn't
2047 // correspond directly to anything in the source.
2048 assert (isThumb2 && "Adjusting for TB[BH] but not in Thumb2?");
Owen Anderson51f6a7a2011-09-09 21:48:23 +00002049 BuildMI(NewBB, DebugLoc(), TII->get(ARM::t2B)).addMBB(BB)
2050 .addImm(ARMCC::AL).addReg(0);
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002051
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00002052 // Update internal data structures to account for the newly inserted MBB.
Jakob Stoklund Olesendbf350a2011-12-12 18:16:53 +00002053 MF->RenumberBlocks(NewBB);
Jim Grosbach00a6a1f2009-11-14 20:10:18 +00002054
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002055 // Update the CFG.
2056 NewBB->addSuccessor(BB);
2057 JTBB->removeSuccessor(BB);
2058 JTBB->addSuccessor(NewBB);
2059
Jim Grosbach80697d12009-11-12 17:25:07 +00002060 ++NumJTInserted;
Jim Grosbach1fc7d712009-11-11 02:47:19 +00002061 return NewBB;
2062}