Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1 | //===-- MachineLICM.cpp - Machine Loop Invariant Code Motion Pass ---------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass performs loop invariant code motion on machine instructions. We |
| 11 | // attempt to remove as much code from the body of a loop as possible. |
| 12 | // |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 13 | // This pass does not attempt to throttle itself to limit register pressure. |
| 14 | // The register allocation phases are expected to perform rematerialization |
| 15 | // to recover when register pressure is high. |
| 16 | // |
| 17 | // This pass is not intended to be a replacement or a complete alternative |
| 18 | // for the LLVM-IR-level LICM pass. It is only designed to hoist simple |
| 19 | // constructs that are not exposed before lowering and instruction selection. |
| 20 | // |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 21 | //===----------------------------------------------------------------------===// |
| 22 | |
| 23 | #define DEBUG_TYPE "machine-licm" |
Chris Lattner | ac69582 | 2008-01-04 06:41:45 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/Passes.h" |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineDominators.h" |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineMemOperand.h" |
Bill Wendling | 9258cd3 | 2008-01-02 19:32:43 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetLowering.h" |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetRegisterInfo.h" |
Bill Wendling | efe2be7 | 2007-12-11 23:27:51 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetInstrInfo.h" |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 34 | #include "llvm/Target/TargetInstrItineraries.h" |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 35 | #include "llvm/Target/TargetMachine.h" |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/AliasAnalysis.h" |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/DenseMap.h" |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/SmallSet.h" |
Chris Lattner | ac69582 | 2008-01-04 06:41:45 +0000 | [diff] [blame] | 39 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | ac69582 | 2008-01-04 06:41:45 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 41 | #include "llvm/Support/raw_ostream.h" |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 42 | |
| 43 | using namespace llvm; |
| 44 | |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 45 | STATISTIC(NumHoisted, |
| 46 | "Number of machine instructions hoisted out of loops"); |
| 47 | STATISTIC(NumLowRP, |
| 48 | "Number of instructions hoisted in low reg pressure situation"); |
| 49 | STATISTIC(NumHighLatency, |
| 50 | "Number of high latency instructions hoisted"); |
| 51 | STATISTIC(NumCSEed, |
| 52 | "Number of hoisted machine instructions CSEed"); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 53 | STATISTIC(NumPostRAHoisted, |
| 54 | "Number of machine instructions hoisted out of loops post regalloc"); |
Bill Wendling | b48519c | 2007-12-08 01:47:01 +0000 | [diff] [blame] | 55 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 56 | namespace { |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 57 | class MachineLICM : public MachineFunctionPass { |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 58 | bool PreRegAlloc; |
| 59 | |
Bill Wendling | 9258cd3 | 2008-01-02 19:32:43 +0000 | [diff] [blame] | 60 | const TargetMachine *TM; |
Bill Wendling | efe2be7 | 2007-12-11 23:27:51 +0000 | [diff] [blame] | 61 | const TargetInstrInfo *TII; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 62 | const TargetLowering *TLI; |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 63 | const TargetRegisterInfo *TRI; |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 64 | const MachineFrameInfo *MFI; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 65 | MachineRegisterInfo *MRI; |
| 66 | const InstrItineraryData *InstrItins; |
Bill Wendling | 12ebf14 | 2007-12-11 19:40:06 +0000 | [diff] [blame] | 67 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 68 | // Various analyses that we use... |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 69 | AliasAnalysis *AA; // Alias analysis info. |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 70 | MachineLoopInfo *MLI; // Current MachineLoopInfo |
Bill Wendling | e4fc1cc | 2008-05-12 19:38:32 +0000 | [diff] [blame] | 71 | MachineDominatorTree *DT; // Machine dominator tree for the cur loop |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 72 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 73 | // State that is updated as we process loops |
Bill Wendling | e4fc1cc | 2008-05-12 19:38:32 +0000 | [diff] [blame] | 74 | bool Changed; // True if a loop is changed. |
Evan Cheng | 82e0a1a | 2010-05-29 00:06:36 +0000 | [diff] [blame] | 75 | bool FirstInLoop; // True if it's the first LICM in the loop. |
Bill Wendling | e4fc1cc | 2008-05-12 19:38:32 +0000 | [diff] [blame] | 76 | MachineLoop *CurLoop; // The current loop we are working on. |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 77 | MachineBasicBlock *CurPreheader; // The preheader for CurLoop. |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 78 | |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 79 | BitVector AllocatableSet; |
| 80 | |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 81 | // Track 'estimated' register pressure. |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 82 | SmallSet<unsigned, 32> RegSeen; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 83 | SmallVector<unsigned, 8> RegPressure; |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 84 | |
| 85 | // Register pressure "limit" per register class. If the pressure |
| 86 | // is higher than the limit, then it's considered high. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 87 | SmallVector<unsigned, 8> RegLimit; |
| 88 | |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 89 | // Register pressure on path leading from loop preheader to current BB. |
| 90 | SmallVector<SmallVector<unsigned, 8>, 16> BackTrace; |
| 91 | |
Dale Johannesen | c46a5f2 | 2010-07-29 17:45:24 +0000 | [diff] [blame] | 92 | // For each opcode, keep a list of potential CSE instructions. |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 93 | DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap; |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 94 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 95 | public: |
| 96 | static char ID; // Pass identification, replacement for typeid |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 97 | MachineLICM() : |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 98 | MachineFunctionPass(ID), PreRegAlloc(true) { |
| 99 | initializeMachineLICMPass(*PassRegistry::getPassRegistry()); |
| 100 | } |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 101 | |
| 102 | explicit MachineLICM(bool PreRA) : |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 103 | MachineFunctionPass(ID), PreRegAlloc(PreRA) { |
| 104 | initializeMachineLICMPass(*PassRegistry::getPassRegistry()); |
| 105 | } |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 106 | |
| 107 | virtual bool runOnMachineFunction(MachineFunction &MF); |
| 108 | |
Dan Gohman | 7224170 | 2008-12-18 01:37:56 +0000 | [diff] [blame] | 109 | const char *getPassName() const { return "Machine Instruction LICM"; } |
| 110 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 111 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 112 | AU.setPreservesCFG(); |
| 113 | AU.addRequired<MachineLoopInfo>(); |
| 114 | AU.addRequired<MachineDominatorTree>(); |
Dan Gohman | e33f44c | 2009-10-07 17:38:06 +0000 | [diff] [blame] | 115 | AU.addRequired<AliasAnalysis>(); |
Bill Wendling | d5da704 | 2008-01-04 08:48:49 +0000 | [diff] [blame] | 116 | AU.addPreserved<MachineLoopInfo>(); |
| 117 | AU.addPreserved<MachineDominatorTree>(); |
| 118 | MachineFunctionPass::getAnalysisUsage(AU); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 119 | } |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 120 | |
| 121 | virtual void releaseMemory() { |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 122 | RegSeen.clear(); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 123 | RegPressure.clear(); |
| 124 | RegLimit.clear(); |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 125 | BackTrace.clear(); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 126 | for (DenseMap<unsigned,std::vector<const MachineInstr*> >::iterator |
| 127 | CI = CSEMap.begin(), CE = CSEMap.end(); CI != CE; ++CI) |
| 128 | CI->second.clear(); |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 129 | CSEMap.clear(); |
| 130 | } |
| 131 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 132 | private: |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 133 | /// CandidateInfo - Keep track of information about hoisting candidates. |
| 134 | struct CandidateInfo { |
| 135 | MachineInstr *MI; |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 136 | unsigned Def; |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 137 | int FI; |
| 138 | CandidateInfo(MachineInstr *mi, unsigned def, int fi) |
| 139 | : MI(mi), Def(def), FI(fi) {} |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | /// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop |
| 143 | /// invariants out to the preheader. |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 144 | void HoistRegionPostRA(); |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 145 | |
| 146 | /// HoistPostRA - When an instruction is found to only use loop invariant |
| 147 | /// operands that is safe to hoist, this instruction is called to do the |
| 148 | /// dirty work. |
| 149 | void HoistPostRA(MachineInstr *MI, unsigned Def); |
| 150 | |
| 151 | /// ProcessMI - Examine the instruction for potentai LICM candidate. Also |
| 152 | /// gather register def and frame object update information. |
| 153 | void ProcessMI(MachineInstr *MI, unsigned *PhysRegDefs, |
| 154 | SmallSet<int, 32> &StoredFIs, |
| 155 | SmallVector<CandidateInfo, 32> &Candidates); |
| 156 | |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 157 | /// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the |
| 158 | /// current loop. |
| 159 | void AddToLiveIns(unsigned Reg); |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 160 | |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 161 | /// IsLICMCandidate - Returns true if the instruction may be a suitable |
Chris Lattner | 7791080 | 2010-07-12 00:00:35 +0000 | [diff] [blame] | 162 | /// candidate for LICM. e.g. If the instruction is a call, then it's |
| 163 | /// obviously not safe to hoist it. |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 164 | bool IsLICMCandidate(MachineInstr &I); |
| 165 | |
Bill Wendling | 041b3f8 | 2007-12-08 23:58:46 +0000 | [diff] [blame] | 166 | /// IsLoopInvariantInst - Returns true if the instruction is loop |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 167 | /// invariant. I.e., all virtual register operands are defined outside of |
| 168 | /// the loop, physical registers aren't accessed (explicitly or implicitly), |
| 169 | /// and the instruction is hoistable. |
| 170 | /// |
Bill Wendling | 041b3f8 | 2007-12-08 23:58:46 +0000 | [diff] [blame] | 171 | bool IsLoopInvariantInst(MachineInstr &I); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 172 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 173 | /// HasHighOperandLatency - Compute operand latency between a def of 'Reg' |
| 174 | /// and an use in the current loop, return true if the target considered |
| 175 | /// it 'high'. |
| 176 | bool HasHighOperandLatency(MachineInstr &MI, unsigned DefIdx, unsigned Reg); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 177 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 178 | /// CanCauseHighRegPressure - Visit BBs from header to current BB, |
| 179 | /// check if hoisting an instruction of the given cost matrix can cause high |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 180 | /// register pressure. |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 181 | bool CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost); |
| 182 | |
| 183 | /// UpdateBackTraceRegPressure - Traverse the back trace from header to |
| 184 | /// the current block and update their register pressures to reflect the |
| 185 | /// effect of hoisting MI from the current block to the preheader. |
| 186 | void UpdateBackTraceRegPressure(const MachineInstr *MI); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 187 | |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 188 | /// IsProfitableToHoist - Return true if it is potentially profitable to |
| 189 | /// hoist the given loop invariant. |
Evan Cheng | c26abd9 | 2009-11-20 23:31:34 +0000 | [diff] [blame] | 190 | bool IsProfitableToHoist(MachineInstr &MI); |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 191 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 192 | /// HoistRegion - Walk the specified region of the CFG (defined by all |
| 193 | /// blocks dominated by the specified block, and that are in the current |
| 194 | /// loop) in depth first order w.r.t the DominatorTree. This allows us to |
| 195 | /// visit definitions before uses, allowing us to hoist a loop body in one |
| 196 | /// pass without iteration. |
| 197 | /// |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 198 | void HoistRegion(MachineDomTreeNode *N, bool IsHeader = false); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 199 | |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 200 | /// InitRegPressure - Find all virtual register references that are liveout |
| 201 | /// of the preheader to initialize the starting "register pressure". Note |
| 202 | /// this does not count live through (livein but not used) registers. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 203 | void InitRegPressure(MachineBasicBlock *BB); |
| 204 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 205 | /// UpdateRegPressure - Update estimate of register pressure after the |
| 206 | /// specified instruction. |
| 207 | void UpdateRegPressure(const MachineInstr *MI); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 208 | |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 209 | /// isLoadFromConstantMemory - Return true if the given instruction is a |
| 210 | /// load from constant memory. |
| 211 | bool isLoadFromConstantMemory(MachineInstr *MI); |
| 212 | |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 213 | /// ExtractHoistableLoad - Unfold a load from the given machineinstr if |
| 214 | /// the load itself could be hoisted. Return the unfolded and hoistable |
| 215 | /// load, or null if the load couldn't be unfolded or if it wouldn't |
| 216 | /// be hoistable. |
| 217 | MachineInstr *ExtractHoistableLoad(MachineInstr *MI); |
| 218 | |
Evan Cheng | 78e5c11 | 2009-11-07 03:52:02 +0000 | [diff] [blame] | 219 | /// LookForDuplicate - Find an instruction amount PrevMIs that is a |
| 220 | /// duplicate of MI. Return this instruction if it's found. |
| 221 | const MachineInstr *LookForDuplicate(const MachineInstr *MI, |
| 222 | std::vector<const MachineInstr*> &PrevMIs); |
| 223 | |
Evan Cheng | 9fb744e | 2009-11-05 00:51:13 +0000 | [diff] [blame] | 224 | /// EliminateCSE - Given a LICM'ed instruction, look for an instruction on |
| 225 | /// the preheader that compute the same value. If it's found, do a RAU on |
| 226 | /// with the definition of the existing instruction rather than hoisting |
| 227 | /// the instruction to the preheader. |
| 228 | bool EliminateCSE(MachineInstr *MI, |
| 229 | DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI); |
| 230 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 231 | /// Hoist - When an instruction is found to only use loop invariant operands |
| 232 | /// that is safe to hoist, this instruction is called to do the dirty work. |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 233 | /// It returns true if the instruction is hoisted. |
| 234 | bool Hoist(MachineInstr *MI, MachineBasicBlock *Preheader); |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 235 | |
| 236 | /// InitCSEMap - Initialize the CSE map with instructions that are in the |
| 237 | /// current loop preheader that may become duplicates of instructions that |
| 238 | /// are hoisted out of the loop. |
| 239 | void InitCSEMap(MachineBasicBlock *BB); |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 240 | |
| 241 | /// getCurPreheader - Get the preheader for the current loop, splitting |
| 242 | /// a critical edge if needed. |
| 243 | MachineBasicBlock *getCurPreheader(); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 244 | }; |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 245 | } // end anonymous namespace |
| 246 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 247 | char MachineLICM::ID = 0; |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 248 | INITIALIZE_PASS_BEGIN(MachineLICM, "machinelicm", |
| 249 | "Machine Loop Invariant Code Motion", false, false) |
| 250 | INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) |
| 251 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
| 252 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
| 253 | INITIALIZE_PASS_END(MachineLICM, "machinelicm", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 254 | "Machine Loop Invariant Code Motion", false, false) |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 255 | |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 256 | FunctionPass *llvm::createMachineLICMPass(bool PreRegAlloc) { |
| 257 | return new MachineLICM(PreRegAlloc); |
| 258 | } |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 259 | |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 260 | /// LoopIsOuterMostWithPredecessor - Test if the given loop is the outer-most |
| 261 | /// loop that has a unique predecessor. |
| 262 | static bool LoopIsOuterMostWithPredecessor(MachineLoop *CurLoop) { |
Dan Gohman | aa74260 | 2010-07-09 18:49:45 +0000 | [diff] [blame] | 263 | // Check whether this loop even has a unique predecessor. |
| 264 | if (!CurLoop->getLoopPredecessor()) |
| 265 | return false; |
| 266 | // Ok, now check to see if any of its outer loops do. |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 267 | for (MachineLoop *L = CurLoop->getParentLoop(); L; L = L->getParentLoop()) |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 268 | if (L->getLoopPredecessor()) |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 269 | return false; |
Dan Gohman | aa74260 | 2010-07-09 18:49:45 +0000 | [diff] [blame] | 270 | // None of them did, so this is the outermost with a unique predecessor. |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 271 | return true; |
| 272 | } |
| 273 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 274 | bool MachineLICM::runOnMachineFunction(MachineFunction &MF) { |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 275 | if (PreRegAlloc) |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 276 | DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: "); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 277 | else |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 278 | DEBUG(dbgs() << "******** Post-regalloc Machine LICM: "); |
| 279 | DEBUG(dbgs() << MF.getFunction()->getName() << " ********\n"); |
Bill Wendling | a17ad59 | 2007-12-11 22:22:22 +0000 | [diff] [blame] | 280 | |
Evan Cheng | 82e0a1a | 2010-05-29 00:06:36 +0000 | [diff] [blame] | 281 | Changed = FirstInLoop = false; |
Bill Wendling | acb04ec | 2008-08-31 02:30:23 +0000 | [diff] [blame] | 282 | TM = &MF.getTarget(); |
Bill Wendling | 9258cd3 | 2008-01-02 19:32:43 +0000 | [diff] [blame] | 283 | TII = TM->getInstrInfo(); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 284 | TLI = TM->getTargetLowering(); |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 285 | TRI = TM->getRegisterInfo(); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 286 | MFI = MF.getFrameInfo(); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 287 | MRI = &MF.getRegInfo(); |
| 288 | InstrItins = TM->getInstrItineraryData(); |
Dan Gohman | 45094e3 | 2009-09-26 02:34:00 +0000 | [diff] [blame] | 289 | AllocatableSet = TRI->getAllocatableSet(MF); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 290 | |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 291 | if (PreRegAlloc) { |
| 292 | // Estimate register pressure during pre-regalloc pass. |
| 293 | unsigned NumRC = TRI->getNumRegClasses(); |
| 294 | RegPressure.resize(NumRC); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 295 | std::fill(RegPressure.begin(), RegPressure.end(), 0); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 296 | RegLimit.resize(NumRC); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 297 | for (TargetRegisterInfo::regclass_iterator I = TRI->regclass_begin(), |
| 298 | E = TRI->regclass_end(); I != E; ++I) |
| 299 | RegLimit[(*I)->getID()] = TLI->getRegPressureLimit(*I, MF); |
| 300 | } |
| 301 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 302 | // Get our Loop information... |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 303 | MLI = &getAnalysis<MachineLoopInfo>(); |
| 304 | DT = &getAnalysis<MachineDominatorTree>(); |
| 305 | AA = &getAnalysis<AliasAnalysis>(); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 306 | |
Dan Gohman | aa74260 | 2010-07-09 18:49:45 +0000 | [diff] [blame] | 307 | SmallVector<MachineLoop *, 8> Worklist(MLI->begin(), MLI->end()); |
| 308 | while (!Worklist.empty()) { |
| 309 | CurLoop = Worklist.pop_back_val(); |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 310 | CurPreheader = 0; |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 311 | |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 312 | // If this is done before regalloc, only visit outer-most preheader-sporting |
| 313 | // loops. |
Dan Gohman | aa74260 | 2010-07-09 18:49:45 +0000 | [diff] [blame] | 314 | if (PreRegAlloc && !LoopIsOuterMostWithPredecessor(CurLoop)) { |
| 315 | Worklist.append(CurLoop->begin(), CurLoop->end()); |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 316 | continue; |
Dan Gohman | aa74260 | 2010-07-09 18:49:45 +0000 | [diff] [blame] | 317 | } |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 318 | |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 319 | if (!PreRegAlloc) |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 320 | HoistRegionPostRA(); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 321 | else { |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 322 | // CSEMap is initialized for loop header when the first instruction is |
| 323 | // being hoisted. |
| 324 | MachineDomTreeNode *N = DT->getNode(CurLoop->getHeader()); |
Evan Cheng | 82e0a1a | 2010-05-29 00:06:36 +0000 | [diff] [blame] | 325 | FirstInLoop = true; |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 326 | HoistRegion(N, true); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 327 | CSEMap.clear(); |
| 328 | } |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | return Changed; |
| 332 | } |
| 333 | |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 334 | /// InstructionStoresToFI - Return true if instruction stores to the |
| 335 | /// specified frame. |
| 336 | static bool InstructionStoresToFI(const MachineInstr *MI, int FI) { |
| 337 | for (MachineInstr::mmo_iterator o = MI->memoperands_begin(), |
| 338 | oe = MI->memoperands_end(); o != oe; ++o) { |
| 339 | if (!(*o)->isStore() || !(*o)->getValue()) |
| 340 | continue; |
| 341 | if (const FixedStackPseudoSourceValue *Value = |
| 342 | dyn_cast<const FixedStackPseudoSourceValue>((*o)->getValue())) { |
| 343 | if (Value->getFrameIndex() == FI) |
| 344 | return true; |
| 345 | } |
| 346 | } |
| 347 | return false; |
| 348 | } |
| 349 | |
| 350 | /// ProcessMI - Examine the instruction for potentai LICM candidate. Also |
| 351 | /// gather register def and frame object update information. |
| 352 | void MachineLICM::ProcessMI(MachineInstr *MI, |
| 353 | unsigned *PhysRegDefs, |
| 354 | SmallSet<int, 32> &StoredFIs, |
| 355 | SmallVector<CandidateInfo, 32> &Candidates) { |
| 356 | bool RuledOut = false; |
Evan Cheng | aeb2f4a | 2010-04-13 20:21:05 +0000 | [diff] [blame] | 357 | bool HasNonInvariantUse = false; |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 358 | unsigned Def = 0; |
| 359 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 360 | const MachineOperand &MO = MI->getOperand(i); |
| 361 | if (MO.isFI()) { |
| 362 | // Remember if the instruction stores to the frame index. |
| 363 | int FI = MO.getIndex(); |
| 364 | if (!StoredFIs.count(FI) && |
| 365 | MFI->isSpillSlotObjectIndex(FI) && |
| 366 | InstructionStoresToFI(MI, FI)) |
| 367 | StoredFIs.insert(FI); |
Evan Cheng | aeb2f4a | 2010-04-13 20:21:05 +0000 | [diff] [blame] | 368 | HasNonInvariantUse = true; |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 369 | continue; |
| 370 | } |
| 371 | |
| 372 | if (!MO.isReg()) |
| 373 | continue; |
| 374 | unsigned Reg = MO.getReg(); |
| 375 | if (!Reg) |
| 376 | continue; |
| 377 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && |
| 378 | "Not expecting virtual register!"); |
| 379 | |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 380 | if (!MO.isDef()) { |
Evan Cheng | 6327537 | 2010-04-13 22:13:34 +0000 | [diff] [blame] | 381 | if (Reg && PhysRegDefs[Reg]) |
Evan Cheng | aeb2f4a | 2010-04-13 20:21:05 +0000 | [diff] [blame] | 382 | // If it's using a non-loop-invariant register, then it's obviously not |
| 383 | // safe to hoist. |
| 384 | HasNonInvariantUse = true; |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 385 | continue; |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 386 | } |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 387 | |
| 388 | if (MO.isImplicit()) { |
| 389 | ++PhysRegDefs[Reg]; |
| 390 | for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) |
| 391 | ++PhysRegDefs[*AS]; |
| 392 | if (!MO.isDead()) |
| 393 | // Non-dead implicit def? This cannot be hoisted. |
| 394 | RuledOut = true; |
| 395 | // No need to check if a dead implicit def is also defined by |
| 396 | // another instruction. |
| 397 | continue; |
| 398 | } |
| 399 | |
| 400 | // FIXME: For now, avoid instructions with multiple defs, unless |
| 401 | // it's a dead implicit def. |
| 402 | if (Def) |
| 403 | RuledOut = true; |
| 404 | else |
| 405 | Def = Reg; |
| 406 | |
| 407 | // If we have already seen another instruction that defines the same |
| 408 | // register, then this is not safe. |
| 409 | if (++PhysRegDefs[Reg] > 1) |
| 410 | // MI defined register is seen defined by another instruction in |
| 411 | // the loop, it cannot be a LICM candidate. |
| 412 | RuledOut = true; |
| 413 | for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) |
| 414 | if (++PhysRegDefs[*AS] > 1) |
| 415 | RuledOut = true; |
| 416 | } |
| 417 | |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 418 | // Only consider reloads for now and remats which do not have register |
| 419 | // operands. FIXME: Consider unfold load folding instructions. |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 420 | if (Def && !RuledOut) { |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 421 | int FI = INT_MIN; |
Evan Cheng | aeb2f4a | 2010-04-13 20:21:05 +0000 | [diff] [blame] | 422 | if ((!HasNonInvariantUse && IsLICMCandidate(*MI)) || |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 423 | (TII->isLoadFromStackSlot(MI, FI) && MFI->isSpillSlotObjectIndex(FI))) |
| 424 | Candidates.push_back(CandidateInfo(MI, Def, FI)); |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 425 | } |
| 426 | } |
| 427 | |
| 428 | /// HoistRegionPostRA - Walk the specified region of the CFG and hoist loop |
| 429 | /// invariants out to the preheader. |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 430 | void MachineLICM::HoistRegionPostRA() { |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 431 | unsigned NumRegs = TRI->getNumRegs(); |
| 432 | unsigned *PhysRegDefs = new unsigned[NumRegs]; |
| 433 | std::fill(PhysRegDefs, PhysRegDefs + NumRegs, 0); |
| 434 | |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 435 | SmallVector<CandidateInfo, 32> Candidates; |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 436 | SmallSet<int, 32> StoredFIs; |
| 437 | |
| 438 | // Walk the entire region, count number of defs for each register, and |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 439 | // collect potential LICM candidates. |
| 440 | const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks(); |
| 441 | for (unsigned i = 0, e = Blocks.size(); i != e; ++i) { |
| 442 | MachineBasicBlock *BB = Blocks[i]; |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 443 | // Conservatively treat live-in's as an external def. |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 444 | // FIXME: That means a reload that're reused in successor block(s) will not |
| 445 | // be LICM'ed. |
Dan Gohman | 81bf03e | 2010-04-13 16:57:55 +0000 | [diff] [blame] | 446 | for (MachineBasicBlock::livein_iterator I = BB->livein_begin(), |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 447 | E = BB->livein_end(); I != E; ++I) { |
| 448 | unsigned Reg = *I; |
| 449 | ++PhysRegDefs[Reg]; |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 450 | for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) |
| 451 | ++PhysRegDefs[*AS]; |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | for (MachineBasicBlock::iterator |
| 455 | MII = BB->begin(), E = BB->end(); MII != E; ++MII) { |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 456 | MachineInstr *MI = &*MII; |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 457 | ProcessMI(MI, PhysRegDefs, StoredFIs, Candidates); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 458 | } |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 459 | } |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 460 | |
| 461 | // Now evaluate whether the potential candidates qualify. |
| 462 | // 1. Check if the candidate defined register is defined by another |
| 463 | // instruction in the loop. |
| 464 | // 2. If the candidate is a load from stack slot (always true for now), |
| 465 | // check if the slot is stored anywhere in the loop. |
| 466 | for (unsigned i = 0, e = Candidates.size(); i != e; ++i) { |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 467 | if (Candidates[i].FI != INT_MIN && |
| 468 | StoredFIs.count(Candidates[i].FI)) |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 469 | continue; |
| 470 | |
Evan Cheng | aeb2f4a | 2010-04-13 20:21:05 +0000 | [diff] [blame] | 471 | if (PhysRegDefs[Candidates[i].Def] == 1) { |
| 472 | bool Safe = true; |
| 473 | MachineInstr *MI = Candidates[i].MI; |
Evan Cheng | c15d913 | 2010-04-13 20:25:29 +0000 | [diff] [blame] | 474 | for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) { |
| 475 | const MachineOperand &MO = MI->getOperand(j); |
Evan Cheng | 6327537 | 2010-04-13 22:13:34 +0000 | [diff] [blame] | 476 | if (!MO.isReg() || MO.isDef() || !MO.getReg()) |
Evan Cheng | aeb2f4a | 2010-04-13 20:21:05 +0000 | [diff] [blame] | 477 | continue; |
| 478 | if (PhysRegDefs[MO.getReg()]) { |
| 479 | // If it's using a non-loop-invariant register, then it's obviously |
| 480 | // not safe to hoist. |
| 481 | Safe = false; |
| 482 | break; |
| 483 | } |
| 484 | } |
| 485 | if (Safe) |
| 486 | HoistPostRA(MI, Candidates[i].Def); |
| 487 | } |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 488 | } |
Benjamin Kramer | 678d9b7 | 2010-04-12 11:38:35 +0000 | [diff] [blame] | 489 | |
| 490 | delete[] PhysRegDefs; |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 491 | } |
| 492 | |
Jakob Stoklund Olesen | 9196ab6 | 2010-04-20 18:45:47 +0000 | [diff] [blame] | 493 | /// AddToLiveIns - Add register 'Reg' to the livein sets of BBs in the current |
| 494 | /// loop, and make sure it is not killed by any instructions in the loop. |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 495 | void MachineLICM::AddToLiveIns(unsigned Reg) { |
| 496 | const std::vector<MachineBasicBlock*> Blocks = CurLoop->getBlocks(); |
Jakob Stoklund Olesen | 9196ab6 | 2010-04-20 18:45:47 +0000 | [diff] [blame] | 497 | for (unsigned i = 0, e = Blocks.size(); i != e; ++i) { |
| 498 | MachineBasicBlock *BB = Blocks[i]; |
| 499 | if (!BB->isLiveIn(Reg)) |
| 500 | BB->addLiveIn(Reg); |
| 501 | for (MachineBasicBlock::iterator |
| 502 | MII = BB->begin(), E = BB->end(); MII != E; ++MII) { |
| 503 | MachineInstr *MI = &*MII; |
| 504 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 505 | MachineOperand &MO = MI->getOperand(i); |
| 506 | if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue; |
| 507 | if (MO.getReg() == Reg || TRI->isSuperRegister(Reg, MO.getReg())) |
| 508 | MO.setIsKill(false); |
| 509 | } |
| 510 | } |
| 511 | } |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /// HoistPostRA - When an instruction is found to only use loop invariant |
| 515 | /// operands that is safe to hoist, this instruction is called to do the |
| 516 | /// dirty work. |
| 517 | void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) { |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 518 | MachineBasicBlock *Preheader = getCurPreheader(); |
| 519 | if (!Preheader) return; |
| 520 | |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 521 | // Now move the instructions to the predecessor, inserting it before any |
| 522 | // terminator instructions. |
| 523 | DEBUG({ |
| 524 | dbgs() << "Hoisting " << *MI; |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 525 | if (Preheader->getBasicBlock()) |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 526 | dbgs() << " to MachineBasicBlock " |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 527 | << Preheader->getName(); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 528 | if (MI->getParent()->getBasicBlock()) |
| 529 | dbgs() << " from MachineBasicBlock " |
| 530 | << MI->getParent()->getName(); |
| 531 | dbgs() << "\n"; |
| 532 | }); |
| 533 | |
| 534 | // Splice the instruction to the preheader. |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 535 | MachineBasicBlock *MBB = MI->getParent(); |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 536 | Preheader->splice(Preheader->getFirstTerminator(), MBB, MI); |
Evan Cheng | 4038f9c | 2010-04-08 01:03:47 +0000 | [diff] [blame] | 537 | |
Evan Cheng | 94d1d9c | 2010-04-17 07:07:11 +0000 | [diff] [blame] | 538 | // Add register to livein list to all the BBs in the current loop since a |
| 539 | // loop invariant must be kept live throughout the whole loop. This is |
| 540 | // important to ensure later passes do not scavenge the def register. |
| 541 | AddToLiveIns(Def); |
Evan Cheng | d94671a | 2010-04-07 00:41:17 +0000 | [diff] [blame] | 542 | |
| 543 | ++NumPostRAHoisted; |
| 544 | Changed = true; |
| 545 | } |
| 546 | |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 547 | /// HoistRegion - Walk the specified region of the CFG (defined by all blocks |
| 548 | /// dominated by the specified block, and that are in the current loop) in depth |
| 549 | /// first order w.r.t the DominatorTree. This allows us to visit definitions |
| 550 | /// before uses, allowing us to hoist a loop body in one pass without iteration. |
| 551 | /// |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 552 | void MachineLICM::HoistRegion(MachineDomTreeNode *N, bool IsHeader) { |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 553 | assert(N != 0 && "Null dominator tree node?"); |
| 554 | MachineBasicBlock *BB = N->getBlock(); |
| 555 | |
| 556 | // If this subregion is not in the top level loop at all, exit. |
| 557 | if (!CurLoop->contains(BB)) return; |
| 558 | |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 559 | MachineBasicBlock *Preheader = getCurPreheader(); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 560 | if (!Preheader) |
| 561 | return; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 562 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 563 | if (IsHeader) { |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 564 | // Compute registers which are livein into the loop headers. |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 565 | RegSeen.clear(); |
| 566 | BackTrace.clear(); |
| 567 | InitRegPressure(Preheader); |
Daniel Dunbar | 9869413 | 2010-10-19 17:14:24 +0000 | [diff] [blame] | 568 | } |
Evan Cheng | 11e8b74 | 2010-10-19 00:55:07 +0000 | [diff] [blame] | 569 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 570 | // Remember livein register pressure. |
| 571 | BackTrace.push_back(RegPressure); |
| 572 | |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 573 | for (MachineBasicBlock::iterator |
| 574 | MII = BB->begin(), E = BB->end(); MII != E; ) { |
| 575 | MachineBasicBlock::iterator NextMII = MII; ++NextMII; |
| 576 | MachineInstr *MI = &*MII; |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 577 | if (!Hoist(MI, Preheader)) |
| 578 | UpdateRegPressure(MI); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 579 | MII = NextMII; |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 580 | } |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 581 | |
Dale Johannesen | bf1ae5e | 2010-07-20 00:50:13 +0000 | [diff] [blame] | 582 | // Don't hoist things out of a large switch statement. This often causes |
| 583 | // code to be hoisted that wasn't going to be executed, and increases |
| 584 | // register pressure in a situation where it's likely to matter. |
Dale Johannesen | 21d35c1 | 2010-07-20 21:29:12 +0000 | [diff] [blame] | 585 | if (BB->succ_size() < 25) { |
| 586 | const std::vector<MachineDomTreeNode*> &Children = N->getChildren(); |
Dale Johannesen | bf1ae5e | 2010-07-20 00:50:13 +0000 | [diff] [blame] | 587 | for (unsigned I = 0, E = Children.size(); I != E; ++I) |
| 588 | HoistRegion(Children[I]); |
Dale Johannesen | 21d35c1 | 2010-07-20 21:29:12 +0000 | [diff] [blame] | 589 | } |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 590 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 591 | BackTrace.pop_back(); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 594 | static bool isOperandKill(const MachineOperand &MO, MachineRegisterInfo *MRI) { |
| 595 | return MO.isKill() || MRI->hasOneNonDBGUse(MO.getReg()); |
| 596 | } |
| 597 | |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 598 | /// InitRegPressure - Find all virtual register references that are liveout of |
| 599 | /// the preheader to initialize the starting "register pressure". Note this |
| 600 | /// does not count live through (livein but not used) registers. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 601 | void MachineLICM::InitRegPressure(MachineBasicBlock *BB) { |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 602 | std::fill(RegPressure.begin(), RegPressure.end(), 0); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 603 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 604 | // If the preheader has only a single predecessor and it ends with a |
| 605 | // fallthrough or an unconditional branch, then scan its predecessor for live |
| 606 | // defs as well. This happens whenever the preheader is created by splitting |
| 607 | // the critical edge from the loop predecessor to the loop header. |
| 608 | if (BB->pred_size() == 1) { |
| 609 | MachineBasicBlock *TBB = 0, *FBB = 0; |
| 610 | SmallVector<MachineOperand, 4> Cond; |
| 611 | if (!TII->AnalyzeBranch(*BB, TBB, FBB, Cond, false) && Cond.empty()) |
| 612 | InitRegPressure(*BB->pred_begin()); |
| 613 | } |
| 614 | |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 615 | for (MachineBasicBlock::iterator MII = BB->begin(), E = BB->end(); |
| 616 | MII != E; ++MII) { |
| 617 | MachineInstr *MI = &*MII; |
| 618 | for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) { |
| 619 | const MachineOperand &MO = MI->getOperand(i); |
| 620 | if (!MO.isReg() || MO.isImplicit()) |
| 621 | continue; |
| 622 | unsigned Reg = MO.getReg(); |
| 623 | if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 624 | continue; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 625 | |
Andrew Trick | dc986d2 | 2010-10-19 02:50:50 +0000 | [diff] [blame] | 626 | bool isNew = RegSeen.insert(Reg); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 627 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 628 | EVT VT = *RC->vt_begin(); |
| 629 | unsigned RCId = TLI->getRepRegClassFor(VT)->getID(); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 630 | if (MO.isDef()) |
| 631 | RegPressure[RCId] += TLI->getRepRegClassCostFor(VT); |
| 632 | else { |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 633 | bool isKill = isOperandKill(MO, MRI); |
| 634 | if (isNew && !isKill) |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 635 | // Haven't seen this, it must be a livein. |
| 636 | RegPressure[RCId] += TLI->getRepRegClassCostFor(VT); |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 637 | else if (!isNew && isKill) |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 638 | RegPressure[RCId] -= TLI->getRepRegClassCostFor(VT); |
| 639 | } |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 640 | } |
| 641 | } |
| 642 | } |
| 643 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 644 | /// UpdateRegPressure - Update estimate of register pressure after the |
| 645 | /// specified instruction. |
| 646 | void MachineLICM::UpdateRegPressure(const MachineInstr *MI) { |
| 647 | if (MI->isImplicitDef()) |
| 648 | return; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 649 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 650 | SmallVector<unsigned, 4> Defs; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 651 | for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) { |
| 652 | const MachineOperand &MO = MI->getOperand(i); |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 653 | if (!MO.isReg() || MO.isImplicit()) |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 654 | continue; |
| 655 | unsigned Reg = MO.getReg(); |
| 656 | if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 657 | continue; |
| 658 | |
Andrew Trick | dc986d2 | 2010-10-19 02:50:50 +0000 | [diff] [blame] | 659 | bool isNew = RegSeen.insert(Reg); |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 660 | if (MO.isDef()) |
| 661 | Defs.push_back(Reg); |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 662 | else if (!isNew && isOperandKill(MO, MRI)) { |
| 663 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 664 | EVT VT = *RC->vt_begin(); |
| 665 | unsigned RCId = TLI->getRepRegClassFor(VT)->getID(); |
| 666 | unsigned RCCost = TLI->getRepRegClassCostFor(VT); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 667 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 668 | if (RCCost > RegPressure[RCId]) |
| 669 | RegPressure[RCId] = 0; |
| 670 | else |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 671 | RegPressure[RCId] -= RCCost; |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 672 | } |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 673 | } |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 674 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 675 | while (!Defs.empty()) { |
| 676 | unsigned Reg = Defs.pop_back_val(); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 677 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 678 | EVT VT = *RC->vt_begin(); |
| 679 | unsigned RCId = TLI->getRepRegClassFor(VT)->getID(); |
| 680 | unsigned RCCost = TLI->getRepRegClassCostFor(VT); |
| 681 | RegPressure[RCId] += RCCost; |
| 682 | } |
| 683 | } |
| 684 | |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 685 | /// IsLICMCandidate - Returns true if the instruction may be a suitable |
| 686 | /// candidate for LICM. e.g. If the instruction is a call, then it's obviously |
| 687 | /// not safe to hoist it. |
| 688 | bool MachineLICM::IsLICMCandidate(MachineInstr &I) { |
Chris Lattner | 7791080 | 2010-07-12 00:00:35 +0000 | [diff] [blame] | 689 | // Check if it's safe to move the instruction. |
| 690 | bool DontMoveAcrossStore = true; |
| 691 | if (!I.isSafeToMove(TII, AA, DontMoveAcrossStore)) |
Chris Lattner | a22edc8 | 2008-01-10 23:08:24 +0000 | [diff] [blame] | 692 | return false; |
Chris Lattner | 7791080 | 2010-07-12 00:00:35 +0000 | [diff] [blame] | 693 | |
Evan Cheng | 5dc57ce | 2010-04-13 18:16:00 +0000 | [diff] [blame] | 694 | return true; |
| 695 | } |
| 696 | |
| 697 | /// IsLoopInvariantInst - Returns true if the instruction is loop |
| 698 | /// invariant. I.e., all virtual register operands are defined outside of the |
| 699 | /// loop, physical registers aren't accessed explicitly, and there are no side |
| 700 | /// effects that aren't captured by the operands or other flags. |
| 701 | /// |
| 702 | bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) { |
| 703 | if (!IsLICMCandidate(I)) |
| 704 | return false; |
Bill Wendling | 074223a | 2008-03-10 08:13:01 +0000 | [diff] [blame] | 705 | |
Bill Wendling | e4fc1cc | 2008-05-12 19:38:32 +0000 | [diff] [blame] | 706 | // The instruction is loop invariant if all of its operands are. |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 707 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
| 708 | const MachineOperand &MO = I.getOperand(i); |
| 709 | |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 710 | if (!MO.isReg()) |
Bill Wendling | fb018d0 | 2008-08-20 20:32:05 +0000 | [diff] [blame] | 711 | continue; |
| 712 | |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 713 | unsigned Reg = MO.getReg(); |
| 714 | if (Reg == 0) continue; |
| 715 | |
| 716 | // Don't hoist an instruction that uses or defines a physical register. |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 717 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 718 | if (MO.isUse()) { |
| 719 | // If the physreg has no defs anywhere, it's just an ambient register |
Dan Gohman | 45094e3 | 2009-09-26 02:34:00 +0000 | [diff] [blame] | 720 | // and we can freely move its uses. Alternatively, if it's allocatable, |
| 721 | // it could get allocated to something with a def during allocation. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 722 | if (!MRI->def_empty(Reg)) |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 723 | return false; |
Dan Gohman | 45094e3 | 2009-09-26 02:34:00 +0000 | [diff] [blame] | 724 | if (AllocatableSet.test(Reg)) |
| 725 | return false; |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 726 | // Check for a def among the register's aliases too. |
Dan Gohman | 45094e3 | 2009-09-26 02:34:00 +0000 | [diff] [blame] | 727 | for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) { |
| 728 | unsigned AliasReg = *Alias; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 729 | if (!MRI->def_empty(AliasReg)) |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 730 | return false; |
Dan Gohman | 45094e3 | 2009-09-26 02:34:00 +0000 | [diff] [blame] | 731 | if (AllocatableSet.test(AliasReg)) |
| 732 | return false; |
| 733 | } |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 734 | // Otherwise it's safe to move. |
| 735 | continue; |
| 736 | } else if (!MO.isDead()) { |
| 737 | // A def that isn't dead. We can't move it. |
| 738 | return false; |
Dan Gohman | a363a9b | 2010-02-28 00:08:44 +0000 | [diff] [blame] | 739 | } else if (CurLoop->getHeader()->isLiveIn(Reg)) { |
| 740 | // If the reg is live into the loop, we can't hoist an instruction |
| 741 | // which would clobber it. |
| 742 | return false; |
Dan Gohman | a8fb336 | 2009-09-25 23:58:45 +0000 | [diff] [blame] | 743 | } |
| 744 | } |
Bill Wendling | fb018d0 | 2008-08-20 20:32:05 +0000 | [diff] [blame] | 745 | |
| 746 | if (!MO.isUse()) |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 747 | continue; |
| 748 | |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 749 | assert(MRI->getVRegDef(Reg) && |
Bill Wendling | e4fc1cc | 2008-05-12 19:38:32 +0000 | [diff] [blame] | 750 | "Machine instr not mapped for this vreg?!"); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 751 | |
| 752 | // If the loop contains the definition of an operand, then the instruction |
| 753 | // isn't loop invariant. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 754 | if (CurLoop->contains(MRI->getVRegDef(Reg))) |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 755 | return false; |
| 756 | } |
| 757 | |
| 758 | // If we got this far, the instruction is loop invariant! |
| 759 | return true; |
| 760 | } |
| 761 | |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 762 | |
| 763 | /// HasPHIUses - Return true if the specified register has any PHI use. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 764 | static bool HasPHIUses(unsigned Reg, MachineRegisterInfo *MRI) { |
| 765 | for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg), |
| 766 | UE = MRI->use_end(); UI != UE; ++UI) { |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 767 | MachineInstr *UseMI = &*UI; |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 768 | if (UseMI->isPHI()) |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 769 | return true; |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 770 | } |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 771 | return false; |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 772 | } |
| 773 | |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 774 | /// isLoadFromConstantMemory - Return true if the given instruction is a |
| 775 | /// load from constant memory. Machine LICM will hoist these even if they are |
| 776 | /// not re-materializable. |
| 777 | bool MachineLICM::isLoadFromConstantMemory(MachineInstr *MI) { |
| 778 | if (!MI->getDesc().mayLoad()) return false; |
| 779 | if (!MI->hasOneMemOperand()) return false; |
| 780 | MachineMemOperand *MMO = *MI->memoperands_begin(); |
| 781 | if (MMO->isVolatile()) return false; |
| 782 | if (!MMO->getValue()) return false; |
| 783 | const PseudoSourceValue *PSV = dyn_cast<PseudoSourceValue>(MMO->getValue()); |
| 784 | if (PSV) { |
| 785 | MachineFunction &MF = *MI->getParent()->getParent(); |
| 786 | return PSV->isConstant(MF.getFrameInfo()); |
| 787 | } else { |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 788 | return AA->pointsToConstantMemory(AliasAnalysis::Location(MMO->getValue(), |
| 789 | MMO->getSize(), |
| 790 | MMO->getTBAAInfo())); |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 791 | } |
| 792 | } |
| 793 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 794 | /// HasHighOperandLatency - Compute operand latency between a def of 'Reg' |
| 795 | /// and an use in the current loop, return true if the target considered |
| 796 | /// it 'high'. |
| 797 | bool MachineLICM::HasHighOperandLatency(MachineInstr &MI, |
| 798 | unsigned DefIdx, unsigned Reg) { |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 799 | if (MRI->use_nodbg_empty(Reg)) |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 800 | return false; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 801 | |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 802 | for (MachineRegisterInfo::use_nodbg_iterator I = MRI->use_nodbg_begin(Reg), |
| 803 | E = MRI->use_nodbg_end(); I != E; ++I) { |
| 804 | MachineInstr *UseMI = &*I; |
| 805 | if (!CurLoop->contains(UseMI->getParent())) |
| 806 | continue; |
| 807 | for (unsigned i = 0, e = UseMI->getNumOperands(); i != e; ++i) { |
| 808 | const MachineOperand &MO = UseMI->getOperand(i); |
| 809 | if (!MO.isReg() || !MO.isUse()) |
| 810 | continue; |
| 811 | unsigned MOReg = MO.getReg(); |
| 812 | if (MOReg != Reg) |
| 813 | continue; |
| 814 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 815 | if (TII->hasHighOperandLatency(InstrItins, MRI, &MI, DefIdx, UseMI, i)) |
| 816 | return true; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 819 | // Only look at the first in loop use. |
| 820 | break; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 821 | } |
| 822 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 823 | return false; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 824 | } |
| 825 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 826 | /// CanCauseHighRegPressure - Visit BBs from header to current BB, check |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 827 | /// if hoisting an instruction of the given cost matrix can cause high |
| 828 | /// register pressure. |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 829 | bool MachineLICM::CanCauseHighRegPressure(DenseMap<unsigned, int> &Cost) { |
| 830 | for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end(); |
| 831 | CI != CE; ++CI) { |
| 832 | if (CI->second <= 0) |
| 833 | continue; |
| 834 | |
| 835 | unsigned RCId = CI->first; |
| 836 | for (unsigned i = BackTrace.size(); i != 0; --i) { |
| 837 | SmallVector<unsigned, 8> &RP = BackTrace[i-1]; |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 838 | if (RP[RCId] + CI->second >= RegLimit[RCId]) |
| 839 | return true; |
| 840 | } |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | return false; |
| 844 | } |
| 845 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 846 | /// UpdateBackTraceRegPressure - Traverse the back trace from header to the |
| 847 | /// current block and update their register pressures to reflect the effect |
| 848 | /// of hoisting MI from the current block to the preheader. |
| 849 | void MachineLICM::UpdateBackTraceRegPressure(const MachineInstr *MI) { |
| 850 | if (MI->isImplicitDef()) |
| 851 | return; |
| 852 | |
| 853 | // First compute the 'cost' of the instruction, i.e. its contribution |
| 854 | // to register pressure. |
| 855 | DenseMap<unsigned, int> Cost; |
| 856 | for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) { |
| 857 | const MachineOperand &MO = MI->getOperand(i); |
| 858 | if (!MO.isReg() || MO.isImplicit()) |
| 859 | continue; |
| 860 | unsigned Reg = MO.getReg(); |
| 861 | if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 862 | continue; |
| 863 | |
| 864 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 865 | EVT VT = *RC->vt_begin(); |
| 866 | unsigned RCId = TLI->getRepRegClassFor(VT)->getID(); |
| 867 | unsigned RCCost = TLI->getRepRegClassCostFor(VT); |
| 868 | if (MO.isDef()) { |
| 869 | DenseMap<unsigned, int>::iterator CI = Cost.find(RCId); |
| 870 | if (CI != Cost.end()) |
| 871 | CI->second += RCCost; |
| 872 | else |
| 873 | Cost.insert(std::make_pair(RCId, RCCost)); |
| 874 | } else if (isOperandKill(MO, MRI)) { |
| 875 | DenseMap<unsigned, int>::iterator CI = Cost.find(RCId); |
| 876 | if (CI != Cost.end()) |
| 877 | CI->second -= RCCost; |
| 878 | else |
| 879 | Cost.insert(std::make_pair(RCId, -RCCost)); |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | // Update register pressure of blocks from loop header to current block. |
| 884 | for (unsigned i = 0, e = BackTrace.size(); i != e; ++i) { |
| 885 | SmallVector<unsigned, 8> &RP = BackTrace[i]; |
| 886 | for (DenseMap<unsigned, int>::iterator CI = Cost.begin(), CE = Cost.end(); |
| 887 | CI != CE; ++CI) { |
| 888 | unsigned RCId = CI->first; |
| 889 | RP[RCId] += CI->second; |
| 890 | } |
| 891 | } |
| 892 | } |
| 893 | |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 894 | /// IsProfitableToHoist - Return true if it is potentially profitable to hoist |
| 895 | /// the given loop invariant. |
Evan Cheng | c26abd9 | 2009-11-20 23:31:34 +0000 | [diff] [blame] | 896 | bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) { |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 897 | if (MI.isImplicitDef()) |
| 898 | return true; |
| 899 | |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 900 | // If the instruction is cheap, only hoist if it is re-materilizable. LICM |
| 901 | // will increase register pressure. It's probably not worth it if the |
| 902 | // instruction is cheap. |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 903 | // Also hoist loads from constant memory, e.g. load from stubs, GOT. Hoisting |
| 904 | // these tend to help performance in low register pressure situation. The |
| 905 | // trade off is it may cause spill in high pressure situation. It will end up |
| 906 | // adding a store in the loop preheader. But the reload is no more expensive. |
| 907 | // The side benefit is these loads are frequently CSE'ed. |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 908 | if (MI.getDesc().isAsCheapAsAMove()) { |
| 909 | if (!TII->isTriviallyReMaterializable(&MI, AA)) |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 910 | return false; |
| 911 | } else { |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 912 | // Estimate register pressure to determine whether to LICM the instruction. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 913 | // In low register pressure situation, we can be more aggressive about |
| 914 | // hoisting. Also, favors hoisting long latency instructions even in |
| 915 | // moderately high pressure situation. |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 916 | DenseMap<unsigned, int> Cost; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 917 | for (unsigned i = 0, e = MI.getDesc().getNumOperands(); i != e; ++i) { |
| 918 | const MachineOperand &MO = MI.getOperand(i); |
| 919 | if (!MO.isReg() || MO.isImplicit()) |
| 920 | continue; |
| 921 | unsigned Reg = MO.getReg(); |
| 922 | if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 923 | continue; |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 924 | if (MO.isDef()) { |
Evan Cheng | 2312842 | 2010-10-19 18:58:51 +0000 | [diff] [blame] | 925 | if (HasHighOperandLatency(MI, i, Reg)) { |
| 926 | ++NumHighLatency; |
| 927 | return true; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 928 | } |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 929 | |
| 930 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 931 | EVT VT = *RC->vt_begin(); |
| 932 | unsigned RCId = TLI->getRepRegClassFor(VT)->getID(); |
| 933 | unsigned RCCost = TLI->getRepRegClassCostFor(VT); |
| 934 | DenseMap<unsigned, int>::iterator CI = Cost.find(RCId); |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 935 | if (CI != Cost.end()) |
| 936 | CI->second += RCCost; |
| 937 | else |
| 938 | Cost.insert(std::make_pair(RCId, RCCost)); |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 939 | } else if (isOperandKill(MO, MRI)) { |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 940 | // Is a virtual register use is a kill, hoisting it out of the loop |
| 941 | // may actually reduce register pressure or be register pressure |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 942 | // neutral. |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 943 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
| 944 | EVT VT = *RC->vt_begin(); |
| 945 | unsigned RCId = TLI->getRepRegClassFor(VT)->getID(); |
| 946 | unsigned RCCost = TLI->getRepRegClassCostFor(VT); |
| 947 | DenseMap<unsigned, int>::iterator CI = Cost.find(RCId); |
| 948 | if (CI != Cost.end()) |
| 949 | CI->second -= RCCost; |
| 950 | else |
| 951 | Cost.insert(std::make_pair(RCId, -RCCost)); |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 952 | } |
| 953 | } |
| 954 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 955 | // Visit BBs from header to current BB, if hoisting this doesn't cause |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 956 | // high register pressure, then it's safe to proceed. |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 957 | if (!CanCauseHighRegPressure(Cost)) { |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 958 | ++NumLowRP; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 959 | return true; |
Evan Cheng | 03a9fdf | 2010-10-16 02:20:26 +0000 | [diff] [blame] | 960 | } |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 961 | |
| 962 | // High register pressure situation, only hoist if the instruction is going to |
| 963 | // be remat'ed. |
| 964 | if (!TII->isTriviallyReMaterializable(&MI, AA) && |
| 965 | !isLoadFromConstantMemory(&MI)) |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 966 | return false; |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 967 | } |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 968 | |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 969 | // If result(s) of this instruction is used by PHIs, then don't hoist it. |
| 970 | // The presence of joins makes it difficult for current register allocator |
| 971 | // implementation to perform remat. |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 972 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 973 | const MachineOperand &MO = MI.getOperand(i); |
| 974 | if (!MO.isReg() || !MO.isDef()) |
| 975 | continue; |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 976 | if (HasPHIUses(MO.getReg(), MRI)) |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 977 | return false; |
Evan Cheng | 45e94d6 | 2009-02-04 09:19:56 +0000 | [diff] [blame] | 978 | } |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 979 | |
| 980 | return true; |
| 981 | } |
| 982 | |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 983 | MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) { |
Evan Cheng | e95f319 | 2010-10-08 18:59:19 +0000 | [diff] [blame] | 984 | // Don't unfold simple loads. |
| 985 | if (MI->getDesc().canFoldAsLoad()) |
| 986 | return 0; |
| 987 | |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 988 | // If not, we may be able to unfold a load and hoist that. |
| 989 | // First test whether the instruction is loading from an amenable |
| 990 | // memory location. |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 991 | if (!isLoadFromConstantMemory(MI)) |
| 992 | return 0; |
| 993 | |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 994 | // Next determine the register class for a temporary register. |
Dan Gohman | 0115e16 | 2009-10-30 22:18:41 +0000 | [diff] [blame] | 995 | unsigned LoadRegIndex; |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 996 | unsigned NewOpc = |
| 997 | TII->getOpcodeAfterMemoryUnfold(MI->getOpcode(), |
| 998 | /*UnfoldLoad=*/true, |
Dan Gohman | 0115e16 | 2009-10-30 22:18:41 +0000 | [diff] [blame] | 999 | /*UnfoldStore=*/false, |
| 1000 | &LoadRegIndex); |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 1001 | if (NewOpc == 0) return 0; |
| 1002 | const TargetInstrDesc &TID = TII->get(NewOpc); |
| 1003 | if (TID.getNumDefs() != 1) return 0; |
Dan Gohman | 0115e16 | 2009-10-30 22:18:41 +0000 | [diff] [blame] | 1004 | const TargetRegisterClass *RC = TID.OpInfo[LoadRegIndex].getRegClass(TRI); |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 1005 | // Ok, we're unfolding. Create a temporary register and do the unfold. |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 1006 | unsigned Reg = MRI->createVirtualRegister(RC); |
Evan Cheng | 87b75ba | 2009-11-20 19:55:37 +0000 | [diff] [blame] | 1007 | |
| 1008 | MachineFunction &MF = *MI->getParent()->getParent(); |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 1009 | SmallVector<MachineInstr *, 2> NewMIs; |
| 1010 | bool Success = |
| 1011 | TII->unfoldMemoryOperand(MF, MI, Reg, |
| 1012 | /*UnfoldLoad=*/true, /*UnfoldStore=*/false, |
| 1013 | NewMIs); |
| 1014 | (void)Success; |
| 1015 | assert(Success && |
| 1016 | "unfoldMemoryOperand failed when getOpcodeAfterMemoryUnfold " |
| 1017 | "succeeded!"); |
| 1018 | assert(NewMIs.size() == 2 && |
| 1019 | "Unfolded a load into multiple instructions!"); |
| 1020 | MachineBasicBlock *MBB = MI->getParent(); |
| 1021 | MBB->insert(MI, NewMIs[0]); |
| 1022 | MBB->insert(MI, NewMIs[1]); |
| 1023 | // If unfolding produced a load that wasn't loop-invariant or profitable to |
| 1024 | // hoist, discard the new instructions and bail. |
Evan Cheng | c26abd9 | 2009-11-20 23:31:34 +0000 | [diff] [blame] | 1025 | if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) { |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 1026 | NewMIs[0]->eraseFromParent(); |
| 1027 | NewMIs[1]->eraseFromParent(); |
| 1028 | return 0; |
| 1029 | } |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 1030 | |
| 1031 | // Update register pressure for the unfolded instruction. |
| 1032 | UpdateRegPressure(NewMIs[1]); |
| 1033 | |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 1034 | // Otherwise we successfully unfolded a load that we can hoist. |
| 1035 | MI->eraseFromParent(); |
| 1036 | return NewMIs[0]; |
| 1037 | } |
| 1038 | |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 1039 | void MachineLICM::InitCSEMap(MachineBasicBlock *BB) { |
| 1040 | for (MachineBasicBlock::iterator I = BB->begin(),E = BB->end(); I != E; ++I) { |
| 1041 | const MachineInstr *MI = &*I; |
| 1042 | // FIXME: For now, only hoist re-materilizable instructions. LICM will |
| 1043 | // increase register pressure. We want to make sure it doesn't increase |
| 1044 | // spilling. |
| 1045 | if (TII->isTriviallyReMaterializable(MI, AA)) { |
| 1046 | unsigned Opcode = MI->getOpcode(); |
| 1047 | DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator |
| 1048 | CI = CSEMap.find(Opcode); |
| 1049 | if (CI != CSEMap.end()) |
| 1050 | CI->second.push_back(MI); |
| 1051 | else { |
| 1052 | std::vector<const MachineInstr*> CSEMIs; |
| 1053 | CSEMIs.push_back(MI); |
| 1054 | CSEMap.insert(std::make_pair(Opcode, CSEMIs)); |
| 1055 | } |
| 1056 | } |
| 1057 | } |
| 1058 | } |
| 1059 | |
Evan Cheng | 78e5c11 | 2009-11-07 03:52:02 +0000 | [diff] [blame] | 1060 | const MachineInstr* |
| 1061 | MachineLICM::LookForDuplicate(const MachineInstr *MI, |
| 1062 | std::vector<const MachineInstr*> &PrevMIs) { |
Evan Cheng | 9fb744e | 2009-11-05 00:51:13 +0000 | [diff] [blame] | 1063 | for (unsigned i = 0, e = PrevMIs.size(); i != e; ++i) { |
| 1064 | const MachineInstr *PrevMI = PrevMIs[i]; |
Evan Cheng | 506049f | 2010-03-03 01:44:33 +0000 | [diff] [blame] | 1065 | if (TII->produceSameValue(MI, PrevMI)) |
Evan Cheng | 9fb744e | 2009-11-05 00:51:13 +0000 | [diff] [blame] | 1066 | return PrevMI; |
| 1067 | } |
| 1068 | return 0; |
| 1069 | } |
| 1070 | |
| 1071 | bool MachineLICM::EliminateCSE(MachineInstr *MI, |
| 1072 | DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator &CI) { |
Evan Cheng | db89809 | 2010-07-14 01:22:19 +0000 | [diff] [blame] | 1073 | // Do not CSE implicit_def so ProcessImplicitDefs can properly propagate |
| 1074 | // the undef property onto uses. |
| 1075 | if (CI == CSEMap.end() || MI->isImplicitDef()) |
Evan Cheng | 78e5c11 | 2009-11-07 03:52:02 +0000 | [diff] [blame] | 1076 | return false; |
| 1077 | |
| 1078 | if (const MachineInstr *Dup = LookForDuplicate(MI, CI->second)) { |
David Greene | 65a41eb | 2010-01-05 00:03:48 +0000 | [diff] [blame] | 1079 | DEBUG(dbgs() << "CSEing " << *MI << " with " << *Dup); |
Dan Gohman | 6ac33b4 | 2010-02-28 01:33:43 +0000 | [diff] [blame] | 1080 | |
| 1081 | // Replace virtual registers defined by MI by their counterparts defined |
| 1082 | // by Dup. |
Evan Cheng | 78e5c11 | 2009-11-07 03:52:02 +0000 | [diff] [blame] | 1083 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1084 | const MachineOperand &MO = MI->getOperand(i); |
Dan Gohman | 6ac33b4 | 2010-02-28 01:33:43 +0000 | [diff] [blame] | 1085 | |
| 1086 | // Physical registers may not differ here. |
| 1087 | assert((!MO.isReg() || MO.getReg() == 0 || |
| 1088 | !TargetRegisterInfo::isPhysicalRegister(MO.getReg()) || |
| 1089 | MO.getReg() == Dup->getOperand(i).getReg()) && |
| 1090 | "Instructions with different phys regs are not identical!"); |
| 1091 | |
| 1092 | if (MO.isReg() && MO.isDef() && |
Dan Gohman | e6cd757 | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1093 | !TargetRegisterInfo::isPhysicalRegister(MO.getReg())) { |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 1094 | MRI->replaceRegWith(MO.getReg(), Dup->getOperand(i).getReg()); |
| 1095 | MRI->clearKillFlags(Dup->getOperand(i).getReg()); |
Dan Gohman | e6cd757 | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1096 | } |
Evan Cheng | 9fb744e | 2009-11-05 00:51:13 +0000 | [diff] [blame] | 1097 | } |
Evan Cheng | 78e5c11 | 2009-11-07 03:52:02 +0000 | [diff] [blame] | 1098 | MI->eraseFromParent(); |
| 1099 | ++NumCSEed; |
| 1100 | return true; |
Evan Cheng | 9fb744e | 2009-11-05 00:51:13 +0000 | [diff] [blame] | 1101 | } |
| 1102 | return false; |
| 1103 | } |
| 1104 | |
Bill Wendling | e4fc1cc | 2008-05-12 19:38:32 +0000 | [diff] [blame] | 1105 | /// Hoist - When an instruction is found to use only loop invariant operands |
| 1106 | /// that are safe to hoist, this instruction is called to do the dirty work. |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1107 | /// |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 1108 | bool MachineLICM::Hoist(MachineInstr *MI, MachineBasicBlock *Preheader) { |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 1109 | // First check whether we should hoist this instruction. |
Evan Cheng | c26abd9 | 2009-11-20 23:31:34 +0000 | [diff] [blame] | 1110 | if (!IsLoopInvariantInst(*MI) || !IsProfitableToHoist(*MI)) { |
Dan Gohman | 5c95230 | 2009-10-29 17:47:20 +0000 | [diff] [blame] | 1111 | // If not, try unfolding a hoistable load. |
| 1112 | MI = ExtractHoistableLoad(MI); |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 1113 | if (!MI) return false; |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 1114 | } |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1115 | |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 1116 | // Now move the instructions to the predecessor, inserting it before any |
| 1117 | // terminator instructions. |
| 1118 | DEBUG({ |
David Greene | 65a41eb | 2010-01-05 00:03:48 +0000 | [diff] [blame] | 1119 | dbgs() << "Hoisting " << *MI; |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1120 | if (Preheader->getBasicBlock()) |
David Greene | 65a41eb | 2010-01-05 00:03:48 +0000 | [diff] [blame] | 1121 | dbgs() << " to MachineBasicBlock " |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1122 | << Preheader->getName(); |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 1123 | if (MI->getParent()->getBasicBlock()) |
David Greene | 65a41eb | 2010-01-05 00:03:48 +0000 | [diff] [blame] | 1124 | dbgs() << " from MachineBasicBlock " |
Jakob Stoklund Olesen | 324da76 | 2009-11-20 01:17:03 +0000 | [diff] [blame] | 1125 | << MI->getParent()->getName(); |
David Greene | 65a41eb | 2010-01-05 00:03:48 +0000 | [diff] [blame] | 1126 | dbgs() << "\n"; |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 1127 | }); |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1128 | |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 1129 | // If this is the first instruction being hoisted to the preheader, |
| 1130 | // initialize the CSE map with potential common expressions. |
Evan Cheng | 82e0a1a | 2010-05-29 00:06:36 +0000 | [diff] [blame] | 1131 | if (FirstInLoop) { |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1132 | InitCSEMap(Preheader); |
Evan Cheng | 82e0a1a | 2010-05-29 00:06:36 +0000 | [diff] [blame] | 1133 | FirstInLoop = false; |
| 1134 | } |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 1135 | |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 1136 | // Look for opportunity to CSE the hoisted instruction. |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 1137 | unsigned Opcode = MI->getOpcode(); |
| 1138 | DenseMap<unsigned, std::vector<const MachineInstr*> >::iterator |
| 1139 | CI = CSEMap.find(Opcode); |
Evan Cheng | 9fb744e | 2009-11-05 00:51:13 +0000 | [diff] [blame] | 1140 | if (!EliminateCSE(MI, CI)) { |
| 1141 | // Otherwise, splice the instruction to the preheader. |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1142 | Preheader->splice(Preheader->getFirstTerminator(),MI->getParent(),MI); |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 1143 | |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 1144 | // Update register pressure for BBs from header to this block. |
| 1145 | UpdateBackTraceRegPressure(MI); |
| 1146 | |
Dan Gohman | e6cd757 | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1147 | // Clear the kill flags of any register this instruction defines, |
| 1148 | // since they may need to be live throughout the entire loop |
| 1149 | // rather than just live for part of it. |
| 1150 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1151 | MachineOperand &MO = MI->getOperand(i); |
| 1152 | if (MO.isReg() && MO.isDef() && !MO.isDead()) |
Evan Cheng | 0e67391 | 2010-10-14 01:16:09 +0000 | [diff] [blame] | 1153 | MRI->clearKillFlags(MO.getReg()); |
Dan Gohman | e6cd757 | 2010-05-13 20:34:42 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 1156 | // Add to the CSE map. |
| 1157 | if (CI != CSEMap.end()) |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 1158 | CI->second.push_back(MI); |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 1159 | else { |
| 1160 | std::vector<const MachineInstr*> CSEMIs; |
Dan Gohman | 589f1f5 | 2009-10-28 03:21:57 +0000 | [diff] [blame] | 1161 | CSEMIs.push_back(MI); |
Evan Cheng | 777c6b7 | 2009-11-03 21:40:02 +0000 | [diff] [blame] | 1162 | CSEMap.insert(std::make_pair(Opcode, CSEMIs)); |
Evan Cheng | af6949d | 2009-02-05 08:45:46 +0000 | [diff] [blame] | 1163 | } |
| 1164 | } |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1165 | |
Dan Gohman | c475c36 | 2009-01-15 22:01:38 +0000 | [diff] [blame] | 1166 | ++NumHoisted; |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1167 | Changed = true; |
Evan Cheng | 134982d | 2010-10-20 22:03:58 +0000 | [diff] [blame^] | 1168 | |
| 1169 | return true; |
Bill Wendling | 0f940c9 | 2007-12-07 21:42:31 +0000 | [diff] [blame] | 1170 | } |
Dan Gohman | 853d3fb | 2010-06-22 17:25:57 +0000 | [diff] [blame] | 1171 | |
| 1172 | MachineBasicBlock *MachineLICM::getCurPreheader() { |
| 1173 | // Determine the block to which to hoist instructions. If we can't find a |
| 1174 | // suitable loop predecessor, we can't do any hoisting. |
| 1175 | |
| 1176 | // If we've tried to get a preheader and failed, don't try again. |
| 1177 | if (CurPreheader == reinterpret_cast<MachineBasicBlock *>(-1)) |
| 1178 | return 0; |
| 1179 | |
| 1180 | if (!CurPreheader) { |
| 1181 | CurPreheader = CurLoop->getLoopPreheader(); |
| 1182 | if (!CurPreheader) { |
| 1183 | MachineBasicBlock *Pred = CurLoop->getLoopPredecessor(); |
| 1184 | if (!Pred) { |
| 1185 | CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1); |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
| 1189 | CurPreheader = Pred->SplitCriticalEdge(CurLoop->getHeader(), this); |
| 1190 | if (!CurPreheader) { |
| 1191 | CurPreheader = reinterpret_cast<MachineBasicBlock *>(-1); |
| 1192 | return 0; |
| 1193 | } |
| 1194 | } |
| 1195 | } |
| 1196 | return CurPreheader; |
| 1197 | } |