xref: /freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
10b57cec5SDimitry Andric //===- ARMConstantIslandPass.cpp - ARM constant islands -------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // This file contains a pass that splits the constant pool up into 'islands'
100b57cec5SDimitry Andric // which are scattered through-out the function.  This is required due to the
110b57cec5SDimitry Andric // limited pc-relative displacements that ARM has.
120b57cec5SDimitry Andric //
130b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
140b57cec5SDimitry Andric 
150b57cec5SDimitry Andric #include "ARM.h"
160b57cec5SDimitry Andric #include "ARMBaseInstrInfo.h"
170b57cec5SDimitry Andric #include "ARMBasicBlockInfo.h"
180b57cec5SDimitry Andric #include "ARMMachineFunctionInfo.h"
190b57cec5SDimitry Andric #include "ARMSubtarget.h"
200b57cec5SDimitry Andric #include "MCTargetDesc/ARMBaseInfo.h"
21349cc55cSDimitry Andric #include "MVETailPredUtils.h"
220b57cec5SDimitry Andric #include "Thumb2InstrInfo.h"
230b57cec5SDimitry Andric #include "Utils/ARMBaseInfo.h"
240b57cec5SDimitry Andric #include "llvm/ADT/DenseMap.h"
250b57cec5SDimitry Andric #include "llvm/ADT/STLExtras.h"
260b57cec5SDimitry Andric #include "llvm/ADT/SmallSet.h"
270b57cec5SDimitry Andric #include "llvm/ADT/SmallVector.h"
280b57cec5SDimitry Andric #include "llvm/ADT/Statistic.h"
290b57cec5SDimitry Andric #include "llvm/ADT/StringRef.h"
308bcb0991SDimitry Andric #include "llvm/CodeGen/LivePhysRegs.h"
310b57cec5SDimitry Andric #include "llvm/CodeGen/MachineBasicBlock.h"
320b57cec5SDimitry Andric #include "llvm/CodeGen/MachineConstantPool.h"
338bcb0991SDimitry Andric #include "llvm/CodeGen/MachineDominators.h"
340b57cec5SDimitry Andric #include "llvm/CodeGen/MachineFunction.h"
350b57cec5SDimitry Andric #include "llvm/CodeGen/MachineFunctionPass.h"
360b57cec5SDimitry Andric #include "llvm/CodeGen/MachineInstr.h"
370b57cec5SDimitry Andric #include "llvm/CodeGen/MachineJumpTableInfo.h"
380b57cec5SDimitry Andric #include "llvm/CodeGen/MachineOperand.h"
390b57cec5SDimitry Andric #include "llvm/CodeGen/MachineRegisterInfo.h"
400b57cec5SDimitry Andric #include "llvm/Config/llvm-config.h"
410b57cec5SDimitry Andric #include "llvm/IR/DataLayout.h"
420b57cec5SDimitry Andric #include "llvm/IR/DebugLoc.h"
430b57cec5SDimitry Andric #include "llvm/MC/MCInstrDesc.h"
440b57cec5SDimitry Andric #include "llvm/Pass.h"
450b57cec5SDimitry Andric #include "llvm/Support/CommandLine.h"
460b57cec5SDimitry Andric #include "llvm/Support/Compiler.h"
470b57cec5SDimitry Andric #include "llvm/Support/Debug.h"
480b57cec5SDimitry Andric #include "llvm/Support/ErrorHandling.h"
490b57cec5SDimitry Andric #include "llvm/Support/Format.h"
500b57cec5SDimitry Andric #include "llvm/Support/MathExtras.h"
510b57cec5SDimitry Andric #include "llvm/Support/raw_ostream.h"
520b57cec5SDimitry Andric #include <algorithm>
530b57cec5SDimitry Andric #include <cassert>
540b57cec5SDimitry Andric #include <cstdint>
550b57cec5SDimitry Andric #include <iterator>
560b57cec5SDimitry Andric #include <utility>
570b57cec5SDimitry Andric #include <vector>
580b57cec5SDimitry Andric 
590b57cec5SDimitry Andric using namespace llvm;
600b57cec5SDimitry Andric 
610b57cec5SDimitry Andric #define DEBUG_TYPE "arm-cp-islands"
620b57cec5SDimitry Andric 
630b57cec5SDimitry Andric #define ARM_CP_ISLANDS_OPT_NAME \
640b57cec5SDimitry Andric   "ARM constant island placement and branch shortening pass"
650b57cec5SDimitry Andric STATISTIC(NumCPEs,       "Number of constpool entries");
660b57cec5SDimitry Andric STATISTIC(NumSplit,      "Number of uncond branches inserted");
670b57cec5SDimitry Andric STATISTIC(NumCBrFixed,   "Number of cond branches fixed");
680b57cec5SDimitry Andric STATISTIC(NumUBrFixed,   "Number of uncond branches fixed");
690b57cec5SDimitry Andric STATISTIC(NumTBs,        "Number of table branches generated");
700b57cec5SDimitry Andric STATISTIC(NumT2CPShrunk, "Number of Thumb2 constantpool instructions shrunk");
710b57cec5SDimitry Andric STATISTIC(NumT2BrShrunk, "Number of Thumb2 immediate branches shrunk");
720b57cec5SDimitry Andric STATISTIC(NumCBZ,        "Number of CBZ / CBNZ formed");
730b57cec5SDimitry Andric STATISTIC(NumJTMoved,    "Number of jump table destination blocks moved");
740b57cec5SDimitry Andric STATISTIC(NumJTInserted, "Number of jump table intermediate blocks inserted");
758bcb0991SDimitry Andric STATISTIC(NumLEInserted, "Number of LE backwards branches inserted");
760b57cec5SDimitry Andric 
770b57cec5SDimitry Andric static cl::opt<bool>
780b57cec5SDimitry Andric AdjustJumpTableBlocks("arm-adjust-jump-tables", cl::Hidden, cl::init(true),
790b57cec5SDimitry Andric           cl::desc("Adjust basic block layout to better use TB[BH]"));
800b57cec5SDimitry Andric 
810b57cec5SDimitry Andric static cl::opt<unsigned>
820b57cec5SDimitry Andric CPMaxIteration("arm-constant-island-max-iteration", cl::Hidden, cl::init(30),
830b57cec5SDimitry Andric           cl::desc("The max number of iteration for converge"));
840b57cec5SDimitry Andric 
850b57cec5SDimitry Andric static cl::opt<bool> SynthesizeThumb1TBB(
860b57cec5SDimitry Andric     "arm-synthesize-thumb-1-tbb", cl::Hidden, cl::init(true),
870b57cec5SDimitry Andric     cl::desc("Use compressed jump tables in Thumb-1 by synthesizing an "
880b57cec5SDimitry Andric              "equivalent to the TBB/TBH instructions"));
890b57cec5SDimitry Andric 
900b57cec5SDimitry Andric namespace {
910b57cec5SDimitry Andric 
920b57cec5SDimitry Andric   /// ARMConstantIslands - Due to limited PC-relative displacements, ARM
930b57cec5SDimitry Andric   /// requires constant pool entries to be scattered among the instructions
940b57cec5SDimitry Andric   /// inside a function.  To do this, it completely ignores the normal LLVM
950b57cec5SDimitry Andric   /// constant pool; instead, it places constants wherever it feels like with
960b57cec5SDimitry Andric   /// special instructions.
970b57cec5SDimitry Andric   ///
980b57cec5SDimitry Andric   /// The terminology used in this pass includes:
990b57cec5SDimitry Andric   ///   Islands - Clumps of constants placed in the function.
1000b57cec5SDimitry Andric   ///   Water   - Potential places where an island could be formed.
1010b57cec5SDimitry Andric   ///   CPE     - A constant pool entry that has been placed somewhere, which
1020b57cec5SDimitry Andric   ///             tracks a list of users.
1030b57cec5SDimitry Andric   class ARMConstantIslands : public MachineFunctionPass {
1040b57cec5SDimitry Andric     std::unique_ptr<ARMBasicBlockUtils> BBUtils = nullptr;
1050b57cec5SDimitry Andric 
1060b57cec5SDimitry Andric     /// WaterList - A sorted list of basic blocks where islands could be placed
1070b57cec5SDimitry Andric     /// (i.e. blocks that don't fall through to the following block, due
1080b57cec5SDimitry Andric     /// to a return, unreachable, or unconditional branch).
1090b57cec5SDimitry Andric     std::vector<MachineBasicBlock*> WaterList;
1100b57cec5SDimitry Andric 
1110b57cec5SDimitry Andric     /// NewWaterList - The subset of WaterList that was created since the
1120b57cec5SDimitry Andric     /// previous iteration by inserting unconditional branches.
1130b57cec5SDimitry Andric     SmallSet<MachineBasicBlock*, 4> NewWaterList;
1140b57cec5SDimitry Andric 
1150b57cec5SDimitry Andric     using water_iterator = std::vector<MachineBasicBlock *>::iterator;
1160b57cec5SDimitry Andric 
1170b57cec5SDimitry Andric     /// CPUser - One user of a constant pool, keeping the machine instruction
1180b57cec5SDimitry Andric     /// pointer, the constant pool being referenced, and the max displacement
1190b57cec5SDimitry Andric     /// allowed from the instruction to the CP.  The HighWaterMark records the
1200b57cec5SDimitry Andric     /// highest basic block where a new CPEntry can be placed.  To ensure this
1210b57cec5SDimitry Andric     /// pass terminates, the CP entries are initially placed at the end of the
1220b57cec5SDimitry Andric     /// function and then move monotonically to lower addresses.  The
1230b57cec5SDimitry Andric     /// exception to this rule is when the current CP entry for a particular
1240b57cec5SDimitry Andric     /// CPUser is out of range, but there is another CP entry for the same
1250b57cec5SDimitry Andric     /// constant value in range.  We want to use the existing in-range CP
1260b57cec5SDimitry Andric     /// entry, but if it later moves out of range, the search for new water
1270b57cec5SDimitry Andric     /// should resume where it left off.  The HighWaterMark is used to record
1280b57cec5SDimitry Andric     /// that point.
1290b57cec5SDimitry Andric     struct CPUser {
1300b57cec5SDimitry Andric       MachineInstr *MI;
1310b57cec5SDimitry Andric       MachineInstr *CPEMI;
1320b57cec5SDimitry Andric       MachineBasicBlock *HighWaterMark;
1330b57cec5SDimitry Andric       unsigned MaxDisp;
1340b57cec5SDimitry Andric       bool NegOk;
1350b57cec5SDimitry Andric       bool IsSoImm;
1360b57cec5SDimitry Andric       bool KnownAlignment = false;
1370b57cec5SDimitry Andric 
1380b57cec5SDimitry Andric       CPUser(MachineInstr *mi, MachineInstr *cpemi, unsigned maxdisp,
1390b57cec5SDimitry Andric              bool neg, bool soimm)
1400b57cec5SDimitry Andric         : MI(mi), CPEMI(cpemi), MaxDisp(maxdisp), NegOk(neg), IsSoImm(soimm) {
1410b57cec5SDimitry Andric         HighWaterMark = CPEMI->getParent();
1420b57cec5SDimitry Andric       }
1430b57cec5SDimitry Andric 
1440b57cec5SDimitry Andric       /// getMaxDisp - Returns the maximum displacement supported by MI.
1450b57cec5SDimitry Andric       /// Correct for unknown alignment.
1460b57cec5SDimitry Andric       /// Conservatively subtract 2 bytes to handle weird alignment effects.
1470b57cec5SDimitry Andric       unsigned getMaxDisp() const {
1480b57cec5SDimitry Andric         return (KnownAlignment ? MaxDisp : MaxDisp - 2) - 2;
1490b57cec5SDimitry Andric       }
1500b57cec5SDimitry Andric     };
1510b57cec5SDimitry Andric 
1520b57cec5SDimitry Andric     /// CPUsers - Keep track of all of the machine instructions that use various
1530b57cec5SDimitry Andric     /// constant pools and their max displacement.
1540b57cec5SDimitry Andric     std::vector<CPUser> CPUsers;
1550b57cec5SDimitry Andric 
1560b57cec5SDimitry Andric     /// CPEntry - One per constant pool entry, keeping the machine instruction
1570b57cec5SDimitry Andric     /// pointer, the constpool index, and the number of CPUser's which
1580b57cec5SDimitry Andric     /// reference this entry.
1590b57cec5SDimitry Andric     struct CPEntry {
1600b57cec5SDimitry Andric       MachineInstr *CPEMI;
1610b57cec5SDimitry Andric       unsigned CPI;
1620b57cec5SDimitry Andric       unsigned RefCount;
1630b57cec5SDimitry Andric 
1640b57cec5SDimitry Andric       CPEntry(MachineInstr *cpemi, unsigned cpi, unsigned rc = 0)
1650b57cec5SDimitry Andric         : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
1660b57cec5SDimitry Andric     };
1670b57cec5SDimitry Andric 
1680b57cec5SDimitry Andric     /// CPEntries - Keep track of all of the constant pool entry machine
1690b57cec5SDimitry Andric     /// instructions. For each original constpool index (i.e. those that existed
1700b57cec5SDimitry Andric     /// upon entry to this pass), it keeps a vector of entries.  Original
1710b57cec5SDimitry Andric     /// elements are cloned as we go along; the clones are put in the vector of
1720b57cec5SDimitry Andric     /// the original element, but have distinct CPIs.
1730b57cec5SDimitry Andric     ///
1740b57cec5SDimitry Andric     /// The first half of CPEntries contains generic constants, the second half
1750b57cec5SDimitry Andric     /// contains jump tables. Use getCombinedIndex on a generic CPEMI to look up
1760b57cec5SDimitry Andric     /// which vector it will be in here.
1770b57cec5SDimitry Andric     std::vector<std::vector<CPEntry>> CPEntries;
1780b57cec5SDimitry Andric 
1790b57cec5SDimitry Andric     /// Maps a JT index to the offset in CPEntries containing copies of that
1800b57cec5SDimitry Andric     /// table. The equivalent map for a CONSTPOOL_ENTRY is the identity.
1810b57cec5SDimitry Andric     DenseMap<int, int> JumpTableEntryIndices;
1820b57cec5SDimitry Andric 
1830b57cec5SDimitry Andric     /// Maps a JT index to the LEA that actually uses the index to calculate its
1840b57cec5SDimitry Andric     /// base address.
1850b57cec5SDimitry Andric     DenseMap<int, int> JumpTableUserIndices;
1860b57cec5SDimitry Andric 
1874824e7fdSDimitry Andric     // Maps a MachineBasicBlock to the number of jump tables entries.
1884824e7fdSDimitry Andric     DenseMap<const MachineBasicBlock *, int> BlockJumpTableRefCount;
1894824e7fdSDimitry Andric 
1900b57cec5SDimitry Andric     /// ImmBranch - One per immediate branch, keeping the machine instruction
1910b57cec5SDimitry Andric     /// pointer, conditional or unconditional, the max displacement,
1920b57cec5SDimitry Andric     /// and (if isCond is true) the corresponding unconditional branch
1930b57cec5SDimitry Andric     /// opcode.
1940b57cec5SDimitry Andric     struct ImmBranch {
1950b57cec5SDimitry Andric       MachineInstr *MI;
1960b57cec5SDimitry Andric       unsigned MaxDisp : 31;
1970b57cec5SDimitry Andric       bool isCond : 1;
1980b57cec5SDimitry Andric       unsigned UncondBr;
1990b57cec5SDimitry Andric 
2000b57cec5SDimitry Andric       ImmBranch(MachineInstr *mi, unsigned maxdisp, bool cond, unsigned ubr)
2010b57cec5SDimitry Andric         : MI(mi), MaxDisp(maxdisp), isCond(cond), UncondBr(ubr) {}
2020b57cec5SDimitry Andric     };
2030b57cec5SDimitry Andric 
2040b57cec5SDimitry Andric     /// ImmBranches - Keep track of all the immediate branch instructions.
2050b57cec5SDimitry Andric     std::vector<ImmBranch> ImmBranches;
2060b57cec5SDimitry Andric 
2070b57cec5SDimitry Andric     /// PushPopMIs - Keep track of all the Thumb push / pop instructions.
2080b57cec5SDimitry Andric     SmallVector<MachineInstr*, 4> PushPopMIs;
2090b57cec5SDimitry Andric 
2100b57cec5SDimitry Andric     /// T2JumpTables - Keep track of all the Thumb2 jumptable instructions.
2110b57cec5SDimitry Andric     SmallVector<MachineInstr*, 4> T2JumpTables;
2120b57cec5SDimitry Andric 
2130b57cec5SDimitry Andric     MachineFunction *MF;
2140b57cec5SDimitry Andric     MachineConstantPool *MCP;
2150b57cec5SDimitry Andric     const ARMBaseInstrInfo *TII;
2160b57cec5SDimitry Andric     const ARMSubtarget *STI;
2170b57cec5SDimitry Andric     ARMFunctionInfo *AFI;
2188bcb0991SDimitry Andric     MachineDominatorTree *DT = nullptr;
2190b57cec5SDimitry Andric     bool isThumb;
2200b57cec5SDimitry Andric     bool isThumb1;
2210b57cec5SDimitry Andric     bool isThumb2;
2220b57cec5SDimitry Andric     bool isPositionIndependentOrROPI;
2230b57cec5SDimitry Andric 
2240b57cec5SDimitry Andric   public:
2250b57cec5SDimitry Andric     static char ID;
2260b57cec5SDimitry Andric 
2270b57cec5SDimitry Andric     ARMConstantIslands() : MachineFunctionPass(ID) {}
2280b57cec5SDimitry Andric 
2290b57cec5SDimitry Andric     bool runOnMachineFunction(MachineFunction &MF) override;
2300b57cec5SDimitry Andric 
2318bcb0991SDimitry Andric     void getAnalysisUsage(AnalysisUsage &AU) const override {
232*0fca6ea1SDimitry Andric       AU.addRequired<MachineDominatorTreeWrapperPass>();
2338bcb0991SDimitry Andric       MachineFunctionPass::getAnalysisUsage(AU);
2348bcb0991SDimitry Andric     }
2358bcb0991SDimitry Andric 
2360b57cec5SDimitry Andric     MachineFunctionProperties getRequiredProperties() const override {
2370b57cec5SDimitry Andric       return MachineFunctionProperties().set(
2380b57cec5SDimitry Andric           MachineFunctionProperties::Property::NoVRegs);
2390b57cec5SDimitry Andric     }
2400b57cec5SDimitry Andric 
2410b57cec5SDimitry Andric     StringRef getPassName() const override {
2420b57cec5SDimitry Andric       return ARM_CP_ISLANDS_OPT_NAME;
2430b57cec5SDimitry Andric     }
2440b57cec5SDimitry Andric 
2450b57cec5SDimitry Andric   private:
2460b57cec5SDimitry Andric     void doInitialConstPlacement(std::vector<MachineInstr *> &CPEMIs);
2470b57cec5SDimitry Andric     void doInitialJumpTablePlacement(std::vector<MachineInstr *> &CPEMIs);
2480b57cec5SDimitry Andric     bool BBHasFallthrough(MachineBasicBlock *MBB);
2490b57cec5SDimitry Andric     CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
2508bcb0991SDimitry Andric     Align getCPEAlign(const MachineInstr *CPEMI);
2510b57cec5SDimitry Andric     void scanFunctionJumpTables();
2520b57cec5SDimitry Andric     void initializeFunctionInfo(const std::vector<MachineInstr*> &CPEMIs);
2530b57cec5SDimitry Andric     MachineBasicBlock *splitBlockBeforeInstr(MachineInstr *MI);
2540b57cec5SDimitry Andric     void updateForInsertedWaterBlock(MachineBasicBlock *NewBB);
2550b57cec5SDimitry Andric     bool decrementCPEReferenceCount(unsigned CPI, MachineInstr* CPEMI);
2560b57cec5SDimitry Andric     unsigned getCombinedIndex(const MachineInstr *CPEMI);
2570b57cec5SDimitry Andric     int findInRangeCPEntry(CPUser& U, unsigned UserOffset);
2580b57cec5SDimitry Andric     bool findAvailableWater(CPUser&U, unsigned UserOffset,
2590b57cec5SDimitry Andric                             water_iterator &WaterIter, bool CloserWater);
2600b57cec5SDimitry Andric     void createNewWater(unsigned CPUserIndex, unsigned UserOffset,
2610b57cec5SDimitry Andric                         MachineBasicBlock *&NewMBB);
2620b57cec5SDimitry Andric     bool handleConstantPoolUser(unsigned CPUserIndex, bool CloserWater);
2630b57cec5SDimitry Andric     void removeDeadCPEMI(MachineInstr *CPEMI);
2640b57cec5SDimitry Andric     bool removeUnusedCPEntries();
2650b57cec5SDimitry Andric     bool isCPEntryInRange(MachineInstr *MI, unsigned UserOffset,
2660b57cec5SDimitry Andric                           MachineInstr *CPEMI, unsigned Disp, bool NegOk,
2670b57cec5SDimitry Andric                           bool DoDump = false);
2680b57cec5SDimitry Andric     bool isWaterInRange(unsigned UserOffset, MachineBasicBlock *Water,
2690b57cec5SDimitry Andric                         CPUser &U, unsigned &Growth);
2700b57cec5SDimitry Andric     bool fixupImmediateBr(ImmBranch &Br);
2710b57cec5SDimitry Andric     bool fixupConditionalBr(ImmBranch &Br);
2720b57cec5SDimitry Andric     bool fixupUnconditionalBr(ImmBranch &Br);
2730b57cec5SDimitry Andric     bool optimizeThumb2Instructions();
2740b57cec5SDimitry Andric     bool optimizeThumb2Branches();
2750b57cec5SDimitry Andric     bool reorderThumb2JumpTables();
2760b57cec5SDimitry Andric     bool preserveBaseRegister(MachineInstr *JumpMI, MachineInstr *LEAMI,
2770b57cec5SDimitry Andric                               unsigned &DeadSize, bool &CanDeleteLEA,
2780b57cec5SDimitry Andric                               bool &BaseRegKill);
2790b57cec5SDimitry Andric     bool optimizeThumb2JumpTables();
2804824e7fdSDimitry Andric     MachineBasicBlock *adjustJTTargetBlockForward(unsigned JTI,
2814824e7fdSDimitry Andric                                                   MachineBasicBlock *BB,
2820b57cec5SDimitry Andric                                                   MachineBasicBlock *JTBB);
2830b57cec5SDimitry Andric 
2840b57cec5SDimitry Andric     unsigned getUserOffset(CPUser&) const;
2850b57cec5SDimitry Andric     void dumpBBs();
2860b57cec5SDimitry Andric     void verify();
2870b57cec5SDimitry Andric 
2880b57cec5SDimitry Andric     bool isOffsetInRange(unsigned UserOffset, unsigned TrialOffset,
2890b57cec5SDimitry Andric                          unsigned Disp, bool NegativeOK, bool IsSoImm = false);
2900b57cec5SDimitry Andric     bool isOffsetInRange(unsigned UserOffset, unsigned TrialOffset,
2910b57cec5SDimitry Andric                          const CPUser &U) {
2920b57cec5SDimitry Andric       return isOffsetInRange(UserOffset, TrialOffset,
2930b57cec5SDimitry Andric                              U.getMaxDisp(), U.NegOk, U.IsSoImm);
2940b57cec5SDimitry Andric     }
2950b57cec5SDimitry Andric   };
2960b57cec5SDimitry Andric 
2970b57cec5SDimitry Andric } // end anonymous namespace
2980b57cec5SDimitry Andric 
2990b57cec5SDimitry Andric char ARMConstantIslands::ID = 0;
3000b57cec5SDimitry Andric 
3010b57cec5SDimitry Andric /// verify - check BBOffsets, BBSizes, alignment of islands
3020b57cec5SDimitry Andric void ARMConstantIslands::verify() {
3030b57cec5SDimitry Andric #ifndef NDEBUG
3040b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
305fe6060f1SDimitry Andric   assert(is_sorted(*MF, [&BBInfo](const MachineBasicBlock &LHS,
3060b57cec5SDimitry Andric                                   const MachineBasicBlock &RHS) {
3070b57cec5SDimitry Andric     return BBInfo[LHS.getNumber()].postOffset() <
3080b57cec5SDimitry Andric            BBInfo[RHS.getNumber()].postOffset();
3090b57cec5SDimitry Andric   }));
3100b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "Verifying " << CPUsers.size() << " CP users.\n");
3110eae32dcSDimitry Andric   for (CPUser &U : CPUsers) {
3120b57cec5SDimitry Andric     unsigned UserOffset = getUserOffset(U);
3130b57cec5SDimitry Andric     // Verify offset using the real max displacement without the safety
3140b57cec5SDimitry Andric     // adjustment.
3150b57cec5SDimitry Andric     if (isCPEntryInRange(U.MI, UserOffset, U.CPEMI, U.getMaxDisp()+2, U.NegOk,
3160b57cec5SDimitry Andric                          /* DoDump = */ true)) {
3170b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "OK\n");
3180b57cec5SDimitry Andric       continue;
3190b57cec5SDimitry Andric     }
3200b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Out of range.\n");
3210b57cec5SDimitry Andric     dumpBBs();
3220b57cec5SDimitry Andric     LLVM_DEBUG(MF->dump());
3230b57cec5SDimitry Andric     llvm_unreachable("Constant pool entry out of range!");
3240b57cec5SDimitry Andric   }
3250b57cec5SDimitry Andric #endif
3260b57cec5SDimitry Andric }
3270b57cec5SDimitry Andric 
3280b57cec5SDimitry Andric #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3290b57cec5SDimitry Andric /// print block size and offset information - debugging
3300b57cec5SDimitry Andric LLVM_DUMP_METHOD void ARMConstantIslands::dumpBBs() {
3310b57cec5SDimitry Andric   LLVM_DEBUG({
33213138422SDimitry Andric     BBInfoVector &BBInfo = BBUtils->getBBInfo();
3330b57cec5SDimitry Andric     for (unsigned J = 0, E = BBInfo.size(); J !=E; ++J) {
3340b57cec5SDimitry Andric       const BasicBlockInfo &BBI = BBInfo[J];
3350b57cec5SDimitry Andric       dbgs() << format("%08x %bb.%u\t", BBI.Offset, J)
3360b57cec5SDimitry Andric              << " kb=" << unsigned(BBI.KnownBits)
3378bcb0991SDimitry Andric              << " ua=" << unsigned(BBI.Unalign) << " pa=" << Log2(BBI.PostAlign)
3380b57cec5SDimitry Andric              << format(" size=%#x\n", BBInfo[J].Size);
3390b57cec5SDimitry Andric     }
3400b57cec5SDimitry Andric   });
3410b57cec5SDimitry Andric }
3420b57cec5SDimitry Andric #endif
3430b57cec5SDimitry Andric 
344e8d8bef9SDimitry Andric // Align blocks where the previous block does not fall through. This may add
345e8d8bef9SDimitry Andric // extra NOP's but they will not be executed. It uses the PrefLoopAlignment as a
3465f757f3fSDimitry Andric // measure of how much to align, and only runs at CodeGenOptLevel::Aggressive.
347349cc55cSDimitry Andric static bool AlignBlocks(MachineFunction *MF, const ARMSubtarget *STI) {
3485f757f3fSDimitry Andric   if (MF->getTarget().getOptLevel() != CodeGenOptLevel::Aggressive ||
349e8d8bef9SDimitry Andric       MF->getFunction().hasOptSize())
350e8d8bef9SDimitry Andric     return false;
351e8d8bef9SDimitry Andric 
352349cc55cSDimitry Andric   auto *TLI = STI->getTargetLowering();
353e8d8bef9SDimitry Andric   const Align Alignment = TLI->getPrefLoopAlignment();
354e8d8bef9SDimitry Andric   if (Alignment < 4)
355e8d8bef9SDimitry Andric     return false;
356e8d8bef9SDimitry Andric 
357e8d8bef9SDimitry Andric   bool Changed = false;
358e8d8bef9SDimitry Andric   bool PrevCanFallthough = true;
359e8d8bef9SDimitry Andric   for (auto &MBB : *MF) {
360e8d8bef9SDimitry Andric     if (!PrevCanFallthough) {
361e8d8bef9SDimitry Andric       Changed = true;
362e8d8bef9SDimitry Andric       MBB.setAlignment(Alignment);
363e8d8bef9SDimitry Andric     }
364349cc55cSDimitry Andric 
365e8d8bef9SDimitry Andric     PrevCanFallthough = MBB.canFallThrough();
366349cc55cSDimitry Andric 
367349cc55cSDimitry Andric     // For LOB's, the ARMLowOverheadLoops pass may remove the unconditional
368349cc55cSDimitry Andric     // branch later in the pipeline.
369349cc55cSDimitry Andric     if (STI->hasLOB()) {
370349cc55cSDimitry Andric       for (const auto &MI : reverse(MBB.terminators())) {
371349cc55cSDimitry Andric         if (MI.getOpcode() == ARM::t2B &&
372349cc55cSDimitry Andric             MI.getOperand(0).getMBB() == MBB.getNextNode())
373349cc55cSDimitry Andric           continue;
374349cc55cSDimitry Andric         if (isLoopStart(MI) || MI.getOpcode() == ARM::t2LoopEnd ||
375349cc55cSDimitry Andric             MI.getOpcode() == ARM::t2LoopEndDec) {
376349cc55cSDimitry Andric           PrevCanFallthough = true;
377349cc55cSDimitry Andric           break;
378349cc55cSDimitry Andric         }
379349cc55cSDimitry Andric         // Any other terminator - nothing to do
380349cc55cSDimitry Andric         break;
381349cc55cSDimitry Andric       }
382349cc55cSDimitry Andric     }
383e8d8bef9SDimitry Andric   }
384e8d8bef9SDimitry Andric 
385e8d8bef9SDimitry Andric   return Changed;
386e8d8bef9SDimitry Andric }
387e8d8bef9SDimitry Andric 
3880b57cec5SDimitry Andric bool ARMConstantIslands::runOnMachineFunction(MachineFunction &mf) {
3890b57cec5SDimitry Andric   MF = &mf;
3900b57cec5SDimitry Andric   MCP = mf.getConstantPool();
391*0fca6ea1SDimitry Andric   BBUtils = std::make_unique<ARMBasicBlockUtils>(mf);
3920b57cec5SDimitry Andric 
3930b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "***** ARMConstantIslands: "
3940b57cec5SDimitry Andric                     << MCP->getConstants().size() << " CP entries, aligned to "
3955ffd83dbSDimitry Andric                     << MCP->getConstantPoolAlign().value() << " bytes *****\n");
3960b57cec5SDimitry Andric 
39781ad6265SDimitry Andric   STI = &MF->getSubtarget<ARMSubtarget>();
3980b57cec5SDimitry Andric   TII = STI->getInstrInfo();
3990b57cec5SDimitry Andric   isPositionIndependentOrROPI =
4000b57cec5SDimitry Andric       STI->getTargetLowering()->isPositionIndependent() || STI->isROPI();
4010b57cec5SDimitry Andric   AFI = MF->getInfo<ARMFunctionInfo>();
402*0fca6ea1SDimitry Andric   DT = &getAnalysis<MachineDominatorTreeWrapperPass>().getDomTree();
4030b57cec5SDimitry Andric 
4040b57cec5SDimitry Andric   isThumb = AFI->isThumbFunction();
4050b57cec5SDimitry Andric   isThumb1 = AFI->isThumb1OnlyFunction();
4060b57cec5SDimitry Andric   isThumb2 = AFI->isThumb2Function();
4070b57cec5SDimitry Andric 
4080b57cec5SDimitry Andric   bool GenerateTBB = isThumb2 || (isThumb1 && SynthesizeThumb1TBB);
409e8d8bef9SDimitry Andric   // TBB generation code in this constant island pass has not been adapted to
410e8d8bef9SDimitry Andric   // deal with speculation barriers.
411e8d8bef9SDimitry Andric   if (STI->hardenSlsRetBr())
412e8d8bef9SDimitry Andric     GenerateTBB = false;
4130b57cec5SDimitry Andric 
4140b57cec5SDimitry Andric   // Renumber all of the machine basic blocks in the function, guaranteeing that
4150b57cec5SDimitry Andric   // the numbers agree with the position of the block in the function.
4160b57cec5SDimitry Andric   MF->RenumberBlocks();
4170b57cec5SDimitry Andric 
4180b57cec5SDimitry Andric   // Try to reorder and otherwise adjust the block layout to make good use
4190b57cec5SDimitry Andric   // of the TB[BH] instructions.
4200b57cec5SDimitry Andric   bool MadeChange = false;
4210b57cec5SDimitry Andric   if (GenerateTBB && AdjustJumpTableBlocks) {
4220b57cec5SDimitry Andric     scanFunctionJumpTables();
4230b57cec5SDimitry Andric     MadeChange |= reorderThumb2JumpTables();
4240b57cec5SDimitry Andric     // Data is out of date, so clear it. It'll be re-computed later.
4250b57cec5SDimitry Andric     T2JumpTables.clear();
4260b57cec5SDimitry Andric     // Blocks may have shifted around. Keep the numbering up to date.
4270b57cec5SDimitry Andric     MF->RenumberBlocks();
4280b57cec5SDimitry Andric   }
4290b57cec5SDimitry Andric 
430e8d8bef9SDimitry Andric   // Align any non-fallthrough blocks
431349cc55cSDimitry Andric   MadeChange |= AlignBlocks(MF, STI);
432e8d8bef9SDimitry Andric 
4330b57cec5SDimitry Andric   // Perform the initial placement of the constant pool entries.  To start with,
4340b57cec5SDimitry Andric   // we put them all at the end of the function.
4350b57cec5SDimitry Andric   std::vector<MachineInstr*> CPEMIs;
4360b57cec5SDimitry Andric   if (!MCP->isEmpty())
4370b57cec5SDimitry Andric     doInitialConstPlacement(CPEMIs);
4380b57cec5SDimitry Andric 
4390b57cec5SDimitry Andric   if (MF->getJumpTableInfo())
4400b57cec5SDimitry Andric     doInitialJumpTablePlacement(CPEMIs);
4410b57cec5SDimitry Andric 
4420b57cec5SDimitry Andric   /// The next UID to take is the first unused one.
4430b57cec5SDimitry Andric   AFI->initPICLabelUId(CPEMIs.size());
4440b57cec5SDimitry Andric 
4450b57cec5SDimitry Andric   // Do the initial scan of the function, building up information about the
4460b57cec5SDimitry Andric   // sizes of each block, the location of all the water, and finding all of the
4470b57cec5SDimitry Andric   // constant pool users.
4480b57cec5SDimitry Andric   initializeFunctionInfo(CPEMIs);
4490b57cec5SDimitry Andric   CPEMIs.clear();
4500b57cec5SDimitry Andric   LLVM_DEBUG(dumpBBs());
4510b57cec5SDimitry Andric 
4520b57cec5SDimitry Andric   // Functions with jump tables need an alignment of 4 because they use the ADR
4530b57cec5SDimitry Andric   // instruction, which aligns the PC to 4 bytes before adding an offset.
4540b57cec5SDimitry Andric   if (!T2JumpTables.empty())
4558bcb0991SDimitry Andric     MF->ensureAlignment(Align(4));
4560b57cec5SDimitry Andric 
4570b57cec5SDimitry Andric   /// Remove dead constant pool entries.
4580b57cec5SDimitry Andric   MadeChange |= removeUnusedCPEntries();
4590b57cec5SDimitry Andric 
4600b57cec5SDimitry Andric   // Iteratively place constant pool entries and fix up branches until there
4610b57cec5SDimitry Andric   // is no change.
4620b57cec5SDimitry Andric   unsigned NoCPIters = 0, NoBRIters = 0;
4630b57cec5SDimitry Andric   while (true) {
4640b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Beginning CP iteration #" << NoCPIters << '\n');
4650b57cec5SDimitry Andric     bool CPChange = false;
4660b57cec5SDimitry Andric     for (unsigned i = 0, e = CPUsers.size(); i != e; ++i)
4670b57cec5SDimitry Andric       // For most inputs, it converges in no more than 5 iterations.
4680b57cec5SDimitry Andric       // If it doesn't end in 10, the input may have huge BB or many CPEs.
4690b57cec5SDimitry Andric       // In this case, we will try different heuristics.
4700b57cec5SDimitry Andric       CPChange |= handleConstantPoolUser(i, NoCPIters >= CPMaxIteration / 2);
4710b57cec5SDimitry Andric     if (CPChange && ++NoCPIters > CPMaxIteration)
4720b57cec5SDimitry Andric       report_fatal_error("Constant Island pass failed to converge!");
4730b57cec5SDimitry Andric     LLVM_DEBUG(dumpBBs());
4740b57cec5SDimitry Andric 
4750b57cec5SDimitry Andric     // Clear NewWaterList now.  If we split a block for branches, it should
4760b57cec5SDimitry Andric     // appear as "new water" for the next iteration of constant pool placement.
4770b57cec5SDimitry Andric     NewWaterList.clear();
4780b57cec5SDimitry Andric 
4790b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Beginning BR iteration #" << NoBRIters << '\n');
4800b57cec5SDimitry Andric     bool BRChange = false;
4810b57cec5SDimitry Andric     for (unsigned i = 0, e = ImmBranches.size(); i != e; ++i)
4820b57cec5SDimitry Andric       BRChange |= fixupImmediateBr(ImmBranches[i]);
4830b57cec5SDimitry Andric     if (BRChange && ++NoBRIters > 30)
4840b57cec5SDimitry Andric       report_fatal_error("Branch Fix Up pass failed to converge!");
4850b57cec5SDimitry Andric     LLVM_DEBUG(dumpBBs());
4860b57cec5SDimitry Andric 
4870b57cec5SDimitry Andric     if (!CPChange && !BRChange)
4880b57cec5SDimitry Andric       break;
4890b57cec5SDimitry Andric     MadeChange = true;
4900b57cec5SDimitry Andric   }
4910b57cec5SDimitry Andric 
4920b57cec5SDimitry Andric   // Shrink 32-bit Thumb2 load and store instructions.
4930b57cec5SDimitry Andric   if (isThumb2 && !STI->prefers32BitThumb())
4940b57cec5SDimitry Andric     MadeChange |= optimizeThumb2Instructions();
4950b57cec5SDimitry Andric 
4960b57cec5SDimitry Andric   // Shrink 32-bit branch instructions.
4970b57cec5SDimitry Andric   if (isThumb && STI->hasV8MBaselineOps())
4980b57cec5SDimitry Andric     MadeChange |= optimizeThumb2Branches();
4990b57cec5SDimitry Andric 
5000b57cec5SDimitry Andric   // Optimize jump tables using TBB / TBH.
5010b57cec5SDimitry Andric   if (GenerateTBB && !STI->genExecuteOnly())
5020b57cec5SDimitry Andric     MadeChange |= optimizeThumb2JumpTables();
5030b57cec5SDimitry Andric 
5040b57cec5SDimitry Andric   // After a while, this might be made debug-only, but it is not expensive.
5050b57cec5SDimitry Andric   verify();
5060b57cec5SDimitry Andric 
5070b57cec5SDimitry Andric   // Save the mapping between original and cloned constpool entries.
5080b57cec5SDimitry Andric   for (unsigned i = 0, e = CPEntries.size(); i != e; ++i) {
5090b57cec5SDimitry Andric     for (unsigned j = 0, je = CPEntries[i].size(); j != je; ++j) {
5100b57cec5SDimitry Andric       const CPEntry & CPE = CPEntries[i][j];
5110b57cec5SDimitry Andric       if (CPE.CPEMI && CPE.CPEMI->getOperand(1).isCPI())
5120b57cec5SDimitry Andric         AFI->recordCPEClone(i, CPE.CPI);
5130b57cec5SDimitry Andric     }
5140b57cec5SDimitry Andric   }
5150b57cec5SDimitry Andric 
5160b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << '\n'; dumpBBs());
5170b57cec5SDimitry Andric 
5180b57cec5SDimitry Andric   BBUtils->clear();
5190b57cec5SDimitry Andric   WaterList.clear();
5200b57cec5SDimitry Andric   CPUsers.clear();
5210b57cec5SDimitry Andric   CPEntries.clear();
5220b57cec5SDimitry Andric   JumpTableEntryIndices.clear();
5230b57cec5SDimitry Andric   JumpTableUserIndices.clear();
5244824e7fdSDimitry Andric   BlockJumpTableRefCount.clear();
5250b57cec5SDimitry Andric   ImmBranches.clear();
5260b57cec5SDimitry Andric   PushPopMIs.clear();
5270b57cec5SDimitry Andric   T2JumpTables.clear();
5280b57cec5SDimitry Andric 
5290b57cec5SDimitry Andric   return MadeChange;
5300b57cec5SDimitry Andric }
5310b57cec5SDimitry Andric 
5320b57cec5SDimitry Andric /// Perform the initial placement of the regular constant pool entries.
5330b57cec5SDimitry Andric /// To start with, we put them all at the end of the function.
5340b57cec5SDimitry Andric void
5350b57cec5SDimitry Andric ARMConstantIslands::doInitialConstPlacement(std::vector<MachineInstr*> &CPEMIs) {
5360b57cec5SDimitry Andric   // Create the basic block to hold the CPE's.
5370b57cec5SDimitry Andric   MachineBasicBlock *BB = MF->CreateMachineBasicBlock();
5380b57cec5SDimitry Andric   MF->push_back(BB);
5390b57cec5SDimitry Andric 
5408bcb0991SDimitry Andric   // MachineConstantPool measures alignment in bytes.
5415ffd83dbSDimitry Andric   const Align MaxAlign = MCP->getConstantPoolAlign();
5428bcb0991SDimitry Andric   const unsigned MaxLogAlign = Log2(MaxAlign);
5430b57cec5SDimitry Andric 
5440b57cec5SDimitry Andric   // Mark the basic block as required by the const-pool.
5450b57cec5SDimitry Andric   BB->setAlignment(MaxAlign);
5460b57cec5SDimitry Andric 
5470b57cec5SDimitry Andric   // The function needs to be as aligned as the basic blocks. The linker may
5480b57cec5SDimitry Andric   // move functions around based on their alignment.
549e8d8bef9SDimitry Andric   // Special case: halfword literals still need word alignment on the function.
550e8d8bef9SDimitry Andric   Align FuncAlign = MaxAlign;
551e8d8bef9SDimitry Andric   if (MaxAlign == 2)
552e8d8bef9SDimitry Andric     FuncAlign = Align(4);
553e8d8bef9SDimitry Andric   MF->ensureAlignment(FuncAlign);
5540b57cec5SDimitry Andric 
5550b57cec5SDimitry Andric   // Order the entries in BB by descending alignment.  That ensures correct
5560b57cec5SDimitry Andric   // alignment of all entries as long as BB is sufficiently aligned.  Keep
5570b57cec5SDimitry Andric   // track of the insertion point for each alignment.  We are going to bucket
5580b57cec5SDimitry Andric   // sort the entries as they are created.
5598bcb0991SDimitry Andric   SmallVector<MachineBasicBlock::iterator, 8> InsPoint(MaxLogAlign + 1,
5608bcb0991SDimitry Andric                                                        BB->end());
5610b57cec5SDimitry Andric 
5620b57cec5SDimitry Andric   // Add all of the constants from the constant pool to the end block, use an
5630b57cec5SDimitry Andric   // identity mapping of CPI's to CPE's.
5640b57cec5SDimitry Andric   const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
5650b57cec5SDimitry Andric 
5660b57cec5SDimitry Andric   const DataLayout &TD = MF->getDataLayout();
5670b57cec5SDimitry Andric   for (unsigned i = 0, e = CPs.size(); i != e; ++i) {
568e8d8bef9SDimitry Andric     unsigned Size = CPs[i].getSizeInBytes(TD);
5695ffd83dbSDimitry Andric     Align Alignment = CPs[i].getAlign();
5700b57cec5SDimitry Andric     // Verify that all constant pool entries are a multiple of their alignment.
5710b57cec5SDimitry Andric     // If not, we would have to pad them out so that instructions stay aligned.
5725ffd83dbSDimitry Andric     assert(isAligned(Alignment, Size) && "CP Entry not multiple of 4 bytes!");
5730b57cec5SDimitry Andric 
5740b57cec5SDimitry Andric     // Insert CONSTPOOL_ENTRY before entries with a smaller alignment.
5755ffd83dbSDimitry Andric     unsigned LogAlign = Log2(Alignment);
5760b57cec5SDimitry Andric     MachineBasicBlock::iterator InsAt = InsPoint[LogAlign];
5770b57cec5SDimitry Andric     MachineInstr *CPEMI =
5780b57cec5SDimitry Andric       BuildMI(*BB, InsAt, DebugLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
5790b57cec5SDimitry Andric         .addImm(i).addConstantPoolIndex(i).addImm(Size);
5800b57cec5SDimitry Andric     CPEMIs.push_back(CPEMI);
5810b57cec5SDimitry Andric 
5820b57cec5SDimitry Andric     // Ensure that future entries with higher alignment get inserted before
5830b57cec5SDimitry Andric     // CPEMI. This is bucket sort with iterators.
5848bcb0991SDimitry Andric     for (unsigned a = LogAlign + 1; a <= MaxLogAlign; ++a)
5850b57cec5SDimitry Andric       if (InsPoint[a] == InsAt)
5860b57cec5SDimitry Andric         InsPoint[a] = CPEMI;
5870b57cec5SDimitry Andric 
5880b57cec5SDimitry Andric     // Add a new CPEntry, but no corresponding CPUser yet.
5890b57cec5SDimitry Andric     CPEntries.emplace_back(1, CPEntry(CPEMI, i));
5900b57cec5SDimitry Andric     ++NumCPEs;
5910b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Moved CPI#" << i << " to end of function, size = "
5925ffd83dbSDimitry Andric                       << Size << ", align = " << Alignment.value() << '\n');
5930b57cec5SDimitry Andric   }
5940b57cec5SDimitry Andric   LLVM_DEBUG(BB->dump());
5950b57cec5SDimitry Andric }
5960b57cec5SDimitry Andric 
5970b57cec5SDimitry Andric /// Do initial placement of the jump tables. Because Thumb2's TBB and TBH
5980b57cec5SDimitry Andric /// instructions can be made more efficient if the jump table immediately
5990b57cec5SDimitry Andric /// follows the instruction, it's best to place them immediately next to their
6000b57cec5SDimitry Andric /// jumps to begin with. In almost all cases they'll never be moved from that
6010b57cec5SDimitry Andric /// position.
6020b57cec5SDimitry Andric void ARMConstantIslands::doInitialJumpTablePlacement(
6030b57cec5SDimitry Andric     std::vector<MachineInstr *> &CPEMIs) {
6040b57cec5SDimitry Andric   unsigned i = CPEntries.size();
6050b57cec5SDimitry Andric   auto MJTI = MF->getJumpTableInfo();
6060b57cec5SDimitry Andric   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
6070b57cec5SDimitry Andric 
60806c3fb27SDimitry Andric   // Only inline jump tables are placed in the function.
60906c3fb27SDimitry Andric   if (MJTI->getEntryKind() != MachineJumpTableInfo::EK_Inline)
61006c3fb27SDimitry Andric     return;
61106c3fb27SDimitry Andric 
6120b57cec5SDimitry Andric   MachineBasicBlock *LastCorrectlyNumberedBB = nullptr;
6130b57cec5SDimitry Andric   for (MachineBasicBlock &MBB : *MF) {
6140b57cec5SDimitry Andric     auto MI = MBB.getLastNonDebugInstr();
615e8d8bef9SDimitry Andric     // Look past potential SpeculationBarriers at end of BB.
616e8d8bef9SDimitry Andric     while (MI != MBB.end() &&
617e8d8bef9SDimitry Andric            (isSpeculationBarrierEndBBOpcode(MI->getOpcode()) ||
618e8d8bef9SDimitry Andric             MI->isDebugInstr()))
619e8d8bef9SDimitry Andric       --MI;
620e8d8bef9SDimitry Andric 
6210b57cec5SDimitry Andric     if (MI == MBB.end())
6220b57cec5SDimitry Andric       continue;
6230b57cec5SDimitry Andric 
6240b57cec5SDimitry Andric     unsigned JTOpcode;
6250b57cec5SDimitry Andric     switch (MI->getOpcode()) {
6260b57cec5SDimitry Andric     default:
6270b57cec5SDimitry Andric       continue;
6280b57cec5SDimitry Andric     case ARM::BR_JTadd:
6290b57cec5SDimitry Andric     case ARM::BR_JTr:
6300b57cec5SDimitry Andric     case ARM::tBR_JTr:
6310b57cec5SDimitry Andric     case ARM::BR_JTm_i12:
6320b57cec5SDimitry Andric     case ARM::BR_JTm_rs:
63306c3fb27SDimitry Andric       // These instructions are emitted only in ARM or Thumb1 modes which do not
63406c3fb27SDimitry Andric       // support PACBTI. Hence we don't add BTI instructions in the destination
63506c3fb27SDimitry Andric       // blocks.
63606c3fb27SDimitry Andric       assert(!MF->getInfo<ARMFunctionInfo>()->branchTargetEnforcement() &&
63706c3fb27SDimitry Andric              "Branch protection must not be enabled for Arm or Thumb1 modes");
6380b57cec5SDimitry Andric       JTOpcode = ARM::JUMPTABLE_ADDRS;
6390b57cec5SDimitry Andric       break;
6400b57cec5SDimitry Andric     case ARM::t2BR_JT:
6410b57cec5SDimitry Andric       JTOpcode = ARM::JUMPTABLE_INSTS;
6420b57cec5SDimitry Andric       break;
6430b57cec5SDimitry Andric     case ARM::tTBB_JT:
6440b57cec5SDimitry Andric     case ARM::t2TBB_JT:
6450b57cec5SDimitry Andric       JTOpcode = ARM::JUMPTABLE_TBB;
6460b57cec5SDimitry Andric       break;
6470b57cec5SDimitry Andric     case ARM::tTBH_JT:
6480b57cec5SDimitry Andric     case ARM::t2TBH_JT:
6490b57cec5SDimitry Andric       JTOpcode = ARM::JUMPTABLE_TBH;
6500b57cec5SDimitry Andric       break;
6510b57cec5SDimitry Andric     }
6520b57cec5SDimitry Andric 
6530b57cec5SDimitry Andric     unsigned NumOps = MI->getDesc().getNumOperands();
6540b57cec5SDimitry Andric     MachineOperand JTOp =
6550b57cec5SDimitry Andric       MI->getOperand(NumOps - (MI->isPredicable() ? 2 : 1));
6560b57cec5SDimitry Andric     unsigned JTI = JTOp.getIndex();
6570b57cec5SDimitry Andric     unsigned Size = JT[JTI].MBBs.size() * sizeof(uint32_t);
6580b57cec5SDimitry Andric     MachineBasicBlock *JumpTableBB = MF->CreateMachineBasicBlock();
6590b57cec5SDimitry Andric     MF->insert(std::next(MachineFunction::iterator(MBB)), JumpTableBB);
6600b57cec5SDimitry Andric     MachineInstr *CPEMI = BuildMI(*JumpTableBB, JumpTableBB->begin(),
6610b57cec5SDimitry Andric                                   DebugLoc(), TII->get(JTOpcode))
6620b57cec5SDimitry Andric                               .addImm(i++)
6630b57cec5SDimitry Andric                               .addJumpTableIndex(JTI)
6640b57cec5SDimitry Andric                               .addImm(Size);
6650b57cec5SDimitry Andric     CPEMIs.push_back(CPEMI);
6660b57cec5SDimitry Andric     CPEntries.emplace_back(1, CPEntry(CPEMI, JTI));
6670b57cec5SDimitry Andric     JumpTableEntryIndices.insert(std::make_pair(JTI, CPEntries.size() - 1));
6680b57cec5SDimitry Andric     if (!LastCorrectlyNumberedBB)
6690b57cec5SDimitry Andric       LastCorrectlyNumberedBB = &MBB;
6700b57cec5SDimitry Andric   }
6710b57cec5SDimitry Andric 
6720b57cec5SDimitry Andric   // If we did anything then we need to renumber the subsequent blocks.
6730b57cec5SDimitry Andric   if (LastCorrectlyNumberedBB)
6740b57cec5SDimitry Andric     MF->RenumberBlocks(LastCorrectlyNumberedBB);
6750b57cec5SDimitry Andric }
6760b57cec5SDimitry Andric 
6770b57cec5SDimitry Andric /// BBHasFallthrough - Return true if the specified basic block can fallthrough
6780b57cec5SDimitry Andric /// into the block immediately after it.
6790b57cec5SDimitry Andric bool ARMConstantIslands::BBHasFallthrough(MachineBasicBlock *MBB) {
6800b57cec5SDimitry Andric   // Get the next machine basic block in the function.
6810b57cec5SDimitry Andric   MachineFunction::iterator MBBI = MBB->getIterator();
6820b57cec5SDimitry Andric   // Can't fall off end of function.
6830b57cec5SDimitry Andric   if (std::next(MBBI) == MBB->getParent()->end())
6840b57cec5SDimitry Andric     return false;
6850b57cec5SDimitry Andric 
6860b57cec5SDimitry Andric   MachineBasicBlock *NextBB = &*std::next(MBBI);
6870b57cec5SDimitry Andric   if (!MBB->isSuccessor(NextBB))
6880b57cec5SDimitry Andric     return false;
6890b57cec5SDimitry Andric 
6900b57cec5SDimitry Andric   // Try to analyze the end of the block. A potential fallthrough may already
6910b57cec5SDimitry Andric   // have an unconditional branch for whatever reason.
6920b57cec5SDimitry Andric   MachineBasicBlock *TBB, *FBB;
6930b57cec5SDimitry Andric   SmallVector<MachineOperand, 4> Cond;
6940b57cec5SDimitry Andric   bool TooDifficult = TII->analyzeBranch(*MBB, TBB, FBB, Cond);
6950b57cec5SDimitry Andric   return TooDifficult || FBB == nullptr;
6960b57cec5SDimitry Andric }
6970b57cec5SDimitry Andric 
6980b57cec5SDimitry Andric /// findConstPoolEntry - Given the constpool index and CONSTPOOL_ENTRY MI,
6990b57cec5SDimitry Andric /// look up the corresponding CPEntry.
7000b57cec5SDimitry Andric ARMConstantIslands::CPEntry *
7010b57cec5SDimitry Andric ARMConstantIslands::findConstPoolEntry(unsigned CPI,
7020b57cec5SDimitry Andric                                        const MachineInstr *CPEMI) {
7030b57cec5SDimitry Andric   std::vector<CPEntry> &CPEs = CPEntries[CPI];
7040b57cec5SDimitry Andric   // Number of entries per constpool index should be small, just do a
7050b57cec5SDimitry Andric   // linear search.
7060eae32dcSDimitry Andric   for (CPEntry &CPE : CPEs)
7070eae32dcSDimitry Andric     if (CPE.CPEMI == CPEMI)
7080eae32dcSDimitry Andric       return &CPE;
7090b57cec5SDimitry Andric   return nullptr;
7100b57cec5SDimitry Andric }
7110b57cec5SDimitry Andric 
7128bcb0991SDimitry Andric /// getCPEAlign - Returns the required alignment of the constant pool entry
7138bcb0991SDimitry Andric /// represented by CPEMI.
7148bcb0991SDimitry Andric Align ARMConstantIslands::getCPEAlign(const MachineInstr *CPEMI) {
7150b57cec5SDimitry Andric   switch (CPEMI->getOpcode()) {
7160b57cec5SDimitry Andric   case ARM::CONSTPOOL_ENTRY:
7170b57cec5SDimitry Andric     break;
7180b57cec5SDimitry Andric   case ARM::JUMPTABLE_TBB:
7198bcb0991SDimitry Andric     return isThumb1 ? Align(4) : Align(1);
7200b57cec5SDimitry Andric   case ARM::JUMPTABLE_TBH:
7218bcb0991SDimitry Andric     return isThumb1 ? Align(4) : Align(2);
7220b57cec5SDimitry Andric   case ARM::JUMPTABLE_INSTS:
7238bcb0991SDimitry Andric     return Align(2);
7240b57cec5SDimitry Andric   case ARM::JUMPTABLE_ADDRS:
7258bcb0991SDimitry Andric     return Align(4);
7260b57cec5SDimitry Andric   default:
7270b57cec5SDimitry Andric     llvm_unreachable("unknown constpool entry kind");
7280b57cec5SDimitry Andric   }
7290b57cec5SDimitry Andric 
7300b57cec5SDimitry Andric   unsigned CPI = getCombinedIndex(CPEMI);
7310b57cec5SDimitry Andric   assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
7325ffd83dbSDimitry Andric   return MCP->getConstants()[CPI].getAlign();
7330b57cec5SDimitry Andric }
7340b57cec5SDimitry Andric 
7354824e7fdSDimitry Andric // Exception landing pads, blocks that has their adress taken, and function
7364824e7fdSDimitry Andric // entry blocks will always be (potential) indirect jump targets, regardless of
7374824e7fdSDimitry Andric // whether they are referenced by or not by jump tables.
7384824e7fdSDimitry Andric static bool isAlwaysIndirectTarget(const MachineBasicBlock &MBB) {
7394824e7fdSDimitry Andric   return MBB.isEHPad() || MBB.hasAddressTaken() ||
7404824e7fdSDimitry Andric          &MBB == &MBB.getParent()->front();
7414824e7fdSDimitry Andric }
7424824e7fdSDimitry Andric 
7430b57cec5SDimitry Andric /// scanFunctionJumpTables - Do a scan of the function, building up
7440b57cec5SDimitry Andric /// information about the sizes of each block and the locations of all
7450b57cec5SDimitry Andric /// the jump tables.
7460b57cec5SDimitry Andric void ARMConstantIslands::scanFunctionJumpTables() {
7470b57cec5SDimitry Andric   for (MachineBasicBlock &MBB : *MF) {
7480b57cec5SDimitry Andric     for (MachineInstr &I : MBB)
7490b57cec5SDimitry Andric       if (I.isBranch() &&
7500b57cec5SDimitry Andric           (I.getOpcode() == ARM::t2BR_JT || I.getOpcode() == ARM::tBR_JTr))
7510b57cec5SDimitry Andric         T2JumpTables.push_back(&I);
7520b57cec5SDimitry Andric   }
7534824e7fdSDimitry Andric 
7544824e7fdSDimitry Andric   if (!MF->getInfo<ARMFunctionInfo>()->branchTargetEnforcement())
7554824e7fdSDimitry Andric     return;
7564824e7fdSDimitry Andric 
7574824e7fdSDimitry Andric   if (const MachineJumpTableInfo *JTI = MF->getJumpTableInfo())
7584824e7fdSDimitry Andric     for (const MachineJumpTableEntry &JTE : JTI->getJumpTables())
7594824e7fdSDimitry Andric       for (const MachineBasicBlock *MBB : JTE.MBBs) {
7604824e7fdSDimitry Andric         if (isAlwaysIndirectTarget(*MBB))
7614824e7fdSDimitry Andric           // Set the reference count essentially to infinity, it will never
7624824e7fdSDimitry Andric           // reach zero and the BTI Instruction will never be removed.
7634824e7fdSDimitry Andric           BlockJumpTableRefCount[MBB] = std::numeric_limits<int>::max();
7644824e7fdSDimitry Andric         else
7654824e7fdSDimitry Andric           ++BlockJumpTableRefCount[MBB];
7664824e7fdSDimitry Andric       }
7670b57cec5SDimitry Andric }
7680b57cec5SDimitry Andric 
7690b57cec5SDimitry Andric /// initializeFunctionInfo - Do the initial scan of the function, building up
7700b57cec5SDimitry Andric /// information about the sizes of each block, the location of all the water,
7710b57cec5SDimitry Andric /// and finding all of the constant pool users.
7720b57cec5SDimitry Andric void ARMConstantIslands::
7730b57cec5SDimitry Andric initializeFunctionInfo(const std::vector<MachineInstr*> &CPEMIs) {
7740b57cec5SDimitry Andric 
7750b57cec5SDimitry Andric   BBUtils->computeAllBlockSizes();
7760b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
7770b57cec5SDimitry Andric   // The known bits of the entry block offset are determined by the function
7780b57cec5SDimitry Andric   // alignment.
7798bcb0991SDimitry Andric   BBInfo.front().KnownBits = Log2(MF->getAlignment());
7800b57cec5SDimitry Andric 
7810b57cec5SDimitry Andric   // Compute block offsets and known bits.
7820b57cec5SDimitry Andric   BBUtils->adjustBBOffsetsAfter(&MF->front());
7830b57cec5SDimitry Andric 
78406c3fb27SDimitry Andric   // We only care about jump table instructions when jump tables are inline.
78506c3fb27SDimitry Andric   MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
78606c3fb27SDimitry Andric   bool InlineJumpTables =
78706c3fb27SDimitry Andric       MJTI && MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline;
78806c3fb27SDimitry Andric 
7890b57cec5SDimitry Andric   // Now go back through the instructions and build up our data structures.
7900b57cec5SDimitry Andric   for (MachineBasicBlock &MBB : *MF) {
7910b57cec5SDimitry Andric     // If this block doesn't fall through into the next MBB, then this is
7920b57cec5SDimitry Andric     // 'water' that a constant pool island could be placed.
7930b57cec5SDimitry Andric     if (!BBHasFallthrough(&MBB))
7940b57cec5SDimitry Andric       WaterList.push_back(&MBB);
7950b57cec5SDimitry Andric 
7960b57cec5SDimitry Andric     for (MachineInstr &I : MBB) {
7970b57cec5SDimitry Andric       if (I.isDebugInstr())
7980b57cec5SDimitry Andric         continue;
7990b57cec5SDimitry Andric 
8000b57cec5SDimitry Andric       unsigned Opc = I.getOpcode();
8010b57cec5SDimitry Andric       if (I.isBranch()) {
8020b57cec5SDimitry Andric         bool isCond = false;
8030b57cec5SDimitry Andric         unsigned Bits = 0;
8040b57cec5SDimitry Andric         unsigned Scale = 1;
8050b57cec5SDimitry Andric         int UOpc = Opc;
8060b57cec5SDimitry Andric         switch (Opc) {
8070b57cec5SDimitry Andric         default:
8080b57cec5SDimitry Andric           continue;  // Ignore other JT branches
8090b57cec5SDimitry Andric         case ARM::t2BR_JT:
8100b57cec5SDimitry Andric         case ARM::tBR_JTr:
81106c3fb27SDimitry Andric           if (InlineJumpTables)
8120b57cec5SDimitry Andric             T2JumpTables.push_back(&I);
8130b57cec5SDimitry Andric           continue;   // Does not get an entry in ImmBranches
8140b57cec5SDimitry Andric         case ARM::Bcc:
8150b57cec5SDimitry Andric           isCond = true;
8160b57cec5SDimitry Andric           UOpc = ARM::B;
817bdd1243dSDimitry Andric           [[fallthrough]];
8180b57cec5SDimitry Andric         case ARM::B:
8190b57cec5SDimitry Andric           Bits = 24;
8200b57cec5SDimitry Andric           Scale = 4;
8210b57cec5SDimitry Andric           break;
8220b57cec5SDimitry Andric         case ARM::tBcc:
8230b57cec5SDimitry Andric           isCond = true;
8240b57cec5SDimitry Andric           UOpc = ARM::tB;
8250b57cec5SDimitry Andric           Bits = 8;
8260b57cec5SDimitry Andric           Scale = 2;
8270b57cec5SDimitry Andric           break;
8280b57cec5SDimitry Andric         case ARM::tB:
8290b57cec5SDimitry Andric           Bits = 11;
8300b57cec5SDimitry Andric           Scale = 2;
8310b57cec5SDimitry Andric           break;
8320b57cec5SDimitry Andric         case ARM::t2Bcc:
8330b57cec5SDimitry Andric           isCond = true;
8340b57cec5SDimitry Andric           UOpc = ARM::t2B;
8350b57cec5SDimitry Andric           Bits = 20;
8360b57cec5SDimitry Andric           Scale = 2;
8370b57cec5SDimitry Andric           break;
8380b57cec5SDimitry Andric         case ARM::t2B:
8390b57cec5SDimitry Andric           Bits = 24;
8400b57cec5SDimitry Andric           Scale = 2;
8410b57cec5SDimitry Andric           break;
8420b57cec5SDimitry Andric         }
8430b57cec5SDimitry Andric 
8440b57cec5SDimitry Andric         // Record this immediate branch.
8450b57cec5SDimitry Andric         unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
8460b57cec5SDimitry Andric         ImmBranches.push_back(ImmBranch(&I, MaxOffs, isCond, UOpc));
8470b57cec5SDimitry Andric       }
8480b57cec5SDimitry Andric 
8490b57cec5SDimitry Andric       if (Opc == ARM::tPUSH || Opc == ARM::tPOP_RET)
8500b57cec5SDimitry Andric         PushPopMIs.push_back(&I);
8510b57cec5SDimitry Andric 
8520b57cec5SDimitry Andric       if (Opc == ARM::CONSTPOOL_ENTRY || Opc == ARM::JUMPTABLE_ADDRS ||
8530b57cec5SDimitry Andric           Opc == ARM::JUMPTABLE_INSTS || Opc == ARM::JUMPTABLE_TBB ||
8540b57cec5SDimitry Andric           Opc == ARM::JUMPTABLE_TBH)
8550b57cec5SDimitry Andric         continue;
8560b57cec5SDimitry Andric 
8570b57cec5SDimitry Andric       // Scan the instructions for constant pool operands.
8580b57cec5SDimitry Andric       for (unsigned op = 0, e = I.getNumOperands(); op != e; ++op)
85906c3fb27SDimitry Andric         if (I.getOperand(op).isCPI() ||
86006c3fb27SDimitry Andric             (I.getOperand(op).isJTI() && InlineJumpTables)) {
8610b57cec5SDimitry Andric           // We found one.  The addressing mode tells us the max displacement
8620b57cec5SDimitry Andric           // from the PC that this instruction permits.
8630b57cec5SDimitry Andric 
8640b57cec5SDimitry Andric           // Basic size info comes from the TSFlags field.
8650b57cec5SDimitry Andric           unsigned Bits = 0;
8660b57cec5SDimitry Andric           unsigned Scale = 1;
8670b57cec5SDimitry Andric           bool NegOk = false;
8680b57cec5SDimitry Andric           bool IsSoImm = false;
8690b57cec5SDimitry Andric 
8700b57cec5SDimitry Andric           switch (Opc) {
8710b57cec5SDimitry Andric           default:
8720b57cec5SDimitry Andric             llvm_unreachable("Unknown addressing mode for CP reference!");
8730b57cec5SDimitry Andric 
8740b57cec5SDimitry Andric           // Taking the address of a CP entry.
8750b57cec5SDimitry Andric           case ARM::LEApcrel:
876e8d8bef9SDimitry Andric           case ARM::LEApcrelJT: {
8770b57cec5SDimitry Andric               // This takes a SoImm, which is 8 bit immediate rotated. We'll
8780b57cec5SDimitry Andric               // pretend the maximum offset is 255 * 4. Since each instruction
8790b57cec5SDimitry Andric               // 4 byte wide, this is always correct. We'll check for other
8800b57cec5SDimitry Andric               // displacements that fits in a SoImm as well.
8810b57cec5SDimitry Andric               Bits = 8;
8820b57cec5SDimitry Andric               NegOk = true;
8830b57cec5SDimitry Andric               IsSoImm = true;
884e8d8bef9SDimitry Andric               unsigned CPI = I.getOperand(op).getIndex();
885e8d8bef9SDimitry Andric               assert(CPI < CPEMIs.size());
886e8d8bef9SDimitry Andric               MachineInstr *CPEMI = CPEMIs[CPI];
887e8d8bef9SDimitry Andric               const Align CPEAlign = getCPEAlign(CPEMI);
888e8d8bef9SDimitry Andric               const unsigned LogCPEAlign = Log2(CPEAlign);
889e8d8bef9SDimitry Andric               if (LogCPEAlign >= 2)
890e8d8bef9SDimitry Andric                 Scale = 4;
891e8d8bef9SDimitry Andric               else
892e8d8bef9SDimitry Andric                 // For constants with less than 4-byte alignment,
893e8d8bef9SDimitry Andric                 // we'll pretend the maximum offset is 255 * 1.
894e8d8bef9SDimitry Andric                 Scale = 1;
895e8d8bef9SDimitry Andric             }
8960b57cec5SDimitry Andric             break;
8970b57cec5SDimitry Andric           case ARM::t2LEApcrel:
8980b57cec5SDimitry Andric           case ARM::t2LEApcrelJT:
8990b57cec5SDimitry Andric             Bits = 12;
9000b57cec5SDimitry Andric             NegOk = true;
9010b57cec5SDimitry Andric             break;
9020b57cec5SDimitry Andric           case ARM::tLEApcrel:
9030b57cec5SDimitry Andric           case ARM::tLEApcrelJT:
9040b57cec5SDimitry Andric             Bits = 8;
9050b57cec5SDimitry Andric             Scale = 4;
9060b57cec5SDimitry Andric             break;
9070b57cec5SDimitry Andric 
9080b57cec5SDimitry Andric           case ARM::LDRBi12:
9090b57cec5SDimitry Andric           case ARM::LDRi12:
9100b57cec5SDimitry Andric           case ARM::LDRcp:
9110b57cec5SDimitry Andric           case ARM::t2LDRpci:
9120b57cec5SDimitry Andric           case ARM::t2LDRHpci:
913fe6060f1SDimitry Andric           case ARM::t2LDRSHpci:
9140b57cec5SDimitry Andric           case ARM::t2LDRBpci:
915fe6060f1SDimitry Andric           case ARM::t2LDRSBpci:
9160b57cec5SDimitry Andric             Bits = 12;  // +-offset_12
9170b57cec5SDimitry Andric             NegOk = true;
9180b57cec5SDimitry Andric             break;
9190b57cec5SDimitry Andric 
9200b57cec5SDimitry Andric           case ARM::tLDRpci:
9210b57cec5SDimitry Andric             Bits = 8;
9220b57cec5SDimitry Andric             Scale = 4;  // +(offset_8*4)
9230b57cec5SDimitry Andric             break;
9240b57cec5SDimitry Andric 
9250b57cec5SDimitry Andric           case ARM::VLDRD:
9260b57cec5SDimitry Andric           case ARM::VLDRS:
9270b57cec5SDimitry Andric             Bits = 8;
9280b57cec5SDimitry Andric             Scale = 4;  // +-(offset_8*4)
9290b57cec5SDimitry Andric             NegOk = true;
9300b57cec5SDimitry Andric             break;
9310b57cec5SDimitry Andric           case ARM::VLDRH:
9320b57cec5SDimitry Andric             Bits = 8;
9330b57cec5SDimitry Andric             Scale = 2;  // +-(offset_8*2)
9340b57cec5SDimitry Andric             NegOk = true;
9350b57cec5SDimitry Andric             break;
9360b57cec5SDimitry Andric           }
9370b57cec5SDimitry Andric 
9380b57cec5SDimitry Andric           // Remember that this is a user of a CP entry.
9390b57cec5SDimitry Andric           unsigned CPI = I.getOperand(op).getIndex();
9400b57cec5SDimitry Andric           if (I.getOperand(op).isJTI()) {
9410b57cec5SDimitry Andric             JumpTableUserIndices.insert(std::make_pair(CPI, CPUsers.size()));
9420b57cec5SDimitry Andric             CPI = JumpTableEntryIndices[CPI];
9430b57cec5SDimitry Andric           }
9440b57cec5SDimitry Andric 
9450b57cec5SDimitry Andric           MachineInstr *CPEMI = CPEMIs[CPI];
9460b57cec5SDimitry Andric           unsigned MaxOffs = ((1 << Bits)-1) * Scale;
9470b57cec5SDimitry Andric           CPUsers.push_back(CPUser(&I, CPEMI, MaxOffs, NegOk, IsSoImm));
9480b57cec5SDimitry Andric 
9490b57cec5SDimitry Andric           // Increment corresponding CPEntry reference count.
9500b57cec5SDimitry Andric           CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
9510b57cec5SDimitry Andric           assert(CPE && "Cannot find a corresponding CPEntry!");
9520b57cec5SDimitry Andric           CPE->RefCount++;
9530b57cec5SDimitry Andric 
9540b57cec5SDimitry Andric           // Instructions can only use one CP entry, don't bother scanning the
9550b57cec5SDimitry Andric           // rest of the operands.
9560b57cec5SDimitry Andric           break;
9570b57cec5SDimitry Andric         }
9580b57cec5SDimitry Andric     }
9590b57cec5SDimitry Andric   }
9600b57cec5SDimitry Andric }
9610b57cec5SDimitry Andric 
9620b57cec5SDimitry Andric /// CompareMBBNumbers - Little predicate function to sort the WaterList by MBB
9630b57cec5SDimitry Andric /// ID.
9640b57cec5SDimitry Andric static bool CompareMBBNumbers(const MachineBasicBlock *LHS,
9650b57cec5SDimitry Andric                               const MachineBasicBlock *RHS) {
9660b57cec5SDimitry Andric   return LHS->getNumber() < RHS->getNumber();
9670b57cec5SDimitry Andric }
9680b57cec5SDimitry Andric 
9690b57cec5SDimitry Andric /// updateForInsertedWaterBlock - When a block is newly inserted into the
9700b57cec5SDimitry Andric /// machine function, it upsets all of the block numbers.  Renumber the blocks
9710b57cec5SDimitry Andric /// and update the arrays that parallel this numbering.
9720b57cec5SDimitry Andric void ARMConstantIslands::updateForInsertedWaterBlock(MachineBasicBlock *NewBB) {
9730b57cec5SDimitry Andric   // Renumber the MBB's to keep them consecutive.
9740b57cec5SDimitry Andric   NewBB->getParent()->RenumberBlocks(NewBB);
9750b57cec5SDimitry Andric 
9760b57cec5SDimitry Andric   // Insert an entry into BBInfo to align it properly with the (newly
9770b57cec5SDimitry Andric   // renumbered) block numbers.
9780b57cec5SDimitry Andric   BBUtils->insert(NewBB->getNumber(), BasicBlockInfo());
9790b57cec5SDimitry Andric 
9800b57cec5SDimitry Andric   // Next, update WaterList.  Specifically, we need to add NewMBB as having
9810b57cec5SDimitry Andric   // available water after it.
9820b57cec5SDimitry Andric   water_iterator IP = llvm::lower_bound(WaterList, NewBB, CompareMBBNumbers);
9830b57cec5SDimitry Andric   WaterList.insert(IP, NewBB);
9840b57cec5SDimitry Andric }
9850b57cec5SDimitry Andric 
9860b57cec5SDimitry Andric /// Split the basic block containing MI into two blocks, which are joined by
9870b57cec5SDimitry Andric /// an unconditional branch.  Update data structures and renumber blocks to
9880b57cec5SDimitry Andric /// account for this change and returns the newly created block.
9890b57cec5SDimitry Andric MachineBasicBlock *ARMConstantIslands::splitBlockBeforeInstr(MachineInstr *MI) {
9900b57cec5SDimitry Andric   MachineBasicBlock *OrigBB = MI->getParent();
9910b57cec5SDimitry Andric 
9928bcb0991SDimitry Andric   // Collect liveness information at MI.
9938bcb0991SDimitry Andric   LivePhysRegs LRs(*MF->getSubtarget().getRegisterInfo());
9948bcb0991SDimitry Andric   LRs.addLiveOuts(*OrigBB);
9958bcb0991SDimitry Andric   auto LivenessEnd = ++MachineBasicBlock::iterator(MI).getReverse();
9968bcb0991SDimitry Andric   for (MachineInstr &LiveMI : make_range(OrigBB->rbegin(), LivenessEnd))
9978bcb0991SDimitry Andric     LRs.stepBackward(LiveMI);
9988bcb0991SDimitry Andric 
9990b57cec5SDimitry Andric   // Create a new MBB for the code after the OrigBB.
10000b57cec5SDimitry Andric   MachineBasicBlock *NewBB =
10010b57cec5SDimitry Andric     MF->CreateMachineBasicBlock(OrigBB->getBasicBlock());
10020b57cec5SDimitry Andric   MachineFunction::iterator MBBI = ++OrigBB->getIterator();
10030b57cec5SDimitry Andric   MF->insert(MBBI, NewBB);
10040b57cec5SDimitry Andric 
10050b57cec5SDimitry Andric   // Splice the instructions starting with MI over to NewBB.
10060b57cec5SDimitry Andric   NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
10070b57cec5SDimitry Andric 
10080b57cec5SDimitry Andric   // Add an unconditional branch from OrigBB to NewBB.
10090b57cec5SDimitry Andric   // Note the new unconditional branch is not being recorded.
10100b57cec5SDimitry Andric   // There doesn't seem to be meaningful DebugInfo available; this doesn't
10110b57cec5SDimitry Andric   // correspond to anything in the source.
10120b57cec5SDimitry Andric   unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B;
10130b57cec5SDimitry Andric   if (!isThumb)
10140b57cec5SDimitry Andric     BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB);
10150b57cec5SDimitry Andric   else
10160b57cec5SDimitry Andric     BuildMI(OrigBB, DebugLoc(), TII->get(Opc))
10170b57cec5SDimitry Andric         .addMBB(NewBB)
10180b57cec5SDimitry Andric         .add(predOps(ARMCC::AL));
10190b57cec5SDimitry Andric   ++NumSplit;
10200b57cec5SDimitry Andric 
10210b57cec5SDimitry Andric   // Update the CFG.  All succs of OrigBB are now succs of NewBB.
10220b57cec5SDimitry Andric   NewBB->transferSuccessors(OrigBB);
10230b57cec5SDimitry Andric 
10240b57cec5SDimitry Andric   // OrigBB branches to NewBB.
10250b57cec5SDimitry Andric   OrigBB->addSuccessor(NewBB);
10260b57cec5SDimitry Andric 
10278bcb0991SDimitry Andric   // Update live-in information in the new block.
10288bcb0991SDimitry Andric   MachineRegisterInfo &MRI = MF->getRegInfo();
10298bcb0991SDimitry Andric   for (MCPhysReg L : LRs)
10308bcb0991SDimitry Andric     if (!MRI.isReserved(L))
10318bcb0991SDimitry Andric       NewBB->addLiveIn(L);
10328bcb0991SDimitry Andric 
10330b57cec5SDimitry Andric   // Update internal data structures to account for the newly inserted MBB.
10340b57cec5SDimitry Andric   // This is almost the same as updateForInsertedWaterBlock, except that
10350b57cec5SDimitry Andric   // the Water goes after OrigBB, not NewBB.
10360b57cec5SDimitry Andric   MF->RenumberBlocks(NewBB);
10370b57cec5SDimitry Andric 
10380b57cec5SDimitry Andric   // Insert an entry into BBInfo to align it properly with the (newly
10390b57cec5SDimitry Andric   // renumbered) block numbers.
10400b57cec5SDimitry Andric   BBUtils->insert(NewBB->getNumber(), BasicBlockInfo());
10410b57cec5SDimitry Andric 
10420b57cec5SDimitry Andric   // Next, update WaterList.  Specifically, we need to add OrigMBB as having
10430b57cec5SDimitry Andric   // available water after it (but not if it's already there, which happens
10440b57cec5SDimitry Andric   // when splitting before a conditional branch that is followed by an
10450b57cec5SDimitry Andric   // unconditional branch - in that case we want to insert NewBB).
10460b57cec5SDimitry Andric   water_iterator IP = llvm::lower_bound(WaterList, OrigBB, CompareMBBNumbers);
10470b57cec5SDimitry Andric   MachineBasicBlock* WaterBB = *IP;
10480b57cec5SDimitry Andric   if (WaterBB == OrigBB)
10490b57cec5SDimitry Andric     WaterList.insert(std::next(IP), NewBB);
10500b57cec5SDimitry Andric   else
10510b57cec5SDimitry Andric     WaterList.insert(IP, OrigBB);
10520b57cec5SDimitry Andric   NewWaterList.insert(OrigBB);
10530b57cec5SDimitry Andric 
10540b57cec5SDimitry Andric   // Figure out how large the OrigBB is.  As the first half of the original
10550b57cec5SDimitry Andric   // block, it cannot contain a tablejump.  The size includes
10560b57cec5SDimitry Andric   // the new jump we added.  (It should be possible to do this without
10570b57cec5SDimitry Andric   // recounting everything, but it's very confusing, and this is rarely
10580b57cec5SDimitry Andric   // executed.)
10590b57cec5SDimitry Andric   BBUtils->computeBlockSize(OrigBB);
10600b57cec5SDimitry Andric 
10610b57cec5SDimitry Andric   // Figure out how large the NewMBB is.  As the second half of the original
10620b57cec5SDimitry Andric   // block, it may contain a tablejump.
10630b57cec5SDimitry Andric   BBUtils->computeBlockSize(NewBB);
10640b57cec5SDimitry Andric 
10650b57cec5SDimitry Andric   // All BBOffsets following these blocks must be modified.
10660b57cec5SDimitry Andric   BBUtils->adjustBBOffsetsAfter(OrigBB);
10670b57cec5SDimitry Andric 
10680b57cec5SDimitry Andric   return NewBB;
10690b57cec5SDimitry Andric }
10700b57cec5SDimitry Andric 
10710b57cec5SDimitry Andric /// getUserOffset - Compute the offset of U.MI as seen by the hardware
10720b57cec5SDimitry Andric /// displacement computation.  Update U.KnownAlignment to match its current
10730b57cec5SDimitry Andric /// basic block location.
10740b57cec5SDimitry Andric unsigned ARMConstantIslands::getUserOffset(CPUser &U) const {
10750b57cec5SDimitry Andric   unsigned UserOffset = BBUtils->getOffsetOf(U.MI);
10760b57cec5SDimitry Andric 
10770b57cec5SDimitry Andric   SmallVectorImpl<BasicBlockInfo> &BBInfo = BBUtils->getBBInfo();
10780b57cec5SDimitry Andric   const BasicBlockInfo &BBI = BBInfo[U.MI->getParent()->getNumber()];
10790b57cec5SDimitry Andric   unsigned KnownBits = BBI.internalKnownBits();
10800b57cec5SDimitry Andric 
10810b57cec5SDimitry Andric   // The value read from PC is offset from the actual instruction address.
10820b57cec5SDimitry Andric   UserOffset += (isThumb ? 4 : 8);
10830b57cec5SDimitry Andric 
10840b57cec5SDimitry Andric   // Because of inline assembly, we may not know the alignment (mod 4) of U.MI.
10850b57cec5SDimitry Andric   // Make sure U.getMaxDisp() returns a constrained range.
10860b57cec5SDimitry Andric   U.KnownAlignment = (KnownBits >= 2);
10870b57cec5SDimitry Andric 
10880b57cec5SDimitry Andric   // On Thumb, offsets==2 mod 4 are rounded down by the hardware for
10890b57cec5SDimitry Andric   // purposes of the displacement computation; compensate for that here.
10900b57cec5SDimitry Andric   // For unknown alignments, getMaxDisp() constrains the range instead.
10910b57cec5SDimitry Andric   if (isThumb && U.KnownAlignment)
10920b57cec5SDimitry Andric     UserOffset &= ~3u;
10930b57cec5SDimitry Andric 
10940b57cec5SDimitry Andric   return UserOffset;
10950b57cec5SDimitry Andric }
10960b57cec5SDimitry Andric 
10970b57cec5SDimitry Andric /// isOffsetInRange - Checks whether UserOffset (the location of a constant pool
10980b57cec5SDimitry Andric /// reference) is within MaxDisp of TrialOffset (a proposed location of a
10990b57cec5SDimitry Andric /// constant pool entry).
11000b57cec5SDimitry Andric /// UserOffset is computed by getUserOffset above to include PC adjustments. If
11010b57cec5SDimitry Andric /// the mod 4 alignment of UserOffset is not known, the uncertainty must be
11020b57cec5SDimitry Andric /// subtracted from MaxDisp instead. CPUser::getMaxDisp() does that.
11030b57cec5SDimitry Andric bool ARMConstantIslands::isOffsetInRange(unsigned UserOffset,
11040b57cec5SDimitry Andric                                          unsigned TrialOffset, unsigned MaxDisp,
11050b57cec5SDimitry Andric                                          bool NegativeOK, bool IsSoImm) {
11060b57cec5SDimitry Andric   if (UserOffset <= TrialOffset) {
11070b57cec5SDimitry Andric     // User before the Trial.
11080b57cec5SDimitry Andric     if (TrialOffset - UserOffset <= MaxDisp)
11090b57cec5SDimitry Andric       return true;
11100b57cec5SDimitry Andric     // FIXME: Make use full range of soimm values.
11110b57cec5SDimitry Andric   } else if (NegativeOK) {
11120b57cec5SDimitry Andric     if (UserOffset - TrialOffset <= MaxDisp)
11130b57cec5SDimitry Andric       return true;
11140b57cec5SDimitry Andric     // FIXME: Make use full range of soimm values.
11150b57cec5SDimitry Andric   }
11160b57cec5SDimitry Andric   return false;
11170b57cec5SDimitry Andric }
11180b57cec5SDimitry Andric 
11190b57cec5SDimitry Andric /// isWaterInRange - Returns true if a CPE placed after the specified
11200b57cec5SDimitry Andric /// Water (a basic block) will be in range for the specific MI.
11210b57cec5SDimitry Andric ///
11220b57cec5SDimitry Andric /// Compute how much the function will grow by inserting a CPE after Water.
11230b57cec5SDimitry Andric bool ARMConstantIslands::isWaterInRange(unsigned UserOffset,
11240b57cec5SDimitry Andric                                         MachineBasicBlock* Water, CPUser &U,
11250b57cec5SDimitry Andric                                         unsigned &Growth) {
11260b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
11278bcb0991SDimitry Andric   const Align CPEAlign = getCPEAlign(U.CPEMI);
11288bcb0991SDimitry Andric   const unsigned CPEOffset = BBInfo[Water->getNumber()].postOffset(CPEAlign);
11298bcb0991SDimitry Andric   unsigned NextBlockOffset;
11308bcb0991SDimitry Andric   Align NextBlockAlignment;
11310b57cec5SDimitry Andric   MachineFunction::const_iterator NextBlock = Water->getIterator();
11320b57cec5SDimitry Andric   if (++NextBlock == MF->end()) {
11330b57cec5SDimitry Andric     NextBlockOffset = BBInfo[Water->getNumber()].postOffset();
11340b57cec5SDimitry Andric   } else {
11350b57cec5SDimitry Andric     NextBlockOffset = BBInfo[NextBlock->getNumber()].Offset;
11360b57cec5SDimitry Andric     NextBlockAlignment = NextBlock->getAlignment();
11370b57cec5SDimitry Andric   }
11380b57cec5SDimitry Andric   unsigned Size = U.CPEMI->getOperand(2).getImm();
11390b57cec5SDimitry Andric   unsigned CPEEnd = CPEOffset + Size;
11400b57cec5SDimitry Andric 
11410b57cec5SDimitry Andric   // The CPE may be able to hide in the alignment padding before the next
11420b57cec5SDimitry Andric   // block. It may also cause more padding to be required if it is more aligned
11430b57cec5SDimitry Andric   // that the next block.
11440b57cec5SDimitry Andric   if (CPEEnd > NextBlockOffset) {
11450b57cec5SDimitry Andric     Growth = CPEEnd - NextBlockOffset;
11460b57cec5SDimitry Andric     // Compute the padding that would go at the end of the CPE to align the next
11470b57cec5SDimitry Andric     // block.
11488bcb0991SDimitry Andric     Growth += offsetToAlignment(CPEEnd, NextBlockAlignment);
11490b57cec5SDimitry Andric 
11500b57cec5SDimitry Andric     // If the CPE is to be inserted before the instruction, that will raise
11510b57cec5SDimitry Andric     // the offset of the instruction. Also account for unknown alignment padding
11520b57cec5SDimitry Andric     // in blocks between CPE and the user.
11530b57cec5SDimitry Andric     if (CPEOffset < UserOffset)
11548bcb0991SDimitry Andric       UserOffset += Growth + UnknownPadding(MF->getAlignment(), Log2(CPEAlign));
11550b57cec5SDimitry Andric   } else
11560b57cec5SDimitry Andric     // CPE fits in existing padding.
11570b57cec5SDimitry Andric     Growth = 0;
11580b57cec5SDimitry Andric 
11590b57cec5SDimitry Andric   return isOffsetInRange(UserOffset, CPEOffset, U);
11600b57cec5SDimitry Andric }
11610b57cec5SDimitry Andric 
11620b57cec5SDimitry Andric /// isCPEntryInRange - Returns true if the distance between specific MI and
11630b57cec5SDimitry Andric /// specific ConstPool entry instruction can fit in MI's displacement field.
11640b57cec5SDimitry Andric bool ARMConstantIslands::isCPEntryInRange(MachineInstr *MI, unsigned UserOffset,
11650b57cec5SDimitry Andric                                       MachineInstr *CPEMI, unsigned MaxDisp,
11660b57cec5SDimitry Andric                                       bool NegOk, bool DoDump) {
11670b57cec5SDimitry Andric   unsigned CPEOffset = BBUtils->getOffsetOf(CPEMI);
11680b57cec5SDimitry Andric 
11690b57cec5SDimitry Andric   if (DoDump) {
11700b57cec5SDimitry Andric     LLVM_DEBUG({
11710b57cec5SDimitry Andric         BBInfoVector &BBInfo = BBUtils->getBBInfo();
11720b57cec5SDimitry Andric       unsigned Block = MI->getParent()->getNumber();
11730b57cec5SDimitry Andric       const BasicBlockInfo &BBI = BBInfo[Block];
11740b57cec5SDimitry Andric       dbgs() << "User of CPE#" << CPEMI->getOperand(0).getImm()
11750b57cec5SDimitry Andric              << " max delta=" << MaxDisp
11760b57cec5SDimitry Andric              << format(" insn address=%#x", UserOffset) << " in "
11770b57cec5SDimitry Andric              << printMBBReference(*MI->getParent()) << ": "
11780b57cec5SDimitry Andric              << format("%#x-%x\t", BBI.Offset, BBI.postOffset()) << *MI
11790b57cec5SDimitry Andric              << format("CPE address=%#x offset=%+d: ", CPEOffset,
11800b57cec5SDimitry Andric                        int(CPEOffset - UserOffset));
11810b57cec5SDimitry Andric     });
11820b57cec5SDimitry Andric   }
11830b57cec5SDimitry Andric 
11840b57cec5SDimitry Andric   return isOffsetInRange(UserOffset, CPEOffset, MaxDisp, NegOk);
11850b57cec5SDimitry Andric }
11860b57cec5SDimitry Andric 
11870b57cec5SDimitry Andric #ifndef NDEBUG
11880b57cec5SDimitry Andric /// BBIsJumpedOver - Return true of the specified basic block's only predecessor
11890b57cec5SDimitry Andric /// unconditionally branches to its only successor.
11900b57cec5SDimitry Andric static bool BBIsJumpedOver(MachineBasicBlock *MBB) {
11910b57cec5SDimitry Andric   if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
11920b57cec5SDimitry Andric     return false;
11930b57cec5SDimitry Andric 
11940b57cec5SDimitry Andric   MachineBasicBlock *Succ = *MBB->succ_begin();
11950b57cec5SDimitry Andric   MachineBasicBlock *Pred = *MBB->pred_begin();
11960b57cec5SDimitry Andric   MachineInstr *PredMI = &Pred->back();
11970b57cec5SDimitry Andric   if (PredMI->getOpcode() == ARM::B || PredMI->getOpcode() == ARM::tB
11980b57cec5SDimitry Andric       || PredMI->getOpcode() == ARM::t2B)
11990b57cec5SDimitry Andric     return PredMI->getOperand(0).getMBB() == Succ;
12000b57cec5SDimitry Andric   return false;
12010b57cec5SDimitry Andric }
12020b57cec5SDimitry Andric #endif // NDEBUG
12030b57cec5SDimitry Andric 
12040b57cec5SDimitry Andric /// decrementCPEReferenceCount - find the constant pool entry with index CPI
12050b57cec5SDimitry Andric /// and instruction CPEMI, and decrement its refcount.  If the refcount
12060b57cec5SDimitry Andric /// becomes 0 remove the entry and instruction.  Returns true if we removed
12070b57cec5SDimitry Andric /// the entry, false if we didn't.
12080b57cec5SDimitry Andric bool ARMConstantIslands::decrementCPEReferenceCount(unsigned CPI,
12090b57cec5SDimitry Andric                                                     MachineInstr *CPEMI) {
12100b57cec5SDimitry Andric   // Find the old entry. Eliminate it if it is no longer used.
12110b57cec5SDimitry Andric   CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
12120b57cec5SDimitry Andric   assert(CPE && "Unexpected!");
12130b57cec5SDimitry Andric   if (--CPE->RefCount == 0) {
12140b57cec5SDimitry Andric     removeDeadCPEMI(CPEMI);
12150b57cec5SDimitry Andric     CPE->CPEMI = nullptr;
12160b57cec5SDimitry Andric     --NumCPEs;
12170b57cec5SDimitry Andric     return true;
12180b57cec5SDimitry Andric   }
12190b57cec5SDimitry Andric   return false;
12200b57cec5SDimitry Andric }
12210b57cec5SDimitry Andric 
12220b57cec5SDimitry Andric unsigned ARMConstantIslands::getCombinedIndex(const MachineInstr *CPEMI) {
12230b57cec5SDimitry Andric   if (CPEMI->getOperand(1).isCPI())
12240b57cec5SDimitry Andric     return CPEMI->getOperand(1).getIndex();
12250b57cec5SDimitry Andric 
12260b57cec5SDimitry Andric   return JumpTableEntryIndices[CPEMI->getOperand(1).getIndex()];
12270b57cec5SDimitry Andric }
12280b57cec5SDimitry Andric 
12290b57cec5SDimitry Andric /// LookForCPEntryInRange - see if the currently referenced CPE is in range;
12300b57cec5SDimitry Andric /// if not, see if an in-range clone of the CPE is in range, and if so,
12310b57cec5SDimitry Andric /// change the data structures so the user references the clone.  Returns:
12320b57cec5SDimitry Andric /// 0 = no existing entry found
12330b57cec5SDimitry Andric /// 1 = entry found, and there were no code insertions or deletions
12340b57cec5SDimitry Andric /// 2 = entry found, and there were code insertions or deletions
12350b57cec5SDimitry Andric int ARMConstantIslands::findInRangeCPEntry(CPUser& U, unsigned UserOffset) {
12360b57cec5SDimitry Andric   MachineInstr *UserMI = U.MI;
12370b57cec5SDimitry Andric   MachineInstr *CPEMI  = U.CPEMI;
12380b57cec5SDimitry Andric 
12390b57cec5SDimitry Andric   // Check to see if the CPE is already in-range.
12400b57cec5SDimitry Andric   if (isCPEntryInRange(UserMI, UserOffset, CPEMI, U.getMaxDisp(), U.NegOk,
12410b57cec5SDimitry Andric                        true)) {
12420b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "In range\n");
12430b57cec5SDimitry Andric     return 1;
12440b57cec5SDimitry Andric   }
12450b57cec5SDimitry Andric 
12460b57cec5SDimitry Andric   // No.  Look for previously created clones of the CPE that are in range.
12470b57cec5SDimitry Andric   unsigned CPI = getCombinedIndex(CPEMI);
12480b57cec5SDimitry Andric   std::vector<CPEntry> &CPEs = CPEntries[CPI];
12490eae32dcSDimitry Andric   for (CPEntry &CPE : CPEs) {
12500b57cec5SDimitry Andric     // We already tried this one
12510eae32dcSDimitry Andric     if (CPE.CPEMI == CPEMI)
12520b57cec5SDimitry Andric       continue;
12530b57cec5SDimitry Andric     // Removing CPEs can leave empty entries, skip
12540eae32dcSDimitry Andric     if (CPE.CPEMI == nullptr)
12550b57cec5SDimitry Andric       continue;
12560eae32dcSDimitry Andric     if (isCPEntryInRange(UserMI, UserOffset, CPE.CPEMI, U.getMaxDisp(),
12570b57cec5SDimitry Andric                          U.NegOk)) {
12580eae32dcSDimitry Andric       LLVM_DEBUG(dbgs() << "Replacing CPE#" << CPI << " with CPE#" << CPE.CPI
12590eae32dcSDimitry Andric                         << "\n");
12600b57cec5SDimitry Andric       // Point the CPUser node to the replacement
12610eae32dcSDimitry Andric       U.CPEMI = CPE.CPEMI;
12620b57cec5SDimitry Andric       // Change the CPI in the instruction operand to refer to the clone.
12634824e7fdSDimitry Andric       for (MachineOperand &MO : UserMI->operands())
12644824e7fdSDimitry Andric         if (MO.isCPI()) {
12650eae32dcSDimitry Andric           MO.setIndex(CPE.CPI);
12660b57cec5SDimitry Andric           break;
12670b57cec5SDimitry Andric         }
12680b57cec5SDimitry Andric       // Adjust the refcount of the clone...
12690eae32dcSDimitry Andric       CPE.RefCount++;
12700b57cec5SDimitry Andric       // ...and the original.  If we didn't remove the old entry, none of the
12710b57cec5SDimitry Andric       // addresses changed, so we don't need another pass.
12720b57cec5SDimitry Andric       return decrementCPEReferenceCount(CPI, CPEMI) ? 2 : 1;
12730b57cec5SDimitry Andric     }
12740b57cec5SDimitry Andric   }
12750b57cec5SDimitry Andric   return 0;
12760b57cec5SDimitry Andric }
12770b57cec5SDimitry Andric 
12780b57cec5SDimitry Andric /// getUnconditionalBrDisp - Returns the maximum displacement that can fit in
12790b57cec5SDimitry Andric /// the specific unconditional branch instruction.
12800b57cec5SDimitry Andric static inline unsigned getUnconditionalBrDisp(int Opc) {
12810b57cec5SDimitry Andric   switch (Opc) {
12820b57cec5SDimitry Andric   case ARM::tB:
12830b57cec5SDimitry Andric     return ((1<<10)-1)*2;
12840b57cec5SDimitry Andric   case ARM::t2B:
12850b57cec5SDimitry Andric     return ((1<<23)-1)*2;
12860b57cec5SDimitry Andric   default:
12870b57cec5SDimitry Andric     break;
12880b57cec5SDimitry Andric   }
12890b57cec5SDimitry Andric 
12900b57cec5SDimitry Andric   return ((1<<23)-1)*4;
12910b57cec5SDimitry Andric }
12920b57cec5SDimitry Andric 
12930b57cec5SDimitry Andric /// findAvailableWater - Look for an existing entry in the WaterList in which
12940b57cec5SDimitry Andric /// we can place the CPE referenced from U so it's within range of U's MI.
12950b57cec5SDimitry Andric /// Returns true if found, false if not.  If it returns true, WaterIter
12960b57cec5SDimitry Andric /// is set to the WaterList entry.  For Thumb, prefer water that will not
12970b57cec5SDimitry Andric /// introduce padding to water that will.  To ensure that this pass
12980b57cec5SDimitry Andric /// terminates, the CPE location for a particular CPUser is only allowed to
12990b57cec5SDimitry Andric /// move to a lower address, so search backward from the end of the list and
13000b57cec5SDimitry Andric /// prefer the first water that is in range.
13010b57cec5SDimitry Andric bool ARMConstantIslands::findAvailableWater(CPUser &U, unsigned UserOffset,
13020b57cec5SDimitry Andric                                             water_iterator &WaterIter,
13030b57cec5SDimitry Andric                                             bool CloserWater) {
13040b57cec5SDimitry Andric   if (WaterList.empty())
13050b57cec5SDimitry Andric     return false;
13060b57cec5SDimitry Andric 
13070b57cec5SDimitry Andric   unsigned BestGrowth = ~0u;
13080b57cec5SDimitry Andric   // The nearest water without splitting the UserBB is right after it.
13090b57cec5SDimitry Andric   // If the distance is still large (we have a big BB), then we need to split it
13100b57cec5SDimitry Andric   // if we don't converge after certain iterations. This helps the following
13110b57cec5SDimitry Andric   // situation to converge:
13120b57cec5SDimitry Andric   //   BB0:
13130b57cec5SDimitry Andric   //      Big BB
13140b57cec5SDimitry Andric   //   BB1:
13150b57cec5SDimitry Andric   //      Constant Pool
13160b57cec5SDimitry Andric   // When a CP access is out of range, BB0 may be used as water. However,
13170b57cec5SDimitry Andric   // inserting islands between BB0 and BB1 makes other accesses out of range.
13180b57cec5SDimitry Andric   MachineBasicBlock *UserBB = U.MI->getParent();
13190b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
13208bcb0991SDimitry Andric   const Align CPEAlign = getCPEAlign(U.CPEMI);
13218bcb0991SDimitry Andric   unsigned MinNoSplitDisp = BBInfo[UserBB->getNumber()].postOffset(CPEAlign);
13220b57cec5SDimitry Andric   if (CloserWater && MinNoSplitDisp > U.getMaxDisp() / 2)
13230b57cec5SDimitry Andric     return false;
13240b57cec5SDimitry Andric   for (water_iterator IP = std::prev(WaterList.end()), B = WaterList.begin();;
13250b57cec5SDimitry Andric        --IP) {
13260b57cec5SDimitry Andric     MachineBasicBlock* WaterBB = *IP;
13270b57cec5SDimitry Andric     // Check if water is in range and is either at a lower address than the
13280b57cec5SDimitry Andric     // current "high water mark" or a new water block that was created since
13290b57cec5SDimitry Andric     // the previous iteration by inserting an unconditional branch.  In the
13300b57cec5SDimitry Andric     // latter case, we want to allow resetting the high water mark back to
13310b57cec5SDimitry Andric     // this new water since we haven't seen it before.  Inserting branches
13320b57cec5SDimitry Andric     // should be relatively uncommon and when it does happen, we want to be
13330b57cec5SDimitry Andric     // sure to take advantage of it for all the CPEs near that block, so that
13340b57cec5SDimitry Andric     // we don't insert more branches than necessary.
13350b57cec5SDimitry Andric     // When CloserWater is true, we try to find the lowest address after (or
13360b57cec5SDimitry Andric     // equal to) user MI's BB no matter of padding growth.
13370b57cec5SDimitry Andric     unsigned Growth;
13380b57cec5SDimitry Andric     if (isWaterInRange(UserOffset, WaterBB, U, Growth) &&
13390b57cec5SDimitry Andric         (WaterBB->getNumber() < U.HighWaterMark->getNumber() ||
13400b57cec5SDimitry Andric          NewWaterList.count(WaterBB) || WaterBB == U.MI->getParent()) &&
13410b57cec5SDimitry Andric         Growth < BestGrowth) {
13420b57cec5SDimitry Andric       // This is the least amount of required padding seen so far.
13430b57cec5SDimitry Andric       BestGrowth = Growth;
13440b57cec5SDimitry Andric       WaterIter = IP;
13450b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "Found water after " << printMBBReference(*WaterBB)
13460b57cec5SDimitry Andric                         << " Growth=" << Growth << '\n');
13470b57cec5SDimitry Andric 
13480b57cec5SDimitry Andric       if (CloserWater && WaterBB == U.MI->getParent())
13490b57cec5SDimitry Andric         return true;
13500b57cec5SDimitry Andric       // Keep looking unless it is perfect and we're not looking for the lowest
13510b57cec5SDimitry Andric       // possible address.
13520b57cec5SDimitry Andric       if (!CloserWater && BestGrowth == 0)
13530b57cec5SDimitry Andric         return true;
13540b57cec5SDimitry Andric     }
13550b57cec5SDimitry Andric     if (IP == B)
13560b57cec5SDimitry Andric       break;
13570b57cec5SDimitry Andric   }
13580b57cec5SDimitry Andric   return BestGrowth != ~0u;
13590b57cec5SDimitry Andric }
13600b57cec5SDimitry Andric 
13610b57cec5SDimitry Andric /// createNewWater - No existing WaterList entry will work for
13620b57cec5SDimitry Andric /// CPUsers[CPUserIndex], so create a place to put the CPE.  The end of the
13630b57cec5SDimitry Andric /// block is used if in range, and the conditional branch munged so control
13640b57cec5SDimitry Andric /// flow is correct.  Otherwise the block is split to create a hole with an
13650b57cec5SDimitry Andric /// unconditional branch around it.  In either case NewMBB is set to a
13660b57cec5SDimitry Andric /// block following which the new island can be inserted (the WaterList
13670b57cec5SDimitry Andric /// is not adjusted).
13680b57cec5SDimitry Andric void ARMConstantIslands::createNewWater(unsigned CPUserIndex,
13690b57cec5SDimitry Andric                                         unsigned UserOffset,
13700b57cec5SDimitry Andric                                         MachineBasicBlock *&NewMBB) {
13710b57cec5SDimitry Andric   CPUser &U = CPUsers[CPUserIndex];
13720b57cec5SDimitry Andric   MachineInstr *UserMI = U.MI;
13730b57cec5SDimitry Andric   MachineInstr *CPEMI  = U.CPEMI;
13748bcb0991SDimitry Andric   const Align CPEAlign = getCPEAlign(CPEMI);
13750b57cec5SDimitry Andric   MachineBasicBlock *UserMBB = UserMI->getParent();
13760b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
13770b57cec5SDimitry Andric   const BasicBlockInfo &UserBBI = BBInfo[UserMBB->getNumber()];
13780b57cec5SDimitry Andric 
13790b57cec5SDimitry Andric   // If the block does not end in an unconditional branch already, and if the
13800b57cec5SDimitry Andric   // end of the block is within range, make new water there.  (The addition
13810b57cec5SDimitry Andric   // below is for the unconditional branch we will be adding: 4 bytes on ARM +
13820b57cec5SDimitry Andric   // Thumb2, 2 on Thumb1.
13830b57cec5SDimitry Andric   if (BBHasFallthrough(UserMBB)) {
13840b57cec5SDimitry Andric     // Size of branch to insert.
13850b57cec5SDimitry Andric     unsigned Delta = isThumb1 ? 2 : 4;
13860b57cec5SDimitry Andric     // Compute the offset where the CPE will begin.
13878bcb0991SDimitry Andric     unsigned CPEOffset = UserBBI.postOffset(CPEAlign) + Delta;
13880b57cec5SDimitry Andric 
13890b57cec5SDimitry Andric     if (isOffsetInRange(UserOffset, CPEOffset, U)) {
13900b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "Split at end of " << printMBBReference(*UserMBB)
13910b57cec5SDimitry Andric                         << format(", expected CPE offset %#x\n", CPEOffset));
13920b57cec5SDimitry Andric       NewMBB = &*++UserMBB->getIterator();
13930b57cec5SDimitry Andric       // Add an unconditional branch from UserMBB to fallthrough block.  Record
13940b57cec5SDimitry Andric       // it for branch lengthening; this new branch will not get out of range,
13950b57cec5SDimitry Andric       // but if the preceding conditional branch is out of range, the targets
13960b57cec5SDimitry Andric       // will be exchanged, and the altered branch may be out of range, so the
13970b57cec5SDimitry Andric       // machinery has to know about it.
13980b57cec5SDimitry Andric       int UncondBr = isThumb ? ((isThumb2) ? ARM::t2B : ARM::tB) : ARM::B;
13990b57cec5SDimitry Andric       if (!isThumb)
14000b57cec5SDimitry Andric         BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr)).addMBB(NewMBB);
14010b57cec5SDimitry Andric       else
14020b57cec5SDimitry Andric         BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr))
14030b57cec5SDimitry Andric             .addMBB(NewMBB)
14040b57cec5SDimitry Andric             .add(predOps(ARMCC::AL));
14050b57cec5SDimitry Andric       unsigned MaxDisp = getUnconditionalBrDisp(UncondBr);
14060b57cec5SDimitry Andric       ImmBranches.push_back(ImmBranch(&UserMBB->back(),
14070b57cec5SDimitry Andric                                       MaxDisp, false, UncondBr));
14080b57cec5SDimitry Andric       BBUtils->computeBlockSize(UserMBB);
14090b57cec5SDimitry Andric       BBUtils->adjustBBOffsetsAfter(UserMBB);
14100b57cec5SDimitry Andric       return;
14110b57cec5SDimitry Andric     }
14120b57cec5SDimitry Andric   }
14130b57cec5SDimitry Andric 
14140b57cec5SDimitry Andric   // What a big block.  Find a place within the block to split it.  This is a
14150b57cec5SDimitry Andric   // little tricky on Thumb1 since instructions are 2 bytes and constant pool
14160b57cec5SDimitry Andric   // entries are 4 bytes: if instruction I references island CPE, and
14170b57cec5SDimitry Andric   // instruction I+1 references CPE', it will not work well to put CPE as far
14180b57cec5SDimitry Andric   // forward as possible, since then CPE' cannot immediately follow it (that
14190b57cec5SDimitry Andric   // location is 2 bytes farther away from I+1 than CPE was from I) and we'd
14200b57cec5SDimitry Andric   // need to create a new island.  So, we make a first guess, then walk through
14210b57cec5SDimitry Andric   // the instructions between the one currently being looked at and the
14220b57cec5SDimitry Andric   // possible insertion point, and make sure any other instructions that
14230b57cec5SDimitry Andric   // reference CPEs will be able to use the same island area; if not, we back
14240b57cec5SDimitry Andric   // up the insertion point.
14250b57cec5SDimitry Andric 
14260b57cec5SDimitry Andric   // Try to split the block so it's fully aligned.  Compute the latest split
14270b57cec5SDimitry Andric   // point where we can add a 4-byte branch instruction, and then align to
14288bcb0991SDimitry Andric   // Align which is the largest possible alignment in the function.
14298bcb0991SDimitry Andric   const Align Align = MF->getAlignment();
14308bcb0991SDimitry Andric   assert(Align >= CPEAlign && "Over-aligned constant pool entry");
14310b57cec5SDimitry Andric   unsigned KnownBits = UserBBI.internalKnownBits();
14328bcb0991SDimitry Andric   unsigned UPad = UnknownPadding(Align, KnownBits);
14330b57cec5SDimitry Andric   unsigned BaseInsertOffset = UserOffset + U.getMaxDisp() - UPad;
14340b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << format("Split in middle of big block before %#x",
14350b57cec5SDimitry Andric                               BaseInsertOffset));
14360b57cec5SDimitry Andric 
14370b57cec5SDimitry Andric   // The 4 in the following is for the unconditional branch we'll be inserting
14380b57cec5SDimitry Andric   // (allows for long branch on Thumb1).  Alignment of the island is handled
14390b57cec5SDimitry Andric   // inside isOffsetInRange.
14400b57cec5SDimitry Andric   BaseInsertOffset -= 4;
14410b57cec5SDimitry Andric 
14420b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << format(", adjusted to %#x", BaseInsertOffset)
14438bcb0991SDimitry Andric                     << " la=" << Log2(Align) << " kb=" << KnownBits
14440b57cec5SDimitry Andric                     << " up=" << UPad << '\n');
14450b57cec5SDimitry Andric 
14460b57cec5SDimitry Andric   // This could point off the end of the block if we've already got constant
14470b57cec5SDimitry Andric   // pool entries following this block; only the last one is in the water list.
14480b57cec5SDimitry Andric   // Back past any possible branches (allow for a conditional and a maximally
14490b57cec5SDimitry Andric   // long unconditional).
14500b57cec5SDimitry Andric   if (BaseInsertOffset + 8 >= UserBBI.postOffset()) {
14510b57cec5SDimitry Andric     // Ensure BaseInsertOffset is larger than the offset of the instruction
14520b57cec5SDimitry Andric     // following UserMI so that the loop which searches for the split point
14530b57cec5SDimitry Andric     // iterates at least once.
14540b57cec5SDimitry Andric     BaseInsertOffset =
14550b57cec5SDimitry Andric         std::max(UserBBI.postOffset() - UPad - 8,
14560b57cec5SDimitry Andric                  UserOffset + TII->getInstSizeInBytes(*UserMI) + 1);
14578bcb0991SDimitry Andric     // If the CP is referenced(ie, UserOffset) is in first four instructions
14588bcb0991SDimitry Andric     // after IT, this recalculated BaseInsertOffset could be in the middle of
14598bcb0991SDimitry Andric     // an IT block. If it is, change the BaseInsertOffset to just after the
14608bcb0991SDimitry Andric     // IT block. This still make the CP Entry is in range becuase of the
14618bcb0991SDimitry Andric     // following reasons.
14628bcb0991SDimitry Andric     //   1. The initial BaseseInsertOffset calculated is (UserOffset +
14638bcb0991SDimitry Andric     //   U.getMaxDisp() - UPad).
14648bcb0991SDimitry Andric     //   2. An IT block is only at most 4 instructions plus the "it" itself (18
14658bcb0991SDimitry Andric     //   bytes).
14668bcb0991SDimitry Andric     //   3. All the relevant instructions support much larger Maximum
14678bcb0991SDimitry Andric     //   displacement.
14688bcb0991SDimitry Andric     MachineBasicBlock::iterator I = UserMI;
14698bcb0991SDimitry Andric     ++I;
14705ffd83dbSDimitry Andric     Register PredReg;
14715ffd83dbSDimitry Andric     for (unsigned Offset = UserOffset + TII->getInstSizeInBytes(*UserMI);
14728bcb0991SDimitry Andric          I->getOpcode() != ARM::t2IT &&
14738bcb0991SDimitry Andric          getITInstrPredicate(*I, PredReg) != ARMCC::AL;
14748bcb0991SDimitry Andric          Offset += TII->getInstSizeInBytes(*I), I = std::next(I)) {
14758bcb0991SDimitry Andric       BaseInsertOffset =
14768bcb0991SDimitry Andric           std::max(BaseInsertOffset, Offset + TII->getInstSizeInBytes(*I) + 1);
14778bcb0991SDimitry Andric       assert(I != UserMBB->end() && "Fell off end of block");
14788bcb0991SDimitry Andric     }
14790b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << format("Move inside block: %#x\n", BaseInsertOffset));
14800b57cec5SDimitry Andric   }
14810b57cec5SDimitry Andric   unsigned EndInsertOffset = BaseInsertOffset + 4 + UPad +
14820b57cec5SDimitry Andric     CPEMI->getOperand(2).getImm();
14830b57cec5SDimitry Andric   MachineBasicBlock::iterator MI = UserMI;
14840b57cec5SDimitry Andric   ++MI;
14850b57cec5SDimitry Andric   unsigned CPUIndex = CPUserIndex+1;
14860b57cec5SDimitry Andric   unsigned NumCPUsers = CPUsers.size();
14870b57cec5SDimitry Andric   MachineInstr *LastIT = nullptr;
14880b57cec5SDimitry Andric   for (unsigned Offset = UserOffset + TII->getInstSizeInBytes(*UserMI);
14890b57cec5SDimitry Andric        Offset < BaseInsertOffset;
14900b57cec5SDimitry Andric        Offset += TII->getInstSizeInBytes(*MI), MI = std::next(MI)) {
14910b57cec5SDimitry Andric     assert(MI != UserMBB->end() && "Fell off end of block");
14920b57cec5SDimitry Andric     if (CPUIndex < NumCPUsers && CPUsers[CPUIndex].MI == &*MI) {
14930b57cec5SDimitry Andric       CPUser &U = CPUsers[CPUIndex];
14940b57cec5SDimitry Andric       if (!isOffsetInRange(Offset, EndInsertOffset, U)) {
14950b57cec5SDimitry Andric         // Shift intertion point by one unit of alignment so it is within reach.
14968bcb0991SDimitry Andric         BaseInsertOffset -= Align.value();
14978bcb0991SDimitry Andric         EndInsertOffset -= Align.value();
14980b57cec5SDimitry Andric       }
14990b57cec5SDimitry Andric       // This is overly conservative, as we don't account for CPEMIs being
15000b57cec5SDimitry Andric       // reused within the block, but it doesn't matter much.  Also assume CPEs
15010b57cec5SDimitry Andric       // are added in order with alignment padding.  We may eventually be able
15020b57cec5SDimitry Andric       // to pack the aligned CPEs better.
15030b57cec5SDimitry Andric       EndInsertOffset += U.CPEMI->getOperand(2).getImm();
15040b57cec5SDimitry Andric       CPUIndex++;
15050b57cec5SDimitry Andric     }
15060b57cec5SDimitry Andric 
15070b57cec5SDimitry Andric     // Remember the last IT instruction.
15080b57cec5SDimitry Andric     if (MI->getOpcode() == ARM::t2IT)
15090b57cec5SDimitry Andric       LastIT = &*MI;
15100b57cec5SDimitry Andric   }
15110b57cec5SDimitry Andric 
15120b57cec5SDimitry Andric   --MI;
15130b57cec5SDimitry Andric 
15140b57cec5SDimitry Andric   // Avoid splitting an IT block.
15150b57cec5SDimitry Andric   if (LastIT) {
15165ffd83dbSDimitry Andric     Register PredReg;
15170b57cec5SDimitry Andric     ARMCC::CondCodes CC = getITInstrPredicate(*MI, PredReg);
15180b57cec5SDimitry Andric     if (CC != ARMCC::AL)
15190b57cec5SDimitry Andric       MI = LastIT;
15200b57cec5SDimitry Andric   }
15210b57cec5SDimitry Andric 
15220b57cec5SDimitry Andric   // Avoid splitting a MOVW+MOVT pair with a relocation on Windows.
15230b57cec5SDimitry Andric   // On Windows, this instruction pair is covered by one single
15240b57cec5SDimitry Andric   // IMAGE_REL_ARM_MOV32T relocation which covers both instructions. If a
15250b57cec5SDimitry Andric   // constant island is injected inbetween them, the relocation will clobber
15260b57cec5SDimitry Andric   // the instruction and fail to update the MOVT instruction.
15270b57cec5SDimitry Andric   // (These instructions are bundled up until right before the ConstantIslands
15280b57cec5SDimitry Andric   // pass.)
15290b57cec5SDimitry Andric   if (STI->isTargetWindows() && isThumb && MI->getOpcode() == ARM::t2MOVTi16 &&
15300b57cec5SDimitry Andric       (MI->getOperand(2).getTargetFlags() & ARMII::MO_OPTION_MASK) ==
15310b57cec5SDimitry Andric           ARMII::MO_HI16) {
15320b57cec5SDimitry Andric     --MI;
15330b57cec5SDimitry Andric     assert(MI->getOpcode() == ARM::t2MOVi16 &&
15340b57cec5SDimitry Andric            (MI->getOperand(1).getTargetFlags() & ARMII::MO_OPTION_MASK) ==
15350b57cec5SDimitry Andric                ARMII::MO_LO16);
15360b57cec5SDimitry Andric   }
15370b57cec5SDimitry Andric 
15380b57cec5SDimitry Andric   // We really must not split an IT block.
15398bcb0991SDimitry Andric #ifndef NDEBUG
15405ffd83dbSDimitry Andric   Register PredReg;
15418bcb0991SDimitry Andric   assert(!isThumb || getITInstrPredicate(*MI, PredReg) == ARMCC::AL);
15428bcb0991SDimitry Andric #endif
15430b57cec5SDimitry Andric   NewMBB = splitBlockBeforeInstr(&*MI);
15440b57cec5SDimitry Andric }
15450b57cec5SDimitry Andric 
15460b57cec5SDimitry Andric /// handleConstantPoolUser - Analyze the specified user, checking to see if it
15470b57cec5SDimitry Andric /// is out-of-range.  If so, pick up the constant pool value and move it some
15480b57cec5SDimitry Andric /// place in-range.  Return true if we changed any addresses (thus must run
15490b57cec5SDimitry Andric /// another pass of branch lengthening), false otherwise.
15500b57cec5SDimitry Andric bool ARMConstantIslands::handleConstantPoolUser(unsigned CPUserIndex,
15510b57cec5SDimitry Andric                                                 bool CloserWater) {
15520b57cec5SDimitry Andric   CPUser &U = CPUsers[CPUserIndex];
15530b57cec5SDimitry Andric   MachineInstr *UserMI = U.MI;
15540b57cec5SDimitry Andric   MachineInstr *CPEMI  = U.CPEMI;
15550b57cec5SDimitry Andric   unsigned CPI = getCombinedIndex(CPEMI);
15560b57cec5SDimitry Andric   unsigned Size = CPEMI->getOperand(2).getImm();
15570b57cec5SDimitry Andric   // Compute this only once, it's expensive.
15580b57cec5SDimitry Andric   unsigned UserOffset = getUserOffset(U);
15590b57cec5SDimitry Andric 
15600b57cec5SDimitry Andric   // See if the current entry is within range, or there is a clone of it
15610b57cec5SDimitry Andric   // in range.
15620b57cec5SDimitry Andric   int result = findInRangeCPEntry(U, UserOffset);
15630b57cec5SDimitry Andric   if (result==1) return false;
15640b57cec5SDimitry Andric   else if (result==2) return true;
15650b57cec5SDimitry Andric 
15660b57cec5SDimitry Andric   // No existing clone of this CPE is within range.
15670b57cec5SDimitry Andric   // We will be generating a new clone.  Get a UID for it.
15680b57cec5SDimitry Andric   unsigned ID = AFI->createPICLabelUId();
15690b57cec5SDimitry Andric 
15700b57cec5SDimitry Andric   // Look for water where we can place this CPE.
15710b57cec5SDimitry Andric   MachineBasicBlock *NewIsland = MF->CreateMachineBasicBlock();
15720b57cec5SDimitry Andric   MachineBasicBlock *NewMBB;
15730b57cec5SDimitry Andric   water_iterator IP;
15740b57cec5SDimitry Andric   if (findAvailableWater(U, UserOffset, IP, CloserWater)) {
15750b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Found water in range\n");
15760b57cec5SDimitry Andric     MachineBasicBlock *WaterBB = *IP;
15770b57cec5SDimitry Andric 
15780b57cec5SDimitry Andric     // If the original WaterList entry was "new water" on this iteration,
15790b57cec5SDimitry Andric     // propagate that to the new island.  This is just keeping NewWaterList
15800b57cec5SDimitry Andric     // updated to match the WaterList, which will be updated below.
15810b57cec5SDimitry Andric     if (NewWaterList.erase(WaterBB))
15820b57cec5SDimitry Andric       NewWaterList.insert(NewIsland);
15830b57cec5SDimitry Andric 
15840b57cec5SDimitry Andric     // The new CPE goes before the following block (NewMBB).
15850b57cec5SDimitry Andric     NewMBB = &*++WaterBB->getIterator();
15860b57cec5SDimitry Andric   } else {
15870b57cec5SDimitry Andric     // No water found.
15880b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "No water found\n");
15890b57cec5SDimitry Andric     createNewWater(CPUserIndex, UserOffset, NewMBB);
15900b57cec5SDimitry Andric 
15910b57cec5SDimitry Andric     // splitBlockBeforeInstr adds to WaterList, which is important when it is
15920b57cec5SDimitry Andric     // called while handling branches so that the water will be seen on the
15930b57cec5SDimitry Andric     // next iteration for constant pools, but in this context, we don't want
15940b57cec5SDimitry Andric     // it.  Check for this so it will be removed from the WaterList.
15950b57cec5SDimitry Andric     // Also remove any entry from NewWaterList.
15960b57cec5SDimitry Andric     MachineBasicBlock *WaterBB = &*--NewMBB->getIterator();
15970b57cec5SDimitry Andric     IP = find(WaterList, WaterBB);
15980b57cec5SDimitry Andric     if (IP != WaterList.end())
15990b57cec5SDimitry Andric       NewWaterList.erase(WaterBB);
16000b57cec5SDimitry Andric 
16010b57cec5SDimitry Andric     // We are adding new water.  Update NewWaterList.
16020b57cec5SDimitry Andric     NewWaterList.insert(NewIsland);
16030b57cec5SDimitry Andric   }
16040b57cec5SDimitry Andric   // Always align the new block because CP entries can be smaller than 4
16050b57cec5SDimitry Andric   // bytes. Be careful not to decrease the existing alignment, e.g. NewMBB may
16060b57cec5SDimitry Andric   // be an already aligned constant pool block.
16078bcb0991SDimitry Andric   const Align Alignment = isThumb ? Align(2) : Align(4);
16088bcb0991SDimitry Andric   if (NewMBB->getAlignment() < Alignment)
16098bcb0991SDimitry Andric     NewMBB->setAlignment(Alignment);
16100b57cec5SDimitry Andric 
16110b57cec5SDimitry Andric   // Remove the original WaterList entry; we want subsequent insertions in
16120b57cec5SDimitry Andric   // this vicinity to go after the one we're about to insert.  This
16130b57cec5SDimitry Andric   // considerably reduces the number of times we have to move the same CPE
16140b57cec5SDimitry Andric   // more than once and is also important to ensure the algorithm terminates.
16150b57cec5SDimitry Andric   if (IP != WaterList.end())
16160b57cec5SDimitry Andric     WaterList.erase(IP);
16170b57cec5SDimitry Andric 
16180b57cec5SDimitry Andric   // Okay, we know we can put an island before NewMBB now, do it!
16190b57cec5SDimitry Andric   MF->insert(NewMBB->getIterator(), NewIsland);
16200b57cec5SDimitry Andric 
16210b57cec5SDimitry Andric   // Update internal data structures to account for the newly inserted MBB.
16220b57cec5SDimitry Andric   updateForInsertedWaterBlock(NewIsland);
16230b57cec5SDimitry Andric 
16240b57cec5SDimitry Andric   // Now that we have an island to add the CPE to, clone the original CPE and
16250b57cec5SDimitry Andric   // add it to the island.
16260b57cec5SDimitry Andric   U.HighWaterMark = NewIsland;
16270b57cec5SDimitry Andric   U.CPEMI = BuildMI(NewIsland, DebugLoc(), CPEMI->getDesc())
16280b57cec5SDimitry Andric                 .addImm(ID)
16290b57cec5SDimitry Andric                 .add(CPEMI->getOperand(1))
16300b57cec5SDimitry Andric                 .addImm(Size);
16310b57cec5SDimitry Andric   CPEntries[CPI].push_back(CPEntry(U.CPEMI, ID, 1));
16320b57cec5SDimitry Andric   ++NumCPEs;
16330b57cec5SDimitry Andric 
16340b57cec5SDimitry Andric   // Decrement the old entry, and remove it if refcount becomes 0.
16350b57cec5SDimitry Andric   decrementCPEReferenceCount(CPI, CPEMI);
16360b57cec5SDimitry Andric 
16370b57cec5SDimitry Andric   // Mark the basic block as aligned as required by the const-pool entry.
16388bcb0991SDimitry Andric   NewIsland->setAlignment(getCPEAlign(U.CPEMI));
16390b57cec5SDimitry Andric 
16400b57cec5SDimitry Andric   // Increase the size of the island block to account for the new entry.
16410b57cec5SDimitry Andric   BBUtils->adjustBBSize(NewIsland, Size);
16420b57cec5SDimitry Andric   BBUtils->adjustBBOffsetsAfter(&*--NewIsland->getIterator());
16430b57cec5SDimitry Andric 
16440b57cec5SDimitry Andric   // Finally, change the CPI in the instruction operand to be ID.
16454824e7fdSDimitry Andric   for (MachineOperand &MO : UserMI->operands())
16464824e7fdSDimitry Andric     if (MO.isCPI()) {
16474824e7fdSDimitry Andric       MO.setIndex(ID);
16480b57cec5SDimitry Andric       break;
16490b57cec5SDimitry Andric     }
16500b57cec5SDimitry Andric 
16510b57cec5SDimitry Andric   LLVM_DEBUG(
16520b57cec5SDimitry Andric       dbgs() << "  Moved CPE to #" << ID << " CPI=" << CPI
16530b57cec5SDimitry Andric              << format(" offset=%#x\n",
16540b57cec5SDimitry Andric                        BBUtils->getBBInfo()[NewIsland->getNumber()].Offset));
16550b57cec5SDimitry Andric 
16560b57cec5SDimitry Andric   return true;
16570b57cec5SDimitry Andric }
16580b57cec5SDimitry Andric 
16590b57cec5SDimitry Andric /// removeDeadCPEMI - Remove a dead constant pool entry instruction. Update
16600b57cec5SDimitry Andric /// sizes and offsets of impacted basic blocks.
16610b57cec5SDimitry Andric void ARMConstantIslands::removeDeadCPEMI(MachineInstr *CPEMI) {
16620b57cec5SDimitry Andric   MachineBasicBlock *CPEBB = CPEMI->getParent();
16630b57cec5SDimitry Andric   unsigned Size = CPEMI->getOperand(2).getImm();
16640b57cec5SDimitry Andric   CPEMI->eraseFromParent();
16650b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
16660b57cec5SDimitry Andric   BBUtils->adjustBBSize(CPEBB, -Size);
16670b57cec5SDimitry Andric   // All succeeding offsets have the current size value added in, fix this.
16680b57cec5SDimitry Andric   if (CPEBB->empty()) {
16690b57cec5SDimitry Andric     BBInfo[CPEBB->getNumber()].Size = 0;
16700b57cec5SDimitry Andric 
16710b57cec5SDimitry Andric     // This block no longer needs to be aligned.
16725ffd83dbSDimitry Andric     CPEBB->setAlignment(Align(1));
16738bcb0991SDimitry Andric   } else {
16740b57cec5SDimitry Andric     // Entries are sorted by descending alignment, so realign from the front.
16758bcb0991SDimitry Andric     CPEBB->setAlignment(getCPEAlign(&*CPEBB->begin()));
16768bcb0991SDimitry Andric   }
16770b57cec5SDimitry Andric 
16780b57cec5SDimitry Andric   BBUtils->adjustBBOffsetsAfter(CPEBB);
16790b57cec5SDimitry Andric   // An island has only one predecessor BB and one successor BB. Check if
16800b57cec5SDimitry Andric   // this BB's predecessor jumps directly to this BB's successor. This
16810b57cec5SDimitry Andric   // shouldn't happen currently.
16820b57cec5SDimitry Andric   assert(!BBIsJumpedOver(CPEBB) && "How did this happen?");
16830b57cec5SDimitry Andric   // FIXME: remove the empty blocks after all the work is done?
16840b57cec5SDimitry Andric }
16850b57cec5SDimitry Andric 
16860b57cec5SDimitry Andric /// removeUnusedCPEntries - Remove constant pool entries whose refcounts
16870b57cec5SDimitry Andric /// are zero.
16880b57cec5SDimitry Andric bool ARMConstantIslands::removeUnusedCPEntries() {
16890b57cec5SDimitry Andric   unsigned MadeChange = false;
16900eae32dcSDimitry Andric   for (std::vector<CPEntry> &CPEs : CPEntries) {
16910eae32dcSDimitry Andric     for (CPEntry &CPE : CPEs) {
16920eae32dcSDimitry Andric       if (CPE.RefCount == 0 && CPE.CPEMI) {
16930eae32dcSDimitry Andric         removeDeadCPEMI(CPE.CPEMI);
16940eae32dcSDimitry Andric         CPE.CPEMI = nullptr;
16950b57cec5SDimitry Andric         MadeChange = true;
16960b57cec5SDimitry Andric       }
16970b57cec5SDimitry Andric     }
16980b57cec5SDimitry Andric   }
16990b57cec5SDimitry Andric   return MadeChange;
17000b57cec5SDimitry Andric }
17010b57cec5SDimitry Andric 
17020b57cec5SDimitry Andric 
17030b57cec5SDimitry Andric /// fixupImmediateBr - Fix up an immediate branch whose destination is too far
17040b57cec5SDimitry Andric /// away to fit in its displacement field.
17050b57cec5SDimitry Andric bool ARMConstantIslands::fixupImmediateBr(ImmBranch &Br) {
17060b57cec5SDimitry Andric   MachineInstr *MI = Br.MI;
17070b57cec5SDimitry Andric   MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
17080b57cec5SDimitry Andric 
17090b57cec5SDimitry Andric   // Check to see if the DestBB is already in-range.
17100b57cec5SDimitry Andric   if (BBUtils->isBBInRange(MI, DestBB, Br.MaxDisp))
17110b57cec5SDimitry Andric     return false;
17120b57cec5SDimitry Andric 
17130b57cec5SDimitry Andric   if (!Br.isCond)
17140b57cec5SDimitry Andric     return fixupUnconditionalBr(Br);
17150b57cec5SDimitry Andric   return fixupConditionalBr(Br);
17160b57cec5SDimitry Andric }
17170b57cec5SDimitry Andric 
17180b57cec5SDimitry Andric /// fixupUnconditionalBr - Fix up an unconditional branch whose destination is
17190b57cec5SDimitry Andric /// too far away to fit in its displacement field. If the LR register has been
17200b57cec5SDimitry Andric /// spilled in the epilogue, then we can use BL to implement a far jump.
17210b57cec5SDimitry Andric /// Otherwise, add an intermediate branch instruction to a branch.
17220b57cec5SDimitry Andric bool
17230b57cec5SDimitry Andric ARMConstantIslands::fixupUnconditionalBr(ImmBranch &Br) {
17240b57cec5SDimitry Andric   MachineInstr *MI = Br.MI;
17250b57cec5SDimitry Andric   MachineBasicBlock *MBB = MI->getParent();
17260b57cec5SDimitry Andric   if (!isThumb1)
17270b57cec5SDimitry Andric     llvm_unreachable("fixupUnconditionalBr is Thumb1 only!");
17280b57cec5SDimitry Andric 
17290b57cec5SDimitry Andric   if (!AFI->isLRSpilled())
17300b57cec5SDimitry Andric     report_fatal_error("underestimated function size");
17310b57cec5SDimitry Andric 
17320b57cec5SDimitry Andric   // Use BL to implement far jump.
17330b57cec5SDimitry Andric   Br.MaxDisp = (1 << 21) * 2;
17340b57cec5SDimitry Andric   MI->setDesc(TII->get(ARM::tBfar));
17350b57cec5SDimitry Andric   BBInfoVector &BBInfo = BBUtils->getBBInfo();
17360b57cec5SDimitry Andric   BBInfo[MBB->getNumber()].Size += 2;
17370b57cec5SDimitry Andric   BBUtils->adjustBBOffsetsAfter(MBB);
17380b57cec5SDimitry Andric   ++NumUBrFixed;
17390b57cec5SDimitry Andric 
17400b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "  Changed B to long jump " << *MI);
17410b57cec5SDimitry Andric 
17420b57cec5SDimitry Andric   return true;
17430b57cec5SDimitry Andric }
17440b57cec5SDimitry Andric 
17450b57cec5SDimitry Andric /// fixupConditionalBr - Fix up a conditional branch whose destination is too
17460b57cec5SDimitry Andric /// far away to fit in its displacement field. It is converted to an inverse
17470b57cec5SDimitry Andric /// conditional branch + an unconditional branch to the destination.
17480b57cec5SDimitry Andric bool
17490b57cec5SDimitry Andric ARMConstantIslands::fixupConditionalBr(ImmBranch &Br) {
17500b57cec5SDimitry Andric   MachineInstr *MI = Br.MI;
17510b57cec5SDimitry Andric   MachineBasicBlock *DestBB = MI->getOperand(0).getMBB();
17520b57cec5SDimitry Andric 
17530b57cec5SDimitry Andric   // Add an unconditional branch to the destination and invert the branch
17540b57cec5SDimitry Andric   // condition to jump over it:
17550b57cec5SDimitry Andric   // blt L1
17560b57cec5SDimitry Andric   // =>
17570b57cec5SDimitry Andric   // bge L2
17580b57cec5SDimitry Andric   // b   L1
17590b57cec5SDimitry Andric   // L2:
17600b57cec5SDimitry Andric   ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(1).getImm();
17610b57cec5SDimitry Andric   CC = ARMCC::getOppositeCondition(CC);
17628bcb0991SDimitry Andric   Register CCReg = MI->getOperand(2).getReg();
17630b57cec5SDimitry Andric 
17640b57cec5SDimitry Andric   // If the branch is at the end of its MBB and that has a fall-through block,
17650b57cec5SDimitry Andric   // direct the updated conditional branch to the fall-through block. Otherwise,
17660b57cec5SDimitry Andric   // split the MBB before the next instruction.
17670b57cec5SDimitry Andric   MachineBasicBlock *MBB = MI->getParent();
17680b57cec5SDimitry Andric   MachineInstr *BMI = &MBB->back();
17690b57cec5SDimitry Andric   bool NeedSplit = (BMI != MI) || !BBHasFallthrough(MBB);
17700b57cec5SDimitry Andric 
17710b57cec5SDimitry Andric   ++NumCBrFixed;
17720b57cec5SDimitry Andric   if (BMI != MI) {
17730b57cec5SDimitry Andric     if (std::next(MachineBasicBlock::iterator(MI)) == std::prev(MBB->end()) &&
17740b57cec5SDimitry Andric         BMI->getOpcode() == Br.UncondBr) {
17750b57cec5SDimitry Andric       // Last MI in the BB is an unconditional branch. Can we simply invert the
17760b57cec5SDimitry Andric       // condition and swap destinations:
17770b57cec5SDimitry Andric       // beq L1
17780b57cec5SDimitry Andric       // b   L2
17790b57cec5SDimitry Andric       // =>
17800b57cec5SDimitry Andric       // bne L2
17810b57cec5SDimitry Andric       // b   L1
17820b57cec5SDimitry Andric       MachineBasicBlock *NewDest = BMI->getOperand(0).getMBB();
17830b57cec5SDimitry Andric       if (BBUtils->isBBInRange(MI, NewDest, Br.MaxDisp)) {
17840b57cec5SDimitry Andric         LLVM_DEBUG(
17850b57cec5SDimitry Andric             dbgs() << "  Invert Bcc condition and swap its destination with "
17860b57cec5SDimitry Andric                    << *BMI);
17870b57cec5SDimitry Andric         BMI->getOperand(0).setMBB(DestBB);
17880b57cec5SDimitry Andric         MI->getOperand(0).setMBB(NewDest);
17890b57cec5SDimitry Andric         MI->getOperand(1).setImm(CC);
17900b57cec5SDimitry Andric         return true;
17910b57cec5SDimitry Andric       }
17920b57cec5SDimitry Andric     }
17930b57cec5SDimitry Andric   }
17940b57cec5SDimitry Andric 
17950b57cec5SDimitry Andric   if (NeedSplit) {
17960b57cec5SDimitry Andric     splitBlockBeforeInstr(MI);
17970b57cec5SDimitry Andric     // No need for the branch to the next block. We're adding an unconditional
17980b57cec5SDimitry Andric     // branch to the destination.
17990b57cec5SDimitry Andric     int delta = TII->getInstSizeInBytes(MBB->back());
18000b57cec5SDimitry Andric     BBUtils->adjustBBSize(MBB, -delta);
18010b57cec5SDimitry Andric     MBB->back().eraseFromParent();
18020b57cec5SDimitry Andric 
18030b57cec5SDimitry Andric     // The conditional successor will be swapped between the BBs after this, so
18040b57cec5SDimitry Andric     // update CFG.
18050b57cec5SDimitry Andric     MBB->addSuccessor(DestBB);
18060b57cec5SDimitry Andric     std::next(MBB->getIterator())->removeSuccessor(DestBB);
18070b57cec5SDimitry Andric 
18080b57cec5SDimitry Andric     // BBInfo[SplitBB].Offset is wrong temporarily, fixed below
18090b57cec5SDimitry Andric   }
18100b57cec5SDimitry Andric   MachineBasicBlock *NextBB = &*++MBB->getIterator();
18110b57cec5SDimitry Andric 
18120b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "  Insert B to " << printMBBReference(*DestBB)
18130b57cec5SDimitry Andric                     << " also invert condition and change dest. to "
18140b57cec5SDimitry Andric                     << printMBBReference(*NextBB) << "\n");
18150b57cec5SDimitry Andric 
18160b57cec5SDimitry Andric   // Insert a new conditional branch and a new unconditional branch.
18170b57cec5SDimitry Andric   // Also update the ImmBranch as well as adding a new entry for the new branch.
18180b57cec5SDimitry Andric   BuildMI(MBB, DebugLoc(), TII->get(MI->getOpcode()))
18190b57cec5SDimitry Andric     .addMBB(NextBB).addImm(CC).addReg(CCReg);
18200b57cec5SDimitry Andric   Br.MI = &MBB->back();
18210b57cec5SDimitry Andric   BBUtils->adjustBBSize(MBB, TII->getInstSizeInBytes(MBB->back()));
18220b57cec5SDimitry Andric   if (isThumb)
18230b57cec5SDimitry Andric     BuildMI(MBB, DebugLoc(), TII->get(Br.UncondBr))
18240b57cec5SDimitry Andric         .addMBB(DestBB)
18250b57cec5SDimitry Andric         .add(predOps(ARMCC::AL));
18260b57cec5SDimitry Andric   else
18270b57cec5SDimitry Andric     BuildMI(MBB, DebugLoc(), TII->get(Br.UncondBr)).addMBB(DestBB);
18280b57cec5SDimitry Andric   BBUtils->adjustBBSize(MBB, TII->getInstSizeInBytes(MBB->back()));
18290b57cec5SDimitry Andric   unsigned MaxDisp = getUnconditionalBrDisp(Br.UncondBr);
18300b57cec5SDimitry Andric   ImmBranches.push_back(ImmBranch(&MBB->back(), MaxDisp, false, Br.UncondBr));
18310b57cec5SDimitry Andric 
18320b57cec5SDimitry Andric   // Remove the old conditional branch.  It may or may not still be in MBB.
18330b57cec5SDimitry Andric   BBUtils->adjustBBSize(MI->getParent(), -TII->getInstSizeInBytes(*MI));
18340b57cec5SDimitry Andric   MI->eraseFromParent();
18350b57cec5SDimitry Andric   BBUtils->adjustBBOffsetsAfter(MBB);
18360b57cec5SDimitry Andric   return true;
18370b57cec5SDimitry Andric }
18380b57cec5SDimitry Andric 
18390b57cec5SDimitry Andric bool ARMConstantIslands::optimizeThumb2Instructions() {
18400b57cec5SDimitry Andric   bool MadeChange = false;
18410b57cec5SDimitry Andric 
18420b57cec5SDimitry Andric   // Shrink ADR and LDR from constantpool.
18430eae32dcSDimitry Andric   for (CPUser &U : CPUsers) {
18440b57cec5SDimitry Andric     unsigned Opcode = U.MI->getOpcode();
18450b57cec5SDimitry Andric     unsigned NewOpc = 0;
18460b57cec5SDimitry Andric     unsigned Scale = 1;
18470b57cec5SDimitry Andric     unsigned Bits = 0;
18480b57cec5SDimitry Andric     switch (Opcode) {
18490b57cec5SDimitry Andric     default: break;
18500b57cec5SDimitry Andric     case ARM::t2LEApcrel:
18510b57cec5SDimitry Andric       if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
18520b57cec5SDimitry Andric         NewOpc = ARM::tLEApcrel;
18530b57cec5SDimitry Andric         Bits = 8;
18540b57cec5SDimitry Andric         Scale = 4;
18550b57cec5SDimitry Andric       }
18560b57cec5SDimitry Andric       break;
18570b57cec5SDimitry Andric     case ARM::t2LDRpci:
18580b57cec5SDimitry Andric       if (isARMLowRegister(U.MI->getOperand(0).getReg())) {
18590b57cec5SDimitry Andric         NewOpc = ARM::tLDRpci;
18600b57cec5SDimitry Andric         Bits = 8;
18610b57cec5SDimitry Andric         Scale = 4;
18620b57cec5SDimitry Andric       }
18630b57cec5SDimitry Andric       break;
18640b57cec5SDimitry Andric     }
18650b57cec5SDimitry Andric 
18660b57cec5SDimitry Andric     if (!NewOpc)
18670b57cec5SDimitry Andric       continue;
18680b57cec5SDimitry Andric 
18690b57cec5SDimitry Andric     unsigned UserOffset = getUserOffset(U);
18700b57cec5SDimitry Andric     unsigned MaxOffs = ((1 << Bits) - 1) * Scale;
18710b57cec5SDimitry Andric 
18720b57cec5SDimitry Andric     // Be conservative with inline asm.
18730b57cec5SDimitry Andric     if (!U.KnownAlignment)
18740b57cec5SDimitry Andric       MaxOffs -= 2;
18750b57cec5SDimitry Andric 
18760b57cec5SDimitry Andric     // FIXME: Check if offset is multiple of scale if scale is not 4.
18770b57cec5SDimitry Andric     if (isCPEntryInRange(U.MI, UserOffset, U.CPEMI, MaxOffs, false, true)) {
18780b57cec5SDimitry Andric       LLVM_DEBUG(dbgs() << "Shrink: " << *U.MI);
18790b57cec5SDimitry Andric       U.MI->setDesc(TII->get(NewOpc));
18800b57cec5SDimitry Andric       MachineBasicBlock *MBB = U.MI->getParent();
18810b57cec5SDimitry Andric       BBUtils->adjustBBSize(MBB, -2);
18820b57cec5SDimitry Andric       BBUtils->adjustBBOffsetsAfter(MBB);
18830b57cec5SDimitry Andric       ++NumT2CPShrunk;
18840b57cec5SDimitry Andric       MadeChange = true;
18850b57cec5SDimitry Andric     }
18860b57cec5SDimitry Andric   }
18870b57cec5SDimitry Andric 
18880b57cec5SDimitry Andric   return MadeChange;
18890b57cec5SDimitry Andric }
18900b57cec5SDimitry Andric 
18910b57cec5SDimitry Andric 
18928bcb0991SDimitry Andric bool ARMConstantIslands::optimizeThumb2Branches() {
18938bcb0991SDimitry Andric 
18948bcb0991SDimitry Andric   auto TryShrinkBranch = [this](ImmBranch &Br) {
18950b57cec5SDimitry Andric     unsigned Opcode = Br.MI->getOpcode();
18960b57cec5SDimitry Andric     unsigned NewOpc = 0;
18970b57cec5SDimitry Andric     unsigned Scale = 1;
18980b57cec5SDimitry Andric     unsigned Bits = 0;
18990b57cec5SDimitry Andric     switch (Opcode) {
19000b57cec5SDimitry Andric     default: break;
19010b57cec5SDimitry Andric     case ARM::t2B:
19020b57cec5SDimitry Andric       NewOpc = ARM::tB;
19030b57cec5SDimitry Andric       Bits = 11;
19040b57cec5SDimitry Andric       Scale = 2;
19050b57cec5SDimitry Andric       break;
19060b57cec5SDimitry Andric     case ARM::t2Bcc:
19070b57cec5SDimitry Andric       NewOpc = ARM::tBcc;
19080b57cec5SDimitry Andric       Bits = 8;
19090b57cec5SDimitry Andric       Scale = 2;
19100b57cec5SDimitry Andric       break;
19110b57cec5SDimitry Andric     }
19120b57cec5SDimitry Andric     if (NewOpc) {
19130b57cec5SDimitry Andric       unsigned MaxOffs = ((1 << (Bits-1))-1) * Scale;
19140b57cec5SDimitry Andric       MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
19150b57cec5SDimitry Andric       if (BBUtils->isBBInRange(Br.MI, DestBB, MaxOffs)) {
19160b57cec5SDimitry Andric         LLVM_DEBUG(dbgs() << "Shrink branch: " << *Br.MI);
19170b57cec5SDimitry Andric         Br.MI->setDesc(TII->get(NewOpc));
19180b57cec5SDimitry Andric         MachineBasicBlock *MBB = Br.MI->getParent();
19190b57cec5SDimitry Andric         BBUtils->adjustBBSize(MBB, -2);
19200b57cec5SDimitry Andric         BBUtils->adjustBBOffsetsAfter(MBB);
19210b57cec5SDimitry Andric         ++NumT2BrShrunk;
19228bcb0991SDimitry Andric         return true;
19230b57cec5SDimitry Andric       }
19240b57cec5SDimitry Andric     }
19258bcb0991SDimitry Andric     return false;
19268bcb0991SDimitry Andric   };
19270b57cec5SDimitry Andric 
19288bcb0991SDimitry Andric   struct ImmCompare {
19298bcb0991SDimitry Andric     MachineInstr* MI = nullptr;
19308bcb0991SDimitry Andric     unsigned NewOpc = 0;
19318bcb0991SDimitry Andric   };
19328bcb0991SDimitry Andric 
19338bcb0991SDimitry Andric   auto FindCmpForCBZ = [this](ImmBranch &Br, ImmCompare &ImmCmp,
19348bcb0991SDimitry Andric                               MachineBasicBlock *DestBB) {
19358bcb0991SDimitry Andric     ImmCmp.MI = nullptr;
19368bcb0991SDimitry Andric     ImmCmp.NewOpc = 0;
19370b57cec5SDimitry Andric 
19380b57cec5SDimitry Andric     // If the conditional branch doesn't kill CPSR, then CPSR can be liveout
19390b57cec5SDimitry Andric     // so this transformation is not safe.
1940*0fca6ea1SDimitry Andric     if (!Br.MI->killsRegister(ARM::CPSR, /*TRI=*/nullptr))
19418bcb0991SDimitry Andric       return false;
19420b57cec5SDimitry Andric 
19435ffd83dbSDimitry Andric     Register PredReg;
19448bcb0991SDimitry Andric     unsigned NewOpc = 0;
19450b57cec5SDimitry Andric     ARMCC::CondCodes Pred = getInstrPredicate(*Br.MI, PredReg);
19460b57cec5SDimitry Andric     if (Pred == ARMCC::EQ)
19470b57cec5SDimitry Andric       NewOpc = ARM::tCBZ;
19480b57cec5SDimitry Andric     else if (Pred == ARMCC::NE)
19490b57cec5SDimitry Andric       NewOpc = ARM::tCBNZ;
19508bcb0991SDimitry Andric     else
19518bcb0991SDimitry Andric       return false;
19528bcb0991SDimitry Andric 
19530b57cec5SDimitry Andric     // Check if the distance is within 126. Subtract starting offset by 2
19540b57cec5SDimitry Andric     // because the cmp will be eliminated.
19550b57cec5SDimitry Andric     unsigned BrOffset = BBUtils->getOffsetOf(Br.MI) + 4 - 2;
19560b57cec5SDimitry Andric     BBInfoVector &BBInfo = BBUtils->getBBInfo();
19570b57cec5SDimitry Andric     unsigned DestOffset = BBInfo[DestBB->getNumber()].Offset;
19580b57cec5SDimitry Andric     if (BrOffset >= DestOffset || (DestOffset - BrOffset) > 126)
19598bcb0991SDimitry Andric       return false;
19600b57cec5SDimitry Andric 
19610b57cec5SDimitry Andric     // Search backwards to find a tCMPi8
19620b57cec5SDimitry Andric     auto *TRI = STI->getRegisterInfo();
19630b57cec5SDimitry Andric     MachineInstr *CmpMI = findCMPToFoldIntoCBZ(Br.MI, TRI);
19640b57cec5SDimitry Andric     if (!CmpMI || CmpMI->getOpcode() != ARM::tCMPi8)
19658bcb0991SDimitry Andric       return false;
19668bcb0991SDimitry Andric 
19678bcb0991SDimitry Andric     ImmCmp.MI = CmpMI;
19688bcb0991SDimitry Andric     ImmCmp.NewOpc = NewOpc;
19698bcb0991SDimitry Andric     return true;
19708bcb0991SDimitry Andric   };
19718bcb0991SDimitry Andric 
19728bcb0991SDimitry Andric   auto TryConvertToLE = [this](ImmBranch &Br, ImmCompare &Cmp) {
19738bcb0991SDimitry Andric     if (Br.MI->getOpcode() != ARM::t2Bcc || !STI->hasLOB() ||
19748bcb0991SDimitry Andric         STI->hasMinSize())
19758bcb0991SDimitry Andric       return false;
19768bcb0991SDimitry Andric 
19778bcb0991SDimitry Andric     MachineBasicBlock *MBB = Br.MI->getParent();
19788bcb0991SDimitry Andric     MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
19798bcb0991SDimitry Andric     if (BBUtils->getOffsetOf(MBB) < BBUtils->getOffsetOf(DestBB) ||
19808bcb0991SDimitry Andric         !BBUtils->isBBInRange(Br.MI, DestBB, 4094))
19818bcb0991SDimitry Andric       return false;
19828bcb0991SDimitry Andric 
19838bcb0991SDimitry Andric     if (!DT->dominates(DestBB, MBB))
19848bcb0991SDimitry Andric       return false;
19858bcb0991SDimitry Andric 
19868bcb0991SDimitry Andric     // We queried for the CBN?Z opcode based upon the 'ExitBB', the opposite
19878bcb0991SDimitry Andric     // target of Br. So now we need to reverse the condition.
19888bcb0991SDimitry Andric     Cmp.NewOpc = Cmp.NewOpc == ARM::tCBZ ? ARM::tCBNZ : ARM::tCBZ;
19898bcb0991SDimitry Andric 
19908bcb0991SDimitry Andric     MachineInstrBuilder MIB = BuildMI(*MBB, Br.MI, Br.MI->getDebugLoc(),
19918bcb0991SDimitry Andric                                       TII->get(ARM::t2LE));
1992480093f4SDimitry Andric     // Swapped a t2Bcc for a t2LE, so no need to update the size of the block.
19938bcb0991SDimitry Andric     MIB.add(Br.MI->getOperand(0));
19948bcb0991SDimitry Andric     Br.MI->eraseFromParent();
19958bcb0991SDimitry Andric     Br.MI = MIB;
19968bcb0991SDimitry Andric     ++NumLEInserted;
19978bcb0991SDimitry Andric     return true;
19988bcb0991SDimitry Andric   };
19998bcb0991SDimitry Andric 
20008bcb0991SDimitry Andric   bool MadeChange = false;
20018bcb0991SDimitry Andric 
20028bcb0991SDimitry Andric   // The order in which branches appear in ImmBranches is approximately their
20038bcb0991SDimitry Andric   // order within the function body. By visiting later branches first, we reduce
20048bcb0991SDimitry Andric   // the distance between earlier forward branches and their targets, making it
20058bcb0991SDimitry Andric   // more likely that the cbn?z optimization, which can only apply to forward
20068bcb0991SDimitry Andric   // branches, will succeed.
20078bcb0991SDimitry Andric   for (ImmBranch &Br : reverse(ImmBranches)) {
20088bcb0991SDimitry Andric     MachineBasicBlock *DestBB = Br.MI->getOperand(0).getMBB();
20098bcb0991SDimitry Andric     MachineBasicBlock *MBB = Br.MI->getParent();
20108bcb0991SDimitry Andric     MachineBasicBlock *ExitBB = &MBB->back() == Br.MI ?
20118bcb0991SDimitry Andric       MBB->getFallThrough() :
20128bcb0991SDimitry Andric       MBB->back().getOperand(0).getMBB();
20138bcb0991SDimitry Andric 
20148bcb0991SDimitry Andric     ImmCompare Cmp;
20158bcb0991SDimitry Andric     if (FindCmpForCBZ(Br, Cmp, ExitBB) && TryConvertToLE(Br, Cmp)) {
20168bcb0991SDimitry Andric       DestBB = ExitBB;
20178bcb0991SDimitry Andric       MadeChange = true;
20188bcb0991SDimitry Andric     } else {
20198bcb0991SDimitry Andric       FindCmpForCBZ(Br, Cmp, DestBB);
20208bcb0991SDimitry Andric       MadeChange |= TryShrinkBranch(Br);
20218bcb0991SDimitry Andric     }
20228bcb0991SDimitry Andric 
20238bcb0991SDimitry Andric     unsigned Opcode = Br.MI->getOpcode();
20248bcb0991SDimitry Andric     if ((Opcode != ARM::tBcc && Opcode != ARM::t2LE) || !Cmp.NewOpc)
20250b57cec5SDimitry Andric       continue;
20260b57cec5SDimitry Andric 
20278bcb0991SDimitry Andric     Register Reg = Cmp.MI->getOperand(0).getReg();
20280b57cec5SDimitry Andric 
20290b57cec5SDimitry Andric     // Check for Kill flags on Reg. If they are present remove them and set kill
20300b57cec5SDimitry Andric     // on the new CBZ.
20318bcb0991SDimitry Andric     auto *TRI = STI->getRegisterInfo();
20320b57cec5SDimitry Andric     MachineBasicBlock::iterator KillMI = Br.MI;
20330b57cec5SDimitry Andric     bool RegKilled = false;
20340b57cec5SDimitry Andric     do {
20350b57cec5SDimitry Andric       --KillMI;
20360b57cec5SDimitry Andric       if (KillMI->killsRegister(Reg, TRI)) {
20370b57cec5SDimitry Andric         KillMI->clearRegisterKills(Reg, TRI);
20380b57cec5SDimitry Andric         RegKilled = true;
20390b57cec5SDimitry Andric         break;
20400b57cec5SDimitry Andric       }
20418bcb0991SDimitry Andric     } while (KillMI != Cmp.MI);
20420b57cec5SDimitry Andric 
20430b57cec5SDimitry Andric     // Create the new CBZ/CBNZ
20448bcb0991SDimitry Andric     LLVM_DEBUG(dbgs() << "Fold: " << *Cmp.MI << " and: " << *Br.MI);
20450b57cec5SDimitry Andric     MachineInstr *NewBR =
20468bcb0991SDimitry Andric         BuildMI(*MBB, Br.MI, Br.MI->getDebugLoc(), TII->get(Cmp.NewOpc))
2047fe6060f1SDimitry Andric             .addReg(Reg, getKillRegState(RegKilled) |
2048fe6060f1SDimitry Andric                              getRegState(Cmp.MI->getOperand(0)))
20490b57cec5SDimitry Andric             .addMBB(DestBB, Br.MI->getOperand(0).getTargetFlags());
20508bcb0991SDimitry Andric 
20518bcb0991SDimitry Andric     Cmp.MI->eraseFromParent();
20528bcb0991SDimitry Andric 
20538bcb0991SDimitry Andric     if (Br.MI->getOpcode() == ARM::tBcc) {
20540b57cec5SDimitry Andric       Br.MI->eraseFromParent();
20550b57cec5SDimitry Andric       Br.MI = NewBR;
2056480093f4SDimitry Andric       BBUtils->adjustBBSize(MBB, -2);
2057480093f4SDimitry Andric     } else if (MBB->back().getOpcode() != ARM::t2LE) {
2058480093f4SDimitry Andric       // An LE has been generated, but it's not the terminator - that is an
2059480093f4SDimitry Andric       // unconditional branch. However, the logic has now been reversed with the
2060480093f4SDimitry Andric       // CBN?Z being the conditional branch and the LE being the unconditional
2061480093f4SDimitry Andric       // branch. So this means we can remove the redundant unconditional branch
2062480093f4SDimitry Andric       // at the end of the block.
20638bcb0991SDimitry Andric       MachineInstr *LastMI = &MBB->back();
2064480093f4SDimitry Andric       BBUtils->adjustBBSize(MBB, -LastMI->getDesc().getSize());
20658bcb0991SDimitry Andric       LastMI->eraseFromParent();
20668bcb0991SDimitry Andric     }
20670b57cec5SDimitry Andric     BBUtils->adjustBBOffsetsAfter(MBB);
20680b57cec5SDimitry Andric     ++NumCBZ;
20690b57cec5SDimitry Andric     MadeChange = true;
20700b57cec5SDimitry Andric   }
20710b57cec5SDimitry Andric 
20720b57cec5SDimitry Andric   return MadeChange;
20730b57cec5SDimitry Andric }
20740b57cec5SDimitry Andric 
20750b57cec5SDimitry Andric static bool isSimpleIndexCalc(MachineInstr &I, unsigned EntryReg,
20760b57cec5SDimitry Andric                               unsigned BaseReg) {
20770b57cec5SDimitry Andric   if (I.getOpcode() != ARM::t2ADDrs)
20780b57cec5SDimitry Andric     return false;
20790b57cec5SDimitry Andric 
20800b57cec5SDimitry Andric   if (I.getOperand(0).getReg() != EntryReg)
20810b57cec5SDimitry Andric     return false;
20820b57cec5SDimitry Andric 
20830b57cec5SDimitry Andric   if (I.getOperand(1).getReg() != BaseReg)
20840b57cec5SDimitry Andric     return false;
20850b57cec5SDimitry Andric 
20860b57cec5SDimitry Andric   // FIXME: what about CC and IdxReg?
20870b57cec5SDimitry Andric   return true;
20880b57cec5SDimitry Andric }
20890b57cec5SDimitry Andric 
20900b57cec5SDimitry Andric /// While trying to form a TBB/TBH instruction, we may (if the table
20910b57cec5SDimitry Andric /// doesn't immediately follow the BR_JT) need access to the start of the
20920b57cec5SDimitry Andric /// jump-table. We know one instruction that produces such a register; this
20930b57cec5SDimitry Andric /// function works out whether that definition can be preserved to the BR_JT,
20940b57cec5SDimitry Andric /// possibly by removing an intervening addition (which is usually needed to
20950b57cec5SDimitry Andric /// calculate the actual entry to jump to).
20960b57cec5SDimitry Andric bool ARMConstantIslands::preserveBaseRegister(MachineInstr *JumpMI,
20970b57cec5SDimitry Andric                                               MachineInstr *LEAMI,
20980b57cec5SDimitry Andric                                               unsigned &DeadSize,
20990b57cec5SDimitry Andric                                               bool &CanDeleteLEA,
21000b57cec5SDimitry Andric                                               bool &BaseRegKill) {
21010b57cec5SDimitry Andric   if (JumpMI->getParent() != LEAMI->getParent())
21020b57cec5SDimitry Andric     return false;
21030b57cec5SDimitry Andric 
21040b57cec5SDimitry Andric   // Now we hope that we have at least these instructions in the basic block:
21050b57cec5SDimitry Andric   //     BaseReg = t2LEA ...
21060b57cec5SDimitry Andric   //     [...]
21070b57cec5SDimitry Andric   //     EntryReg = t2ADDrs BaseReg, ...
21080b57cec5SDimitry Andric   //     [...]
21090b57cec5SDimitry Andric   //     t2BR_JT EntryReg
21100b57cec5SDimitry Andric   //
21110b57cec5SDimitry Andric   // We have to be very conservative about what we recognise here though. The
21120b57cec5SDimitry Andric   // main perturbing factors to watch out for are:
21130b57cec5SDimitry Andric   //    + Spills at any point in the chain: not direct problems but we would
21140b57cec5SDimitry Andric   //      expect a blocking Def of the spilled register so in practice what we
21150b57cec5SDimitry Andric   //      can do is limited.
21160b57cec5SDimitry Andric   //    + EntryReg == BaseReg: this is the one situation we should allow a Def
21170b57cec5SDimitry Andric   //      of BaseReg, but only if the t2ADDrs can be removed.
21180b57cec5SDimitry Andric   //    + Some instruction other than t2ADDrs computing the entry. Not seen in
21190b57cec5SDimitry Andric   //      the wild, but we should be careful.
21208bcb0991SDimitry Andric   Register EntryReg = JumpMI->getOperand(0).getReg();
21218bcb0991SDimitry Andric   Register BaseReg = LEAMI->getOperand(0).getReg();
21220b57cec5SDimitry Andric 
21230b57cec5SDimitry Andric   CanDeleteLEA = true;
21240b57cec5SDimitry Andric   BaseRegKill = false;
21250b57cec5SDimitry Andric   MachineInstr *RemovableAdd = nullptr;
21260b57cec5SDimitry Andric   MachineBasicBlock::iterator I(LEAMI);
21270b57cec5SDimitry Andric   for (++I; &*I != JumpMI; ++I) {
21280b57cec5SDimitry Andric     if (isSimpleIndexCalc(*I, EntryReg, BaseReg)) {
21290b57cec5SDimitry Andric       RemovableAdd = &*I;
21300b57cec5SDimitry Andric       break;
21310b57cec5SDimitry Andric     }
21320b57cec5SDimitry Andric 
213306c3fb27SDimitry Andric     for (const MachineOperand &MO : I->operands()) {
21340b57cec5SDimitry Andric       if (!MO.isReg() || !MO.getReg())
21350b57cec5SDimitry Andric         continue;
21360b57cec5SDimitry Andric       if (MO.isDef() && MO.getReg() == BaseReg)
21370b57cec5SDimitry Andric         return false;
21380b57cec5SDimitry Andric       if (MO.isUse() && MO.getReg() == BaseReg) {
21390b57cec5SDimitry Andric         BaseRegKill = BaseRegKill || MO.isKill();
21400b57cec5SDimitry Andric         CanDeleteLEA = false;
21410b57cec5SDimitry Andric       }
21420b57cec5SDimitry Andric     }
21430b57cec5SDimitry Andric   }
21440b57cec5SDimitry Andric 
21450b57cec5SDimitry Andric   if (!RemovableAdd)
21460b57cec5SDimitry Andric     return true;
21470b57cec5SDimitry Andric 
21480b57cec5SDimitry Andric   // Check the add really is removable, and that nothing else in the block
21490b57cec5SDimitry Andric   // clobbers BaseReg.
21500b57cec5SDimitry Andric   for (++I; &*I != JumpMI; ++I) {
215106c3fb27SDimitry Andric     for (const MachineOperand &MO : I->operands()) {
21520b57cec5SDimitry Andric       if (!MO.isReg() || !MO.getReg())
21530b57cec5SDimitry Andric         continue;
21540b57cec5SDimitry Andric       if (MO.isDef() && MO.getReg() == BaseReg)
21550b57cec5SDimitry Andric         return false;
21560b57cec5SDimitry Andric       if (MO.isUse() && MO.getReg() == EntryReg)
21570b57cec5SDimitry Andric         RemovableAdd = nullptr;
21580b57cec5SDimitry Andric     }
21590b57cec5SDimitry Andric   }
21600b57cec5SDimitry Andric 
21610b57cec5SDimitry Andric   if (RemovableAdd) {
21620b57cec5SDimitry Andric     RemovableAdd->eraseFromParent();
21630b57cec5SDimitry Andric     DeadSize += isThumb2 ? 4 : 2;
21640b57cec5SDimitry Andric   } else if (BaseReg == EntryReg) {
21650b57cec5SDimitry Andric     // The add wasn't removable, but clobbered the base for the TBB. So we can't
21660b57cec5SDimitry Andric     // preserve it.
21670b57cec5SDimitry Andric     return false;
21680b57cec5SDimitry Andric   }
21690b57cec5SDimitry Andric 
21700b57cec5SDimitry Andric   // We reached the end of the block without seeing another definition of
21710b57cec5SDimitry Andric   // BaseReg (except, possibly the t2ADDrs, which was removed). BaseReg can be
21720b57cec5SDimitry Andric   // used in the TBB/TBH if necessary.
21730b57cec5SDimitry Andric   return true;
21740b57cec5SDimitry Andric }
21750b57cec5SDimitry Andric 
21760b57cec5SDimitry Andric /// Returns whether CPEMI is the first instruction in the block
21770b57cec5SDimitry Andric /// immediately following JTMI (assumed to be a TBB or TBH terminator). If so,
21780b57cec5SDimitry Andric /// we can switch the first register to PC and usually remove the address
21790b57cec5SDimitry Andric /// calculation that preceded it.
21800b57cec5SDimitry Andric static bool jumpTableFollowsTB(MachineInstr *JTMI, MachineInstr *CPEMI) {
21810b57cec5SDimitry Andric   MachineFunction::iterator MBB = JTMI->getParent()->getIterator();
21820b57cec5SDimitry Andric   MachineFunction *MF = MBB->getParent();
21830b57cec5SDimitry Andric   ++MBB;
21840b57cec5SDimitry Andric 
2185e8d8bef9SDimitry Andric   return MBB != MF->end() && !MBB->empty() && &*MBB->begin() == CPEMI;
21860b57cec5SDimitry Andric }
21870b57cec5SDimitry Andric 
21880b57cec5SDimitry Andric static void RemoveDeadAddBetweenLEAAndJT(MachineInstr *LEAMI,
21890b57cec5SDimitry Andric                                          MachineInstr *JumpMI,
21900b57cec5SDimitry Andric                                          unsigned &DeadSize) {
21910b57cec5SDimitry Andric   // Remove a dead add between the LEA and JT, which used to compute EntryReg,
21920b57cec5SDimitry Andric   // but the JT now uses PC. Finds the last ADD (if any) that def's EntryReg
21930b57cec5SDimitry Andric   // and is not clobbered / used.
21940b57cec5SDimitry Andric   MachineInstr *RemovableAdd = nullptr;
21958bcb0991SDimitry Andric   Register EntryReg = JumpMI->getOperand(0).getReg();
21960b57cec5SDimitry Andric 
21970b57cec5SDimitry Andric   // Find the last ADD to set EntryReg
21980b57cec5SDimitry Andric   MachineBasicBlock::iterator I(LEAMI);
21990b57cec5SDimitry Andric   for (++I; &*I != JumpMI; ++I) {
22000b57cec5SDimitry Andric     if (I->getOpcode() == ARM::t2ADDrs && I->getOperand(0).getReg() == EntryReg)
22010b57cec5SDimitry Andric       RemovableAdd = &*I;
22020b57cec5SDimitry Andric   }
22030b57cec5SDimitry Andric 
22040b57cec5SDimitry Andric   if (!RemovableAdd)
22050b57cec5SDimitry Andric     return;
22060b57cec5SDimitry Andric 
22070b57cec5SDimitry Andric   // Ensure EntryReg is not clobbered or used.
22080b57cec5SDimitry Andric   MachineBasicBlock::iterator J(RemovableAdd);
22090b57cec5SDimitry Andric   for (++J; &*J != JumpMI; ++J) {
221006c3fb27SDimitry Andric     for (const MachineOperand &MO : J->operands()) {
22110b57cec5SDimitry Andric       if (!MO.isReg() || !MO.getReg())
22120b57cec5SDimitry Andric         continue;
22130b57cec5SDimitry Andric       if (MO.isDef() && MO.getReg() == EntryReg)
22140b57cec5SDimitry Andric         return;
22150b57cec5SDimitry Andric       if (MO.isUse() && MO.getReg() == EntryReg)
22160b57cec5SDimitry Andric         return;
22170b57cec5SDimitry Andric     }
22180b57cec5SDimitry Andric   }
22190b57cec5SDimitry Andric 
22200b57cec5SDimitry Andric   LLVM_DEBUG(dbgs() << "Removing Dead Add: " << *RemovableAdd);
22210b57cec5SDimitry Andric   RemovableAdd->eraseFromParent();
22220b57cec5SDimitry Andric   DeadSize += 4;
22230b57cec5SDimitry Andric }
22240b57cec5SDimitry Andric 
22250b57cec5SDimitry Andric /// optimizeThumb2JumpTables - Use tbb / tbh instructions to generate smaller
22260b57cec5SDimitry Andric /// jumptables when it's possible.
22270b57cec5SDimitry Andric bool ARMConstantIslands::optimizeThumb2JumpTables() {
22280b57cec5SDimitry Andric   bool MadeChange = false;
22290b57cec5SDimitry Andric 
22300b57cec5SDimitry Andric   // FIXME: After the tables are shrunk, can we get rid some of the
22310b57cec5SDimitry Andric   // constantpool tables?
22320b57cec5SDimitry Andric   MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
22330b57cec5SDimitry Andric   if (!MJTI) return false;
22340b57cec5SDimitry Andric 
22350b57cec5SDimitry Andric   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
2236*0fca6ea1SDimitry Andric   for (MachineInstr *MI : T2JumpTables) {
22370b57cec5SDimitry Andric     const MCInstrDesc &MCID = MI->getDesc();
22380b57cec5SDimitry Andric     unsigned NumOps = MCID.getNumOperands();
22390b57cec5SDimitry Andric     unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 2 : 1);
22400b57cec5SDimitry Andric     MachineOperand JTOP = MI->getOperand(JTOpIdx);
22410b57cec5SDimitry Andric     unsigned JTI = JTOP.getIndex();
22420b57cec5SDimitry Andric     assert(JTI < JT.size());
22430b57cec5SDimitry Andric 
22440b57cec5SDimitry Andric     bool ByteOk = true;
22450b57cec5SDimitry Andric     bool HalfWordOk = true;
22460b57cec5SDimitry Andric     unsigned JTOffset = BBUtils->getOffsetOf(MI) + 4;
22470b57cec5SDimitry Andric     const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
22480b57cec5SDimitry Andric     BBInfoVector &BBInfo = BBUtils->getBBInfo();
22494824e7fdSDimitry Andric     for (MachineBasicBlock *MBB : JTBBs) {
22500b57cec5SDimitry Andric       unsigned DstOffset = BBInfo[MBB->getNumber()].Offset;
22510b57cec5SDimitry Andric       // Negative offset is not ok. FIXME: We should change BB layout to make
22520b57cec5SDimitry Andric       // sure all the branches are forward.
22530b57cec5SDimitry Andric       if (ByteOk && (DstOffset - JTOffset) > ((1<<8)-1)*2)
22540b57cec5SDimitry Andric         ByteOk = false;
22550b57cec5SDimitry Andric       unsigned TBHLimit = ((1<<16)-1)*2;
22560b57cec5SDimitry Andric       if (HalfWordOk && (DstOffset - JTOffset) > TBHLimit)
22570b57cec5SDimitry Andric         HalfWordOk = false;
22580b57cec5SDimitry Andric       if (!ByteOk && !HalfWordOk)
22590b57cec5SDimitry Andric         break;
22600b57cec5SDimitry Andric     }
22610b57cec5SDimitry Andric 
22620b57cec5SDimitry Andric     if (!ByteOk && !HalfWordOk)
22630b57cec5SDimitry Andric       continue;
22640b57cec5SDimitry Andric 
22650b57cec5SDimitry Andric     CPUser &User = CPUsers[JumpTableUserIndices[JTI]];
22660b57cec5SDimitry Andric     MachineBasicBlock *MBB = MI->getParent();
22670b57cec5SDimitry Andric     if (!MI->getOperand(0).isKill()) // FIXME: needed now?
22680b57cec5SDimitry Andric       continue;
22690b57cec5SDimitry Andric 
22700b57cec5SDimitry Andric     unsigned DeadSize = 0;
22710b57cec5SDimitry Andric     bool CanDeleteLEA = false;
22720b57cec5SDimitry Andric     bool BaseRegKill = false;
22730b57cec5SDimitry Andric 
22740b57cec5SDimitry Andric     unsigned IdxReg = ~0U;
22750b57cec5SDimitry Andric     bool IdxRegKill = true;
22760b57cec5SDimitry Andric     if (isThumb2) {
22770b57cec5SDimitry Andric       IdxReg = MI->getOperand(1).getReg();
22780b57cec5SDimitry Andric       IdxRegKill = MI->getOperand(1).isKill();
22790b57cec5SDimitry Andric 
22800b57cec5SDimitry Andric       bool PreservedBaseReg =
22810b57cec5SDimitry Andric         preserveBaseRegister(MI, User.MI, DeadSize, CanDeleteLEA, BaseRegKill);
22820b57cec5SDimitry Andric       if (!jumpTableFollowsTB(MI, User.CPEMI) && !PreservedBaseReg)
22830b57cec5SDimitry Andric         continue;
22840b57cec5SDimitry Andric     } else {
22850b57cec5SDimitry Andric       // We're in thumb-1 mode, so we must have something like:
22860b57cec5SDimitry Andric       //   %idx = tLSLri %idx, 2
22870b57cec5SDimitry Andric       //   %base = tLEApcrelJT
22880b57cec5SDimitry Andric       //   %t = tLDRr %base, %idx
22898bcb0991SDimitry Andric       Register BaseReg = User.MI->getOperand(0).getReg();
22900b57cec5SDimitry Andric 
229106c3fb27SDimitry Andric       MachineBasicBlock *UserMBB = User.MI->getParent();
229206c3fb27SDimitry Andric       MachineBasicBlock::iterator Shift = User.MI->getIterator();
229306c3fb27SDimitry Andric       if (Shift == UserMBB->begin())
22940b57cec5SDimitry Andric         continue;
229506c3fb27SDimitry Andric 
229606c3fb27SDimitry Andric       Shift = prev_nodbg(Shift, UserMBB->begin());
22970b57cec5SDimitry Andric       if (Shift->getOpcode() != ARM::tLSLri ||
22980b57cec5SDimitry Andric           Shift->getOperand(3).getImm() != 2 ||
22990b57cec5SDimitry Andric           !Shift->getOperand(2).isKill())
23000b57cec5SDimitry Andric         continue;
23010b57cec5SDimitry Andric       IdxReg = Shift->getOperand(2).getReg();
23028bcb0991SDimitry Andric       Register ShiftedIdxReg = Shift->getOperand(0).getReg();
23030b57cec5SDimitry Andric 
23040b57cec5SDimitry Andric       // It's important that IdxReg is live until the actual TBB/TBH. Most of
23050b57cec5SDimitry Andric       // the range is checked later, but the LEA might still clobber it and not
23060b57cec5SDimitry Andric       // actually get removed.
23070b57cec5SDimitry Andric       if (BaseReg == IdxReg && !jumpTableFollowsTB(MI, User.CPEMI))
23080b57cec5SDimitry Andric         continue;
23090b57cec5SDimitry Andric 
23100b57cec5SDimitry Andric       MachineInstr *Load = User.MI->getNextNode();
23110b57cec5SDimitry Andric       if (Load->getOpcode() != ARM::tLDRr)
23120b57cec5SDimitry Andric         continue;
23130b57cec5SDimitry Andric       if (Load->getOperand(1).getReg() != BaseReg ||
23140b57cec5SDimitry Andric           Load->getOperand(2).getReg() != ShiftedIdxReg ||
23150b57cec5SDimitry Andric           !Load->getOperand(2).isKill())
23160b57cec5SDimitry Andric         continue;
23170b57cec5SDimitry Andric 
23180b57cec5SDimitry Andric       // If we're in PIC mode, there should be another ADD following.
23190b57cec5SDimitry Andric       auto *TRI = STI->getRegisterInfo();
23200b57cec5SDimitry Andric 
23210b57cec5SDimitry Andric       // %base cannot be redefined after the load as it will appear before
23220b57cec5SDimitry Andric       // TBB/TBH like:
23230b57cec5SDimitry Andric       //      %base =
23240b57cec5SDimitry Andric       //      %base =
23250b57cec5SDimitry Andric       //      tBB %base, %idx
23260b57cec5SDimitry Andric       if (registerDefinedBetween(BaseReg, Load->getNextNode(), MBB->end(), TRI))
23270b57cec5SDimitry Andric         continue;
23280b57cec5SDimitry Andric 
23290b57cec5SDimitry Andric       if (isPositionIndependentOrROPI) {
23300b57cec5SDimitry Andric         MachineInstr *Add = Load->getNextNode();
23310b57cec5SDimitry Andric         if (Add->getOpcode() != ARM::tADDrr ||
23320b57cec5SDimitry Andric             Add->getOperand(2).getReg() != BaseReg ||
23330b57cec5SDimitry Andric             Add->getOperand(3).getReg() != Load->getOperand(0).getReg() ||
23340b57cec5SDimitry Andric             !Add->getOperand(3).isKill())
23350b57cec5SDimitry Andric           continue;
23360b57cec5SDimitry Andric         if (Add->getOperand(0).getReg() != MI->getOperand(0).getReg())
23370b57cec5SDimitry Andric           continue;
23380b57cec5SDimitry Andric         if (registerDefinedBetween(IdxReg, Add->getNextNode(), MI, TRI))
23390b57cec5SDimitry Andric           // IdxReg gets redefined in the middle of the sequence.
23400b57cec5SDimitry Andric           continue;
23410b57cec5SDimitry Andric         Add->eraseFromParent();
23420b57cec5SDimitry Andric         DeadSize += 2;
23430b57cec5SDimitry Andric       } else {
23440b57cec5SDimitry Andric         if (Load->getOperand(0).getReg() != MI->getOperand(0).getReg())
23450b57cec5SDimitry Andric           continue;
23460b57cec5SDimitry Andric         if (registerDefinedBetween(IdxReg, Load->getNextNode(), MI, TRI))
23470b57cec5SDimitry Andric           // IdxReg gets redefined in the middle of the sequence.
23480b57cec5SDimitry Andric           continue;
23490b57cec5SDimitry Andric       }
23500b57cec5SDimitry Andric 
23510b57cec5SDimitry Andric       // Now safe to delete the load and lsl. The LEA will be removed later.
23520b57cec5SDimitry Andric       CanDeleteLEA = true;
23530b57cec5SDimitry Andric       Shift->eraseFromParent();
23540b57cec5SDimitry Andric       Load->eraseFromParent();
23550b57cec5SDimitry Andric       DeadSize += 4;
23560b57cec5SDimitry Andric     }
23570b57cec5SDimitry Andric 
23580b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << "Shrink JT: " << *MI);
23590b57cec5SDimitry Andric     MachineInstr *CPEMI = User.CPEMI;
23600b57cec5SDimitry Andric     unsigned Opc = ByteOk ? ARM::t2TBB_JT : ARM::t2TBH_JT;
23610b57cec5SDimitry Andric     if (!isThumb2)
23620b57cec5SDimitry Andric       Opc = ByteOk ? ARM::tTBB_JT : ARM::tTBH_JT;
23630b57cec5SDimitry Andric 
23640b57cec5SDimitry Andric     MachineBasicBlock::iterator MI_JT = MI;
23650b57cec5SDimitry Andric     MachineInstr *NewJTMI =
23660b57cec5SDimitry Andric         BuildMI(*MBB, MI_JT, MI->getDebugLoc(), TII->get(Opc))
23670b57cec5SDimitry Andric             .addReg(User.MI->getOperand(0).getReg(),
23680b57cec5SDimitry Andric                     getKillRegState(BaseRegKill))
23690b57cec5SDimitry Andric             .addReg(IdxReg, getKillRegState(IdxRegKill))
23700b57cec5SDimitry Andric             .addJumpTableIndex(JTI, JTOP.getTargetFlags())
23710b57cec5SDimitry Andric             .addImm(CPEMI->getOperand(0).getImm());
23720b57cec5SDimitry Andric     LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << ": " << *NewJTMI);
23730b57cec5SDimitry Andric 
23740b57cec5SDimitry Andric     unsigned JTOpc = ByteOk ? ARM::JUMPTABLE_TBB : ARM::JUMPTABLE_TBH;
23750b57cec5SDimitry Andric     CPEMI->setDesc(TII->get(JTOpc));
23760b57cec5SDimitry Andric 
23770b57cec5SDimitry Andric     if (jumpTableFollowsTB(MI, User.CPEMI)) {
23780b57cec5SDimitry Andric       NewJTMI->getOperand(0).setReg(ARM::PC);
23790b57cec5SDimitry Andric       NewJTMI->getOperand(0).setIsKill(false);
23800b57cec5SDimitry Andric 
23810b57cec5SDimitry Andric       if (CanDeleteLEA) {
23820b57cec5SDimitry Andric         if (isThumb2)
23830b57cec5SDimitry Andric           RemoveDeadAddBetweenLEAAndJT(User.MI, MI, DeadSize);
23840b57cec5SDimitry Andric 
23850b57cec5SDimitry Andric         User.MI->eraseFromParent();
23860b57cec5SDimitry Andric         DeadSize += isThumb2 ? 4 : 2;
23870b57cec5SDimitry Andric 
23880b57cec5SDimitry Andric         // The LEA was eliminated, the TBB instruction becomes the only new user
23890b57cec5SDimitry Andric         // of the jump table.
23900b57cec5SDimitry Andric         User.MI = NewJTMI;
23910b57cec5SDimitry Andric         User.MaxDisp = 4;
23920b57cec5SDimitry Andric         User.NegOk = false;
23930b57cec5SDimitry Andric         User.IsSoImm = false;
23940b57cec5SDimitry Andric         User.KnownAlignment = false;
23950b57cec5SDimitry Andric       } else {
23960b57cec5SDimitry Andric         // The LEA couldn't be eliminated, so we must add another CPUser to
23970b57cec5SDimitry Andric         // record the TBB or TBH use.
23980b57cec5SDimitry Andric         int CPEntryIdx = JumpTableEntryIndices[JTI];
23990b57cec5SDimitry Andric         auto &CPEs = CPEntries[CPEntryIdx];
24000b57cec5SDimitry Andric         auto Entry =
24010b57cec5SDimitry Andric             find_if(CPEs, [&](CPEntry &E) { return E.CPEMI == User.CPEMI; });
24020b57cec5SDimitry Andric         ++Entry->RefCount;
24030b57cec5SDimitry Andric         CPUsers.emplace_back(CPUser(NewJTMI, User.CPEMI, 4, false, false));
24040b57cec5SDimitry Andric       }
24050b57cec5SDimitry Andric     }
24060b57cec5SDimitry Andric 
24070b57cec5SDimitry Andric     unsigned NewSize = TII->getInstSizeInBytes(*NewJTMI);
24080b57cec5SDimitry Andric     unsigned OrigSize = TII->getInstSizeInBytes(*MI);
24090b57cec5SDimitry Andric     MI->eraseFromParent();
24100b57cec5SDimitry Andric 
24110b57cec5SDimitry Andric     int Delta = OrigSize - NewSize + DeadSize;
24120b57cec5SDimitry Andric     BBInfo[MBB->getNumber()].Size -= Delta;
24130b57cec5SDimitry Andric     BBUtils->adjustBBOffsetsAfter(MBB);
24140b57cec5SDimitry Andric 
24150b57cec5SDimitry Andric     ++NumTBs;
24160b57cec5SDimitry Andric     MadeChange = true;
24170b57cec5SDimitry Andric   }
24180b57cec5SDimitry Andric 
24190b57cec5SDimitry Andric   return MadeChange;
24200b57cec5SDimitry Andric }
24210b57cec5SDimitry Andric 
24220b57cec5SDimitry Andric /// reorderThumb2JumpTables - Adjust the function's block layout to ensure that
24230b57cec5SDimitry Andric /// jump tables always branch forwards, since that's what tbb and tbh need.
24240b57cec5SDimitry Andric bool ARMConstantIslands::reorderThumb2JumpTables() {
24250b57cec5SDimitry Andric   bool MadeChange = false;
24260b57cec5SDimitry Andric 
24270b57cec5SDimitry Andric   MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
24280b57cec5SDimitry Andric   if (!MJTI) return false;
24290b57cec5SDimitry Andric 
24300b57cec5SDimitry Andric   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
2431*0fca6ea1SDimitry Andric   for (MachineInstr *MI : T2JumpTables) {
24320b57cec5SDimitry Andric     const MCInstrDesc &MCID = MI->getDesc();
24330b57cec5SDimitry Andric     unsigned NumOps = MCID.getNumOperands();
24340b57cec5SDimitry Andric     unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 2 : 1);
24350b57cec5SDimitry Andric     MachineOperand JTOP = MI->getOperand(JTOpIdx);
24360b57cec5SDimitry Andric     unsigned JTI = JTOP.getIndex();
24370b57cec5SDimitry Andric     assert(JTI < JT.size());
24380b57cec5SDimitry Andric 
24390b57cec5SDimitry Andric     // We prefer if target blocks for the jump table come after the jump
24400b57cec5SDimitry Andric     // instruction so we can use TB[BH]. Loop through the target blocks
24410b57cec5SDimitry Andric     // and try to adjust them such that that's true.
24420b57cec5SDimitry Andric     int JTNumber = MI->getParent()->getNumber();
24430b57cec5SDimitry Andric     const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
24444824e7fdSDimitry Andric     for (MachineBasicBlock *MBB : JTBBs) {
24450b57cec5SDimitry Andric       int DTNumber = MBB->getNumber();
24460b57cec5SDimitry Andric 
24470b57cec5SDimitry Andric       if (DTNumber < JTNumber) {
24480b57cec5SDimitry Andric         // The destination precedes the switch. Try to move the block forward
24490b57cec5SDimitry Andric         // so we have a positive offset.
24500b57cec5SDimitry Andric         MachineBasicBlock *NewBB =
24514824e7fdSDimitry Andric             adjustJTTargetBlockForward(JTI, MBB, MI->getParent());
24520b57cec5SDimitry Andric         if (NewBB)
24534824e7fdSDimitry Andric           MJTI->ReplaceMBBInJumpTable(JTI, MBB, NewBB);
24540b57cec5SDimitry Andric         MadeChange = true;
24550b57cec5SDimitry Andric       }
24560b57cec5SDimitry Andric     }
24570b57cec5SDimitry Andric   }
24580b57cec5SDimitry Andric 
24590b57cec5SDimitry Andric   return MadeChange;
24600b57cec5SDimitry Andric }
24610b57cec5SDimitry Andric 
24624824e7fdSDimitry Andric MachineBasicBlock *ARMConstantIslands::adjustJTTargetBlockForward(
24634824e7fdSDimitry Andric     unsigned JTI, MachineBasicBlock *BB, MachineBasicBlock *JTBB) {
24640b57cec5SDimitry Andric   // If the destination block is terminated by an unconditional branch,
24650b57cec5SDimitry Andric   // try to move it; otherwise, create a new block following the jump
24660b57cec5SDimitry Andric   // table that branches back to the actual target. This is a very simple
24670b57cec5SDimitry Andric   // heuristic. FIXME: We can definitely improve it.
24680b57cec5SDimitry Andric   MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
24690b57cec5SDimitry Andric   SmallVector<MachineOperand, 4> Cond;
24700b57cec5SDimitry Andric   SmallVector<MachineOperand, 4> CondPrior;
24710b57cec5SDimitry Andric   MachineFunction::iterator BBi = BB->getIterator();
24720b57cec5SDimitry Andric   MachineFunction::iterator OldPrior = std::prev(BBi);
24735ffd83dbSDimitry Andric   MachineFunction::iterator OldNext = std::next(BBi);
24740b57cec5SDimitry Andric 
24750b57cec5SDimitry Andric   // If the block terminator isn't analyzable, don't try to move the block
24760b57cec5SDimitry Andric   bool B = TII->analyzeBranch(*BB, TBB, FBB, Cond);
24770b57cec5SDimitry Andric 
24780b57cec5SDimitry Andric   // If the block ends in an unconditional branch, move it. The prior block
24790b57cec5SDimitry Andric   // has to have an analyzable terminator for us to move this one. Be paranoid
24800b57cec5SDimitry Andric   // and make sure we're not trying to move the entry block of the function.
24810b57cec5SDimitry Andric   if (!B && Cond.empty() && BB != &MF->front() &&
24820b57cec5SDimitry Andric       !TII->analyzeBranch(*OldPrior, TBB, FBB, CondPrior)) {
24830b57cec5SDimitry Andric     BB->moveAfter(JTBB);
24845ffd83dbSDimitry Andric     OldPrior->updateTerminator(BB);
24855ffd83dbSDimitry Andric     BB->updateTerminator(OldNext != MF->end() ? &*OldNext : nullptr);
24860b57cec5SDimitry Andric     // Update numbering to account for the block being moved.
24870b57cec5SDimitry Andric     MF->RenumberBlocks();
24880b57cec5SDimitry Andric     ++NumJTMoved;
24890b57cec5SDimitry Andric     return nullptr;
24900b57cec5SDimitry Andric   }
24910b57cec5SDimitry Andric 
24920b57cec5SDimitry Andric   // Create a new MBB for the code after the jump BB.
24930b57cec5SDimitry Andric   MachineBasicBlock *NewBB =
24940b57cec5SDimitry Andric     MF->CreateMachineBasicBlock(JTBB->getBasicBlock());
24950b57cec5SDimitry Andric   MachineFunction::iterator MBBI = ++JTBB->getIterator();
24960b57cec5SDimitry Andric   MF->insert(MBBI, NewBB);
24970b57cec5SDimitry Andric 
24988bcb0991SDimitry Andric   // Copy live-in information to new block.
24998bcb0991SDimitry Andric   for (const MachineBasicBlock::RegisterMaskPair &RegMaskPair : BB->liveins())
25008bcb0991SDimitry Andric     NewBB->addLiveIn(RegMaskPair);
25018bcb0991SDimitry Andric 
25020b57cec5SDimitry Andric   // Add an unconditional branch from NewBB to BB.
25030b57cec5SDimitry Andric   // There doesn't seem to be meaningful DebugInfo available; this doesn't
25040b57cec5SDimitry Andric   // correspond directly to anything in the source.
25050b57cec5SDimitry Andric   if (isThumb2)
25060b57cec5SDimitry Andric     BuildMI(NewBB, DebugLoc(), TII->get(ARM::t2B))
25070b57cec5SDimitry Andric         .addMBB(BB)
25080b57cec5SDimitry Andric         .add(predOps(ARMCC::AL));
25090b57cec5SDimitry Andric   else
25100b57cec5SDimitry Andric     BuildMI(NewBB, DebugLoc(), TII->get(ARM::tB))
25110b57cec5SDimitry Andric         .addMBB(BB)
25120b57cec5SDimitry Andric         .add(predOps(ARMCC::AL));
25130b57cec5SDimitry Andric 
25140b57cec5SDimitry Andric   // Update internal data structures to account for the newly inserted MBB.
25150b57cec5SDimitry Andric   MF->RenumberBlocks(NewBB);
25160b57cec5SDimitry Andric 
25170b57cec5SDimitry Andric   // Update the CFG.
25180b57cec5SDimitry Andric   NewBB->addSuccessor(BB);
25190b57cec5SDimitry Andric   JTBB->replaceSuccessor(BB, NewBB);
25200b57cec5SDimitry Andric 
25210b57cec5SDimitry Andric   ++NumJTInserted;
25220b57cec5SDimitry Andric   return NewBB;
25230b57cec5SDimitry Andric }
25240b57cec5SDimitry Andric 
25250b57cec5SDimitry Andric /// createARMConstantIslandPass - returns an instance of the constpool
25260b57cec5SDimitry Andric /// island pass.
25270b57cec5SDimitry Andric FunctionPass *llvm::createARMConstantIslandPass() {
25280b57cec5SDimitry Andric   return new ARMConstantIslands();
25290b57cec5SDimitry Andric }
25300b57cec5SDimitry Andric 
25310b57cec5SDimitry Andric INITIALIZE_PASS(ARMConstantIslands, "arm-cp-islands", ARM_CP_ISLANDS_OPT_NAME,
25320b57cec5SDimitry Andric                 false, false)
2533