Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 1 | //===- LiveDebugVariables.cpp - Tracking debug info variables -------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the LiveDebugVariables analysis. |
| 11 | // |
| 12 | // Remove all DBG_VALUE instructions referencing virtual registers and replace |
| 13 | // them with a data structure tracking where live user variables are kept - in a |
| 14 | // virtual register or in a stack slot. |
| 15 | // |
| 16 | // Allow the data structure to be updated during register allocation when values |
| 17 | // are moved between registers and stack slots. Finally emit new DBG_VALUE |
| 18 | // instructions after register allocation is complete. |
| 19 | // |
| 20 | //===----------------------------------------------------------------------===// |
| 21 | |
| 22 | #include "LiveDebugVariables.h" |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/IntervalMap.h" |
Devang Patel | ad90d3a | 2011-08-04 18:45:38 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Statistic.h" |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/LexicalScopes.h" |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineFunction.h" |
| 29 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/Passes.h" |
Jakob Stoklund Olesen | 1ead68d | 2012-11-28 19:13:06 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/VirtRegMap.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 33 | #include "llvm/IR/Constants.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 34 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 35 | #include "llvm/IR/Metadata.h" |
| 36 | #include "llvm/IR/Value.h" |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 37 | #include "llvm/Support/CommandLine.h" |
| 38 | #include "llvm/Support/Debug.h" |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 39 | #include "llvm/Target/TargetInstrInfo.h" |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 40 | #include "llvm/Target/TargetMachine.h" |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 41 | #include "llvm/Target/TargetRegisterInfo.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 42 | #include "llvm/Target/TargetSubtargetInfo.h" |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 43 | #include <memory> |
| 44 | |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 45 | using namespace llvm; |
| 46 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 47 | #define DEBUG_TYPE "livedebug" |
| 48 | |
Devang Patel | 51a666f | 2011-01-07 22:33:41 +0000 | [diff] [blame] | 49 | static cl::opt<bool> |
Jakob Stoklund Olesen | 25dc226 | 2011-01-12 23:36:21 +0000 | [diff] [blame] | 50 | EnableLDV("live-debug-variables", cl::init(true), |
Devang Patel | 51a666f | 2011-01-07 22:33:41 +0000 | [diff] [blame] | 51 | cl::desc("Enable the live debug variables pass"), cl::Hidden); |
| 52 | |
Devang Patel | ad90d3a | 2011-08-04 18:45:38 +0000 | [diff] [blame] | 53 | STATISTIC(NumInsertedDebugValues, "Number of DBG_VALUEs inserted"); |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 54 | char LiveDebugVariables::ID = 0; |
| 55 | |
| 56 | INITIALIZE_PASS_BEGIN(LiveDebugVariables, "livedebugvars", |
| 57 | "Debug Variable Analysis", false, false) |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 58 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 59 | INITIALIZE_PASS_DEPENDENCY(LiveIntervals) |
| 60 | INITIALIZE_PASS_END(LiveDebugVariables, "livedebugvars", |
| 61 | "Debug Variable Analysis", false, false) |
| 62 | |
| 63 | void LiveDebugVariables::getAnalysisUsage(AnalysisUsage &AU) const { |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 64 | AU.addRequired<MachineDominatorTree>(); |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 65 | AU.addRequiredTransitive<LiveIntervals>(); |
| 66 | AU.setPreservesAll(); |
| 67 | MachineFunctionPass::getAnalysisUsage(AU); |
| 68 | } |
| 69 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 70 | LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID), pImpl(nullptr) { |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 71 | initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry()); |
| 72 | } |
| 73 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 74 | /// LocMap - Map of where a user value is live, and its location. |
| 75 | typedef IntervalMap<SlotIndex, unsigned, 4> LocMap; |
| 76 | |
Benjamin Kramer | 76f58d2 | 2011-09-16 00:35:06 +0000 | [diff] [blame] | 77 | namespace { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 78 | /// UserValueScopes - Keeps track of lexical scopes associated with a |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 79 | /// user value's source location. |
| 80 | class UserValueScopes { |
| 81 | DebugLoc DL; |
| 82 | LexicalScopes &LS; |
| 83 | SmallPtrSet<const MachineBasicBlock *, 4> LBlocks; |
| 84 | |
| 85 | public: |
| 86 | UserValueScopes(DebugLoc D, LexicalScopes &L) : DL(D), LS(L) {} |
| 87 | |
| 88 | /// dominates - Return true if current scope dominates at least one machine |
| 89 | /// instruction in a given machine basic block. |
| 90 | bool dominates(MachineBasicBlock *MBB) { |
| 91 | if (LBlocks.empty()) |
| 92 | LS.getMachineBasicBlocks(DL, LBlocks); |
| 93 | if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB)) |
| 94 | return true; |
| 95 | return false; |
| 96 | } |
| 97 | }; |
Benjamin Kramer | 76f58d2 | 2011-09-16 00:35:06 +0000 | [diff] [blame] | 98 | } // end anonymous namespace |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 99 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 100 | /// UserValue - A user value is a part of a debug info user variable. |
| 101 | /// |
| 102 | /// A DBG_VALUE instruction notes that (a sub-register of) a virtual register |
| 103 | /// holds part of a user variable. The part is identified by a byte offset. |
| 104 | /// |
| 105 | /// UserValues are grouped into equivalence classes for easier searching. Two |
| 106 | /// user values are related if they refer to the same variable, or if they are |
| 107 | /// held by the same virtual register. The equivalence class is the transitive |
| 108 | /// closure of that relation. |
| 109 | namespace { |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 110 | class LDVImpl; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 111 | class UserValue { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 112 | const MDNode *Variable; ///< The debug info variable we are part of. |
| 113 | const MDNode *Expression; ///< Any complex address expression. |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 114 | unsigned offset; ///< Byte offset into variable. |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 115 | bool IsIndirect; ///< true if this is a register-indirect+offset value. |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 116 | DebugLoc dl; ///< The debug location for the variable. This is |
| 117 | ///< used by dwarf writer to find lexical scope. |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 118 | UserValue *leader; ///< Equivalence class leader. |
| 119 | UserValue *next; ///< Next value in equivalence class, or null. |
| 120 | |
| 121 | /// Numbered locations referenced by locmap. |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 122 | SmallVector<MachineOperand, 4> locations; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 123 | |
| 124 | /// Map of slot indices where this value is live. |
| 125 | LocMap locInts; |
| 126 | |
Jakob Stoklund Olesen | 5daec22 | 2010-12-03 22:25:07 +0000 | [diff] [blame] | 127 | /// coalesceLocation - After LocNo was changed, check if it has become |
| 128 | /// identical to another location, and coalesce them. This may cause LocNo or |
| 129 | /// a later location to be erased, but no earlier location will be erased. |
| 130 | void coalesceLocation(unsigned LocNo); |
| 131 | |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 132 | /// insertDebugValue - Insert a DBG_VALUE into MBB at Idx for LocNo. |
| 133 | void insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx, unsigned LocNo, |
| 134 | LiveIntervals &LIS, const TargetInstrInfo &TII); |
| 135 | |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 136 | /// splitLocation - Replace OldLocNo ranges with NewRegs ranges where NewRegs |
| 137 | /// is live. Returns true if any changes were made. |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 138 | bool splitLocation(unsigned OldLocNo, ArrayRef<unsigned> NewRegs, |
| 139 | LiveIntervals &LIS); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 140 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 141 | public: |
| 142 | /// UserValue - Create a new UserValue. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 143 | UserValue(const MDNode *var, const MDNode *expr, unsigned o, bool i, |
| 144 | DebugLoc L, LocMap::Allocator &alloc) |
| 145 | : Variable(var), Expression(expr), offset(o), IsIndirect(i), dl(L), |
| 146 | leader(this), next(nullptr), locInts(alloc) {} |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 147 | |
| 148 | /// getLeader - Get the leader of this value's equivalence class. |
| 149 | UserValue *getLeader() { |
| 150 | UserValue *l = leader; |
| 151 | while (l != l->leader) |
| 152 | l = l->leader; |
| 153 | return leader = l; |
| 154 | } |
| 155 | |
| 156 | /// getNext - Return the next UserValue in the equivalence class. |
| 157 | UserValue *getNext() const { return next; } |
| 158 | |
Devang Patel | a462d6e | 2011-07-06 23:09:51 +0000 | [diff] [blame] | 159 | /// match - Does this UserValue match the parameters? |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 160 | bool match(const MDNode *Var, const MDNode *Expr, unsigned Offset, |
| 161 | bool indirect) const { |
| 162 | return Var == Variable && Expr == Expression && Offset == offset && |
| 163 | indirect == IsIndirect; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /// merge - Merge equivalence classes. |
| 167 | static UserValue *merge(UserValue *L1, UserValue *L2) { |
| 168 | L2 = L2->getLeader(); |
| 169 | if (!L1) |
| 170 | return L2; |
| 171 | L1 = L1->getLeader(); |
| 172 | if (L1 == L2) |
| 173 | return L1; |
| 174 | // Splice L2 before L1's members. |
| 175 | UserValue *End = L2; |
| 176 | while (End->next) |
| 177 | End->leader = L1, End = End->next; |
| 178 | End->leader = L1; |
| 179 | End->next = L1->next; |
| 180 | L1->next = L2; |
| 181 | return L1; |
| 182 | } |
| 183 | |
| 184 | /// getLocationNo - Return the location number that matches Loc. |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 185 | unsigned getLocationNo(const MachineOperand &LocMO) { |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 186 | if (LocMO.isReg()) { |
| 187 | if (LocMO.getReg() == 0) |
| 188 | return ~0u; |
| 189 | // For register locations we dont care about use/def and other flags. |
| 190 | for (unsigned i = 0, e = locations.size(); i != e; ++i) |
| 191 | if (locations[i].isReg() && |
| 192 | locations[i].getReg() == LocMO.getReg() && |
| 193 | locations[i].getSubReg() == LocMO.getSubReg()) |
| 194 | return i; |
| 195 | } else |
| 196 | for (unsigned i = 0, e = locations.size(); i != e; ++i) |
| 197 | if (LocMO.isIdenticalTo(locations[i])) |
| 198 | return i; |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 199 | locations.push_back(LocMO); |
| 200 | // We are storing a MachineOperand outside a MachineInstr. |
| 201 | locations.back().clearParent(); |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 202 | // Don't store def operands. |
| 203 | if (locations.back().isReg()) |
| 204 | locations.back().setIsUse(); |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 205 | return locations.size() - 1; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 208 | /// mapVirtRegs - Ensure that all virtual register locations are mapped. |
| 209 | void mapVirtRegs(LDVImpl *LDV); |
| 210 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 211 | /// addDef - Add a definition point to this value. |
| 212 | void addDef(SlotIndex Idx, const MachineOperand &LocMO) { |
| 213 | // Add a singular (Idx,Idx) -> Loc mapping. |
| 214 | LocMap::iterator I = locInts.find(Idx); |
| 215 | if (!I.valid() || I.start() != Idx) |
| 216 | I.insert(Idx, Idx.getNextSlot(), getLocationNo(LocMO)); |
Jakob Stoklund Olesen | 79513ed | 2011-08-03 23:44:31 +0000 | [diff] [blame] | 217 | else |
| 218 | // A later DBG_VALUE at the same SlotIndex overrides the old location. |
| 219 | I.setValue(getLocationNo(LocMO)); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | /// extendDef - Extend the current definition as far as possible down the |
| 223 | /// dominator tree. Stop when meeting an existing def or when leaving the live |
| 224 | /// range of VNI. |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 225 | /// End points where VNI is no longer live are added to Kills. |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 226 | /// @param Idx Starting point for the definition. |
| 227 | /// @param LocNo Location number to propagate. |
Matthias Braun | 4f3b5e8 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 228 | /// @param LR Restrict liveness to where LR has the value VNI. May be null. |
| 229 | /// @param VNI When LR is not null, this is the value to restrict to. |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 230 | /// @param Kills Append end points of VNI's live range to Kills. |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 231 | /// @param LIS Live intervals analysis. |
| 232 | /// @param MDT Dominator tree. |
| 233 | void extendDef(SlotIndex Idx, unsigned LocNo, |
Matthias Braun | 4f3b5e8 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 234 | LiveRange *LR, const VNInfo *VNI, |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 235 | SmallVectorImpl<SlotIndex> *Kills, |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 236 | LiveIntervals &LIS, MachineDominatorTree &MDT, |
Eric Christopher | b82062f | 2012-03-15 21:33:39 +0000 | [diff] [blame] | 237 | UserValueScopes &UVS); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 238 | |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 239 | /// addDefsFromCopies - The value in LI/LocNo may be copies to other |
| 240 | /// registers. Determine if any of the copies are available at the kill |
| 241 | /// points, and add defs if possible. |
| 242 | /// @param LI Scan for copies of the value in LI->reg. |
| 243 | /// @param LocNo Location number of LI->reg. |
| 244 | /// @param Kills Points where the range of LocNo could be extended. |
| 245 | /// @param NewDefs Append (Idx, LocNo) of inserted defs here. |
| 246 | void addDefsFromCopies(LiveInterval *LI, unsigned LocNo, |
| 247 | const SmallVectorImpl<SlotIndex> &Kills, |
| 248 | SmallVectorImpl<std::pair<SlotIndex, unsigned> > &NewDefs, |
| 249 | MachineRegisterInfo &MRI, |
| 250 | LiveIntervals &LIS); |
| 251 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 252 | /// computeIntervals - Compute the live intervals of all locations after |
| 253 | /// collecting all their def points. |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 254 | void computeIntervals(MachineRegisterInfo &MRI, const TargetRegisterInfo &TRI, |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 255 | LiveIntervals &LIS, MachineDominatorTree &MDT, |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 256 | UserValueScopes &UVS); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 257 | |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 258 | /// splitRegister - Replace OldReg ranges with NewRegs ranges where NewRegs is |
| 259 | /// live. Returns true if any changes were made. |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 260 | bool splitRegister(unsigned OldLocNo, ArrayRef<unsigned> NewRegs, |
| 261 | LiveIntervals &LIS); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 262 | |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 263 | /// rewriteLocations - Rewrite virtual register locations according to the |
| 264 | /// provided virtual register map. |
| 265 | void rewriteLocations(VirtRegMap &VRM, const TargetRegisterInfo &TRI); |
| 266 | |
Eric Christopher | b3cecdf | 2013-02-13 02:29:18 +0000 | [diff] [blame] | 267 | /// emitDebugValues - Recreate DBG_VALUE instruction from data structures. |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 268 | void emitDebugValues(VirtRegMap *VRM, |
| 269 | LiveIntervals &LIS, const TargetInstrInfo &TRI); |
| 270 | |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 271 | /// findDebugLoc - Return DebugLoc used for this DBG_VALUE instruction. A |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 272 | /// variable may have more than one corresponding DBG_VALUE instructions. |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 273 | /// Only first one needs DebugLoc to identify variable's lexical scope |
| 274 | /// in source file. |
| 275 | DebugLoc findDebugLoc(); |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 276 | |
| 277 | /// getDebugLoc - Return DebugLoc of this UserValue. |
| 278 | DebugLoc getDebugLoc() { return dl;} |
Jakob Stoklund Olesen | e77150b | 2011-05-06 17:59:59 +0000 | [diff] [blame] | 279 | void print(raw_ostream&, const TargetMachine*); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 280 | }; |
| 281 | } // namespace |
| 282 | |
| 283 | /// LDVImpl - Implementation of the LiveDebugVariables pass. |
| 284 | namespace { |
| 285 | class LDVImpl { |
| 286 | LiveDebugVariables &pass; |
| 287 | LocMap::Allocator allocator; |
| 288 | MachineFunction *MF; |
| 289 | LiveIntervals *LIS; |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 290 | LexicalScopes LS; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 291 | MachineDominatorTree *MDT; |
| 292 | const TargetRegisterInfo *TRI; |
| 293 | |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 294 | /// Whether emitDebugValues is called. |
| 295 | bool EmitDone; |
| 296 | /// Whether the machine function is modified during the pass. |
| 297 | bool ModifiedMF; |
| 298 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 299 | /// userValues - All allocated UserValue instances. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 300 | SmallVector<std::unique_ptr<UserValue>, 8> userValues; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 301 | |
| 302 | /// Map virtual register to eq class leader. |
| 303 | typedef DenseMap<unsigned, UserValue*> VRMap; |
Jakob Stoklund Olesen | 6ed4c6a | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 304 | VRMap virtRegToEqClass; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 305 | |
| 306 | /// Map user variable to eq class leader. |
| 307 | typedef DenseMap<const MDNode *, UserValue*> UVMap; |
| 308 | UVMap userVarMap; |
| 309 | |
| 310 | /// getUserValue - Find or create a UserValue. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 311 | UserValue *getUserValue(const MDNode *Var, const MDNode *Expr, |
| 312 | unsigned Offset, bool IsIndirect, DebugLoc DL); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 313 | |
Jakob Stoklund Olesen | 30e2128 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 314 | /// lookupVirtReg - Find the EC leader for VirtReg or null. |
| 315 | UserValue *lookupVirtReg(unsigned VirtReg); |
| 316 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 317 | /// handleDebugValue - Add DBG_VALUE instruction to our maps. |
| 318 | /// @param MI DBG_VALUE instruction |
| 319 | /// @param Idx Last valid SLotIndex before instruction. |
| 320 | /// @return True if the DBG_VALUE instruction should be deleted. |
| 321 | bool handleDebugValue(MachineInstr *MI, SlotIndex Idx); |
| 322 | |
| 323 | /// collectDebugValues - Collect and erase all DBG_VALUE instructions, adding |
| 324 | /// a UserValue def for each instruction. |
| 325 | /// @param mf MachineFunction to be scanned. |
| 326 | /// @return True if any debug values were found. |
| 327 | bool collectDebugValues(MachineFunction &mf); |
| 328 | |
| 329 | /// computeIntervals - Compute the live intervals of all user values after |
| 330 | /// collecting all their def points. |
| 331 | void computeIntervals(); |
| 332 | |
| 333 | public: |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 334 | LDVImpl(LiveDebugVariables *ps) |
| 335 | : pass(*ps), MF(nullptr), EmitDone(false), ModifiedMF(false) {} |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 336 | bool runOnMachineFunction(MachineFunction &mf); |
| 337 | |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 338 | /// clear - Release all memory. |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 339 | void clear() { |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 340 | MF = nullptr; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 341 | userValues.clear(); |
Jakob Stoklund Olesen | 6ed4c6a | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 342 | virtRegToEqClass.clear(); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 343 | userVarMap.clear(); |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 344 | // Make sure we call emitDebugValues if the machine function was modified. |
| 345 | assert((!ModifiedMF || EmitDone) && |
| 346 | "Dbg values are not emitted in LDV"); |
| 347 | EmitDone = false; |
| 348 | ModifiedMF = false; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 349 | LS.reset(); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 350 | } |
| 351 | |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 352 | /// mapVirtReg - Map virtual register to an equivalence class. |
| 353 | void mapVirtReg(unsigned VirtReg, UserValue *EC); |
| 354 | |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 355 | /// splitRegister - Replace all references to OldReg with NewRegs. |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 356 | void splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 357 | |
Eric Christopher | b3cecdf | 2013-02-13 02:29:18 +0000 | [diff] [blame] | 358 | /// emitDebugValues - Recreate DBG_VALUE instruction from data structures. |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 359 | void emitDebugValues(VirtRegMap *VRM); |
| 360 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 361 | void print(raw_ostream&); |
| 362 | }; |
| 363 | } // namespace |
| 364 | |
Jakob Stoklund Olesen | e77150b | 2011-05-06 17:59:59 +0000 | [diff] [blame] | 365 | void UserValue::print(raw_ostream &OS, const TargetMachine *TM) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 366 | DIVariable DV(Variable); |
| 367 | OS << "!\""; |
Devang Patel | a2b552d | 2011-08-09 01:03:35 +0000 | [diff] [blame] | 368 | DV.printExtendedName(OS); |
| 369 | OS << "\"\t"; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 370 | if (offset) |
| 371 | OS << '+' << offset; |
| 372 | for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) { |
| 373 | OS << " [" << I.start() << ';' << I.stop() << "):"; |
| 374 | if (I.value() == ~0u) |
| 375 | OS << "undef"; |
| 376 | else |
| 377 | OS << I.value(); |
| 378 | } |
Jakob Stoklund Olesen | e77150b | 2011-05-06 17:59:59 +0000 | [diff] [blame] | 379 | for (unsigned i = 0, e = locations.size(); i != e; ++i) { |
| 380 | OS << " Loc" << i << '='; |
| 381 | locations[i].print(OS, TM); |
| 382 | } |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 383 | OS << '\n'; |
| 384 | } |
| 385 | |
| 386 | void LDVImpl::print(raw_ostream &OS) { |
| 387 | OS << "********** DEBUG VARIABLES **********\n"; |
| 388 | for (unsigned i = 0, e = userValues.size(); i != e; ++i) |
Jakob Stoklund Olesen | e77150b | 2011-05-06 17:59:59 +0000 | [diff] [blame] | 389 | userValues[i]->print(OS, &MF->getTarget()); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Jakob Stoklund Olesen | 5daec22 | 2010-12-03 22:25:07 +0000 | [diff] [blame] | 392 | void UserValue::coalesceLocation(unsigned LocNo) { |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 393 | unsigned KeepLoc = 0; |
| 394 | for (unsigned e = locations.size(); KeepLoc != e; ++KeepLoc) { |
| 395 | if (KeepLoc == LocNo) |
| 396 | continue; |
| 397 | if (locations[KeepLoc].isIdenticalTo(locations[LocNo])) |
| 398 | break; |
Jakob Stoklund Olesen | 5daec22 | 2010-12-03 22:25:07 +0000 | [diff] [blame] | 399 | } |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 400 | // No matches. |
| 401 | if (KeepLoc == locations.size()) |
| 402 | return; |
| 403 | |
| 404 | // Keep the smaller location, erase the larger one. |
| 405 | unsigned EraseLoc = LocNo; |
| 406 | if (KeepLoc > EraseLoc) |
| 407 | std::swap(KeepLoc, EraseLoc); |
Jakob Stoklund Olesen | 5daec22 | 2010-12-03 22:25:07 +0000 | [diff] [blame] | 408 | locations.erase(locations.begin() + EraseLoc); |
| 409 | |
| 410 | // Rewrite values. |
| 411 | for (LocMap::iterator I = locInts.begin(); I.valid(); ++I) { |
| 412 | unsigned v = I.value(); |
| 413 | if (v == EraseLoc) |
| 414 | I.setValue(KeepLoc); // Coalesce when possible. |
| 415 | else if (v > EraseLoc) |
| 416 | I.setValueUnchecked(v-1); // Avoid coalescing with untransformed values. |
| 417 | } |
| 418 | } |
| 419 | |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 420 | void UserValue::mapVirtRegs(LDVImpl *LDV) { |
| 421 | for (unsigned i = 0, e = locations.size(); i != e; ++i) |
| 422 | if (locations[i].isReg() && |
| 423 | TargetRegisterInfo::isVirtualRegister(locations[i].getReg())) |
| 424 | LDV->mapVirtReg(locations[i].getReg(), this); |
| 425 | } |
| 426 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 427 | UserValue *LDVImpl::getUserValue(const MDNode *Var, const MDNode *Expr, |
| 428 | unsigned Offset, bool IsIndirect, |
| 429 | DebugLoc DL) { |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 430 | UserValue *&Leader = userVarMap[Var]; |
| 431 | if (Leader) { |
| 432 | UserValue *UV = Leader->getLeader(); |
| 433 | Leader = UV; |
| 434 | for (; UV; UV = UV->getNext()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 435 | if (UV->match(Var, Expr, Offset, IsIndirect)) |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 436 | return UV; |
| 437 | } |
| 438 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 439 | userValues.push_back( |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 440 | make_unique<UserValue>(Var, Expr, Offset, IsIndirect, DL, allocator)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 441 | UserValue *UV = userValues.back().get(); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 442 | Leader = UserValue::merge(Leader, UV); |
| 443 | return UV; |
| 444 | } |
| 445 | |
| 446 | void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) { |
| 447 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && "Only map VirtRegs"); |
Jakob Stoklund Olesen | 6ed4c6a | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 448 | UserValue *&Leader = virtRegToEqClass[VirtReg]; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 449 | Leader = UserValue::merge(Leader, EC); |
| 450 | } |
| 451 | |
Jakob Stoklund Olesen | 30e2128 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 452 | UserValue *LDVImpl::lookupVirtReg(unsigned VirtReg) { |
Jakob Stoklund Olesen | 6ed4c6a | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 453 | if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) |
Jakob Stoklund Olesen | 30e2128 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 454 | return UV->getLeader(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 455 | return nullptr; |
Jakob Stoklund Olesen | 30e2128 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 458 | bool LDVImpl::handleDebugValue(MachineInstr *MI, SlotIndex Idx) { |
| 459 | // DBG_VALUE loc, offset, variable |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 460 | if (MI->getNumOperands() != 4 || |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 461 | !(MI->getOperand(1).isReg() || MI->getOperand(1).isImm()) || |
| 462 | !MI->getOperand(2).isMetadata()) { |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 463 | DEBUG(dbgs() << "Can't handle " << *MI); |
| 464 | return false; |
| 465 | } |
| 466 | |
| 467 | // Get or create the UserValue for (variable,offset). |
Adrian Prantl | 818833f | 2013-09-16 23:29:03 +0000 | [diff] [blame] | 468 | bool IsIndirect = MI->isIndirectDebugValue(); |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 469 | unsigned Offset = IsIndirect ? MI->getOperand(1).getImm() : 0; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 470 | const MDNode *Var = MI->getDebugVariable(); |
| 471 | const MDNode *Expr = MI->getDebugExpression(); |
Adrian Prantl | 818833f | 2013-09-16 23:29:03 +0000 | [diff] [blame] | 472 | //here. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 473 | UserValue *UV = |
| 474 | getUserValue(Var, Expr, Offset, IsIndirect, MI->getDebugLoc()); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 475 | UV->addDef(Idx, MI->getOperand(0)); |
| 476 | return true; |
| 477 | } |
| 478 | |
| 479 | bool LDVImpl::collectDebugValues(MachineFunction &mf) { |
| 480 | bool Changed = false; |
| 481 | for (MachineFunction::iterator MFI = mf.begin(), MFE = mf.end(); MFI != MFE; |
| 482 | ++MFI) { |
| 483 | MachineBasicBlock *MBB = MFI; |
| 484 | for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end(); |
| 485 | MBBI != MBBE;) { |
| 486 | if (!MBBI->isDebugValue()) { |
| 487 | ++MBBI; |
| 488 | continue; |
| 489 | } |
| 490 | // DBG_VALUE has no slot index, use the previous instruction instead. |
| 491 | SlotIndex Idx = MBBI == MBB->begin() ? |
| 492 | LIS->getMBBStartIdx(MBB) : |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 493 | LIS->getInstructionIndex(std::prev(MBBI)).getRegSlot(); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 494 | // Handle consecutive DBG_VALUE instructions with the same slot index. |
| 495 | do { |
| 496 | if (handleDebugValue(MBBI, Idx)) { |
| 497 | MBBI = MBB->erase(MBBI); |
| 498 | Changed = true; |
| 499 | } else |
| 500 | ++MBBI; |
| 501 | } while (MBBI != MBBE && MBBI->isDebugValue()); |
| 502 | } |
| 503 | } |
| 504 | return Changed; |
| 505 | } |
| 506 | |
| 507 | void UserValue::extendDef(SlotIndex Idx, unsigned LocNo, |
Matthias Braun | 4f3b5e8 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 508 | LiveRange *LR, const VNInfo *VNI, |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 509 | SmallVectorImpl<SlotIndex> *Kills, |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 510 | LiveIntervals &LIS, MachineDominatorTree &MDT, |
Eric Christopher | b82062f | 2012-03-15 21:33:39 +0000 | [diff] [blame] | 511 | UserValueScopes &UVS) { |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 512 | SmallVector<SlotIndex, 16> Todo; |
| 513 | Todo.push_back(Idx); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 514 | do { |
| 515 | SlotIndex Start = Todo.pop_back_val(); |
| 516 | MachineBasicBlock *MBB = LIS.getMBBFromIndex(Start); |
| 517 | SlotIndex Stop = LIS.getMBBEndIdx(MBB); |
Jakob Stoklund Olesen | 12a4031 | 2011-01-12 23:14:04 +0000 | [diff] [blame] | 518 | LocMap::iterator I = locInts.find(Start); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 519 | |
| 520 | // Limit to VNI's live range. |
| 521 | bool ToEnd = true; |
Matthias Braun | 4f3b5e8 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 522 | if (LR && VNI) { |
| 523 | LiveInterval::Segment *Segment = LR->getSegmentContaining(Start); |
Matthias Braun | 331de11 | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 524 | if (!Segment || Segment->valno != VNI) { |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 525 | if (Kills) |
| 526 | Kills->push_back(Start); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 527 | continue; |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 528 | } |
Matthias Braun | 331de11 | 2013-10-10 21:28:43 +0000 | [diff] [blame] | 529 | if (Segment->end < Stop) |
| 530 | Stop = Segment->end, ToEnd = false; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | // There could already be a short def at Start. |
| 534 | if (I.valid() && I.start() <= Start) { |
| 535 | // Stop when meeting a different location or an already extended interval. |
| 536 | Start = Start.getNextSlot(); |
| 537 | if (I.value() != LocNo || I.stop() != Start) |
| 538 | continue; |
| 539 | // This is a one-slot placeholder. Just skip it. |
| 540 | ++I; |
| 541 | } |
| 542 | |
| 543 | // Limited by the next def. |
| 544 | if (I.valid() && I.start() < Stop) |
| 545 | Stop = I.start(), ToEnd = false; |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 546 | // Limited by VNI's live range. |
| 547 | else if (!ToEnd && Kills) |
| 548 | Kills->push_back(Stop); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 549 | |
| 550 | if (Start >= Stop) |
| 551 | continue; |
| 552 | |
| 553 | I.insert(Start, Stop, LocNo); |
| 554 | |
| 555 | // If we extended to the MBB end, propagate down the dominator tree. |
| 556 | if (!ToEnd) |
| 557 | continue; |
| 558 | const std::vector<MachineDomTreeNode*> &Children = |
| 559 | MDT.getNode(MBB)->getChildren(); |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 560 | for (unsigned i = 0, e = Children.size(); i != e; ++i) { |
| 561 | MachineBasicBlock *MBB = Children[i]->getBlock(); |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 562 | if (UVS.dominates(MBB)) |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 563 | Todo.push_back(LIS.getMBBStartIdx(MBB)); |
| 564 | } |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 565 | } while (!Todo.empty()); |
| 566 | } |
| 567 | |
| 568 | void |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 569 | UserValue::addDefsFromCopies(LiveInterval *LI, unsigned LocNo, |
| 570 | const SmallVectorImpl<SlotIndex> &Kills, |
| 571 | SmallVectorImpl<std::pair<SlotIndex, unsigned> > &NewDefs, |
| 572 | MachineRegisterInfo &MRI, LiveIntervals &LIS) { |
| 573 | if (Kills.empty()) |
| 574 | return; |
| 575 | // Don't track copies from physregs, there are too many uses. |
| 576 | if (!TargetRegisterInfo::isVirtualRegister(LI->reg)) |
| 577 | return; |
| 578 | |
| 579 | // Collect all the (vreg, valno) pairs that are copies of LI. |
| 580 | SmallVector<std::pair<LiveInterval*, const VNInfo*>, 8> CopyValues; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 581 | for (MachineOperand &MO : MRI.use_nodbg_operands(LI->reg)) { |
| 582 | MachineInstr *MI = MO.getParent(); |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 583 | // Copies of the full value. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 584 | if (MO.getSubReg() || !MI->isCopy()) |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 585 | continue; |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 586 | unsigned DstReg = MI->getOperand(0).getReg(); |
| 587 | |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 588 | // Don't follow copies to physregs. These are usually setting up call |
| 589 | // arguments, and the argument registers are always call clobbered. We are |
| 590 | // better off in the source register which could be a callee-saved register, |
| 591 | // or it could be spilled. |
| 592 | if (!TargetRegisterInfo::isVirtualRegister(DstReg)) |
| 593 | continue; |
| 594 | |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 595 | // Is LocNo extended to reach this copy? If not, another def may be blocking |
| 596 | // it, or we are looking at a wrong value of LI. |
| 597 | SlotIndex Idx = LIS.getInstructionIndex(MI); |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 598 | LocMap::iterator I = locInts.find(Idx.getRegSlot(true)); |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 599 | if (!I.valid() || I.value() != LocNo) |
| 600 | continue; |
| 601 | |
| 602 | if (!LIS.hasInterval(DstReg)) |
| 603 | continue; |
| 604 | LiveInterval *DstLI = &LIS.getInterval(DstReg); |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 605 | const VNInfo *DstVNI = DstLI->getVNInfoAt(Idx.getRegSlot()); |
| 606 | assert(DstVNI && DstVNI->def == Idx.getRegSlot() && "Bad copy value"); |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 607 | CopyValues.push_back(std::make_pair(DstLI, DstVNI)); |
| 608 | } |
| 609 | |
| 610 | if (CopyValues.empty()) |
| 611 | return; |
| 612 | |
| 613 | DEBUG(dbgs() << "Got " << CopyValues.size() << " copies of " << *LI << '\n'); |
| 614 | |
| 615 | // Try to add defs of the copied values for each kill point. |
| 616 | for (unsigned i = 0, e = Kills.size(); i != e; ++i) { |
| 617 | SlotIndex Idx = Kills[i]; |
| 618 | for (unsigned j = 0, e = CopyValues.size(); j != e; ++j) { |
| 619 | LiveInterval *DstLI = CopyValues[j].first; |
| 620 | const VNInfo *DstVNI = CopyValues[j].second; |
| 621 | if (DstLI->getVNInfoAt(Idx) != DstVNI) |
| 622 | continue; |
| 623 | // Check that there isn't already a def at Idx |
| 624 | LocMap::iterator I = locInts.find(Idx); |
| 625 | if (I.valid() && I.start() <= Idx) |
| 626 | continue; |
| 627 | DEBUG(dbgs() << "Kill at " << Idx << " covered by valno #" |
| 628 | << DstVNI->id << " in " << *DstLI << '\n'); |
| 629 | MachineInstr *CopyMI = LIS.getInstructionFromIndex(DstVNI->def); |
| 630 | assert(CopyMI && CopyMI->isCopy() && "Bad copy value"); |
| 631 | unsigned LocNo = getLocationNo(CopyMI->getOperand(0)); |
| 632 | I.insert(Idx, Idx.getNextSlot(), LocNo); |
| 633 | NewDefs.push_back(std::make_pair(Idx, LocNo)); |
| 634 | break; |
| 635 | } |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | void |
| 640 | UserValue::computeIntervals(MachineRegisterInfo &MRI, |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 641 | const TargetRegisterInfo &TRI, |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 642 | LiveIntervals &LIS, |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 643 | MachineDominatorTree &MDT, |
Eric Christopher | b82062f | 2012-03-15 21:33:39 +0000 | [diff] [blame] | 644 | UserValueScopes &UVS) { |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 645 | SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs; |
| 646 | |
| 647 | // Collect all defs to be extended (Skipping undefs). |
| 648 | for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) |
| 649 | if (I.value() != ~0u) |
| 650 | Defs.push_back(std::make_pair(I.start(), I.value())); |
| 651 | |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 652 | // Extend all defs, and possibly add new ones along the way. |
| 653 | for (unsigned i = 0; i != Defs.size(); ++i) { |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 654 | SlotIndex Idx = Defs[i].first; |
| 655 | unsigned LocNo = Defs[i].second; |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 656 | const MachineOperand &Loc = locations[LocNo]; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 657 | |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 658 | if (!Loc.isReg()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 659 | extendDef(Idx, LocNo, nullptr, nullptr, nullptr, LIS, MDT, UVS); |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 660 | continue; |
| 661 | } |
| 662 | |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 663 | // Register locations are constrained to where the register value is live. |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 664 | if (TargetRegisterInfo::isVirtualRegister(Loc.getReg())) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 665 | LiveInterval *LI = nullptr; |
| 666 | const VNInfo *VNI = nullptr; |
Jakob Stoklund Olesen | b150930 | 2012-06-22 18:51:35 +0000 | [diff] [blame] | 667 | if (LIS.hasInterval(Loc.getReg())) { |
| 668 | LI = &LIS.getInterval(Loc.getReg()); |
| 669 | VNI = LI->getVNInfoAt(Idx); |
| 670 | } |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 671 | SmallVector<SlotIndex, 16> Kills; |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 672 | extendDef(Idx, LocNo, LI, VNI, &Kills, LIS, MDT, UVS); |
Jakob Stoklund Olesen | b150930 | 2012-06-22 18:51:35 +0000 | [diff] [blame] | 673 | if (LI) |
| 674 | addDefsFromCopies(LI, LocNo, Kills, Defs, MRI, LIS); |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 675 | continue; |
| 676 | } |
| 677 | |
| 678 | // For physregs, use the live range of the first regunit as a guide. |
| 679 | unsigned Unit = *MCRegUnitIterator(Loc.getReg(), &TRI); |
Matthias Braun | 4f3b5e8 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 680 | LiveRange *LR = &LIS.getRegUnit(Unit); |
| 681 | const VNInfo *VNI = LR->getVNInfoAt(Idx); |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 682 | // Don't track copies from physregs, it is too expensive. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 683 | extendDef(Idx, LocNo, LR, VNI, nullptr, LIS, MDT, UVS); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | // Finally, erase all the undefs. |
| 687 | for (LocMap::iterator I = locInts.begin(); I.valid();) |
| 688 | if (I.value() == ~0u) |
| 689 | I.erase(); |
| 690 | else |
| 691 | ++I; |
| 692 | } |
| 693 | |
| 694 | void LDVImpl::computeIntervals() { |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 695 | for (unsigned i = 0, e = userValues.size(); i != e; ++i) { |
Devang Patel | 3a2d80d | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 696 | UserValueScopes UVS(userValues[i]->getDebugLoc(), LS); |
Jakob Stoklund Olesen | e8a0a12 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 697 | userValues[i]->computeIntervals(MF->getRegInfo(), *TRI, *LIS, *MDT, UVS); |
Jakob Stoklund Olesen | 1744e47 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 698 | userValues[i]->mapVirtRegs(this); |
| 699 | } |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | bool LDVImpl::runOnMachineFunction(MachineFunction &mf) { |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 703 | clear(); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 704 | MF = &mf; |
| 705 | LIS = &pass.getAnalysis<LiveIntervals>(); |
| 706 | MDT = &pass.getAnalysis<MachineDominatorTree>(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 707 | TRI = mf.getSubtarget().getRegisterInfo(); |
Devang Patel | c722c3d | 2011-08-10 21:25:34 +0000 | [diff] [blame] | 708 | LS.initialize(mf); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 709 | DEBUG(dbgs() << "********** COMPUTING LIVE DEBUG VARIABLES: " |
David Blaikie | 986d76d | 2012-08-22 17:18:53 +0000 | [diff] [blame] | 710 | << mf.getName() << " **********\n"); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 711 | |
| 712 | bool Changed = collectDebugValues(mf); |
| 713 | computeIntervals(); |
| 714 | DEBUG(print(dbgs())); |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 715 | ModifiedMF = Changed; |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 716 | return Changed; |
| 717 | } |
| 718 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 719 | static void removeDebugValues(MachineFunction &mf) { |
| 720 | for (MachineBasicBlock &MBB : mf) { |
| 721 | for (auto MBBI = MBB.begin(), MBBE = MBB.end(); MBBI != MBBE; ) { |
| 722 | if (!MBBI->isDebugValue()) { |
| 723 | ++MBBI; |
| 724 | continue; |
| 725 | } |
| 726 | MBBI = MBB.erase(MBBI); |
| 727 | } |
| 728 | } |
| 729 | } |
| 730 | |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 731 | bool LiveDebugVariables::runOnMachineFunction(MachineFunction &mf) { |
Devang Patel | 51a666f | 2011-01-07 22:33:41 +0000 | [diff] [blame] | 732 | if (!EnableLDV) |
| 733 | return false; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 734 | if (!FunctionDIs.count(mf.getFunction())) { |
| 735 | removeDebugValues(mf); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 736 | return false; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 737 | } |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 738 | if (!pImpl) |
| 739 | pImpl = new LDVImpl(this); |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 740 | return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf); |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | void LiveDebugVariables::releaseMemory() { |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 744 | if (pImpl) |
Jakob Stoklund Olesen | 0613516 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 745 | static_cast<LDVImpl*>(pImpl)->clear(); |
| 746 | } |
| 747 | |
| 748 | LiveDebugVariables::~LiveDebugVariables() { |
| 749 | if (pImpl) |
| 750 | delete static_cast<LDVImpl*>(pImpl); |
Jakob Stoklund Olesen | bb7b23f | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 751 | } |
Jakob Stoklund Olesen | 30e2128 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 752 | |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 753 | //===----------------------------------------------------------------------===// |
| 754 | // Live Range Splitting |
| 755 | //===----------------------------------------------------------------------===// |
| 756 | |
| 757 | bool |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 758 | UserValue::splitLocation(unsigned OldLocNo, ArrayRef<unsigned> NewRegs, |
| 759 | LiveIntervals& LIS) { |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 760 | DEBUG({ |
| 761 | dbgs() << "Splitting Loc" << OldLocNo << '\t'; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 762 | print(dbgs(), nullptr); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 763 | }); |
| 764 | bool DidChange = false; |
| 765 | LocMap::iterator LocMapI; |
| 766 | LocMapI.setMap(locInts); |
| 767 | for (unsigned i = 0; i != NewRegs.size(); ++i) { |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 768 | LiveInterval *LI = &LIS.getInterval(NewRegs[i]); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 769 | if (LI->empty()) |
| 770 | continue; |
| 771 | |
| 772 | // Don't allocate the new LocNo until it is needed. |
| 773 | unsigned NewLocNo = ~0u; |
| 774 | |
| 775 | // Iterate over the overlaps between locInts and LI. |
| 776 | LocMapI.find(LI->beginIndex()); |
| 777 | if (!LocMapI.valid()) |
| 778 | continue; |
| 779 | LiveInterval::iterator LII = LI->advanceTo(LI->begin(), LocMapI.start()); |
| 780 | LiveInterval::iterator LIE = LI->end(); |
| 781 | while (LocMapI.valid() && LII != LIE) { |
| 782 | // At this point, we know that LocMapI.stop() > LII->start. |
| 783 | LII = LI->advanceTo(LII, LocMapI.start()); |
| 784 | if (LII == LIE) |
| 785 | break; |
| 786 | |
| 787 | // Now LII->end > LocMapI.start(). Do we have an overlap? |
| 788 | if (LocMapI.value() == OldLocNo && LII->start < LocMapI.stop()) { |
| 789 | // Overlapping correct location. Allocate NewLocNo now. |
| 790 | if (NewLocNo == ~0u) { |
| 791 | MachineOperand MO = MachineOperand::CreateReg(LI->reg, false); |
| 792 | MO.setSubReg(locations[OldLocNo].getSubReg()); |
| 793 | NewLocNo = getLocationNo(MO); |
| 794 | DidChange = true; |
| 795 | } |
| 796 | |
| 797 | SlotIndex LStart = LocMapI.start(); |
| 798 | SlotIndex LStop = LocMapI.stop(); |
| 799 | |
| 800 | // Trim LocMapI down to the LII overlap. |
| 801 | if (LStart < LII->start) |
| 802 | LocMapI.setStartUnchecked(LII->start); |
| 803 | if (LStop > LII->end) |
| 804 | LocMapI.setStopUnchecked(LII->end); |
| 805 | |
| 806 | // Change the value in the overlap. This may trigger coalescing. |
| 807 | LocMapI.setValue(NewLocNo); |
| 808 | |
| 809 | // Re-insert any removed OldLocNo ranges. |
| 810 | if (LStart < LocMapI.start()) { |
| 811 | LocMapI.insert(LStart, LocMapI.start(), OldLocNo); |
| 812 | ++LocMapI; |
| 813 | assert(LocMapI.valid() && "Unexpected coalescing"); |
| 814 | } |
| 815 | if (LStop > LocMapI.stop()) { |
| 816 | ++LocMapI; |
| 817 | LocMapI.insert(LII->end, LStop, OldLocNo); |
| 818 | --LocMapI; |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | // Advance to the next overlap. |
| 823 | if (LII->end < LocMapI.stop()) { |
| 824 | if (++LII == LIE) |
| 825 | break; |
| 826 | LocMapI.advanceTo(LII->start); |
| 827 | } else { |
| 828 | ++LocMapI; |
| 829 | if (!LocMapI.valid()) |
| 830 | break; |
| 831 | LII = LI->advanceTo(LII, LocMapI.start()); |
| 832 | } |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | // Finally, remove any remaining OldLocNo intervals and OldLocNo itself. |
| 837 | locations.erase(locations.begin() + OldLocNo); |
| 838 | LocMapI.goToBegin(); |
| 839 | while (LocMapI.valid()) { |
| 840 | unsigned v = LocMapI.value(); |
| 841 | if (v == OldLocNo) { |
| 842 | DEBUG(dbgs() << "Erasing [" << LocMapI.start() << ';' |
| 843 | << LocMapI.stop() << ")\n"); |
| 844 | LocMapI.erase(); |
| 845 | } else { |
| 846 | if (v > OldLocNo) |
| 847 | LocMapI.setValueUnchecked(v-1); |
| 848 | ++LocMapI; |
| 849 | } |
| 850 | } |
| 851 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 852 | DEBUG({dbgs() << "Split result: \t"; print(dbgs(), nullptr);}); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 853 | return DidChange; |
| 854 | } |
| 855 | |
| 856 | bool |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 857 | UserValue::splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, |
| 858 | LiveIntervals &LIS) { |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 859 | bool DidChange = false; |
Jakob Stoklund Olesen | 6212f9a | 2011-05-06 19:31:19 +0000 | [diff] [blame] | 860 | // Split locations referring to OldReg. Iterate backwards so splitLocation can |
Eric Christopher | 7cc5177 | 2012-03-15 21:33:35 +0000 | [diff] [blame] | 861 | // safely erase unused locations. |
Jakob Stoklund Olesen | 6212f9a | 2011-05-06 19:31:19 +0000 | [diff] [blame] | 862 | for (unsigned i = locations.size(); i ; --i) { |
| 863 | unsigned LocNo = i-1; |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 864 | const MachineOperand *Loc = &locations[LocNo]; |
| 865 | if (!Loc->isReg() || Loc->getReg() != OldReg) |
| 866 | continue; |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 867 | DidChange |= splitLocation(LocNo, NewRegs, LIS); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 868 | } |
| 869 | return DidChange; |
| 870 | } |
| 871 | |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 872 | void LDVImpl::splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs) { |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 873 | bool DidChange = false; |
| 874 | for (UserValue *UV = lookupVirtReg(OldReg); UV; UV = UV->getNext()) |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 875 | DidChange |= UV->splitRegister(OldReg, NewRegs, *LIS); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 876 | |
| 877 | if (!DidChange) |
| 878 | return; |
| 879 | |
| 880 | // Map all of the new virtual registers. |
| 881 | UserValue *UV = lookupVirtReg(OldReg); |
| 882 | for (unsigned i = 0; i != NewRegs.size(); ++i) |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 883 | mapVirtReg(NewRegs[i], UV); |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | void LiveDebugVariables:: |
Mark Lacey | 1feb585 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 887 | splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, LiveIntervals &LIS) { |
Jakob Stoklund Olesen | f42b661 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 888 | if (pImpl) |
| 889 | static_cast<LDVImpl*>(pImpl)->splitRegister(OldReg, NewRegs); |
| 890 | } |
| 891 | |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 892 | void |
| 893 | UserValue::rewriteLocations(VirtRegMap &VRM, const TargetRegisterInfo &TRI) { |
| 894 | // Iterate over locations in reverse makes it easier to handle coalescing. |
| 895 | for (unsigned i = locations.size(); i ; --i) { |
| 896 | unsigned LocNo = i-1; |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 897 | MachineOperand &Loc = locations[LocNo]; |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 898 | // Only virtual registers are rewritten. |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 899 | if (!Loc.isReg() || !Loc.getReg() || |
| 900 | !TargetRegisterInfo::isVirtualRegister(Loc.getReg())) |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 901 | continue; |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 902 | unsigned VirtReg = Loc.getReg(); |
Jakob Stoklund Olesen | f203627 | 2011-01-12 22:37:49 +0000 | [diff] [blame] | 903 | if (VRM.isAssignedReg(VirtReg) && |
| 904 | TargetRegisterInfo::isPhysicalRegister(VRM.getPhys(VirtReg))) { |
Jakob Stoklund Olesen | cf724f0 | 2011-05-08 19:21:08 +0000 | [diff] [blame] | 905 | // This can create a %noreg operand in rare cases when the sub-register |
| 906 | // index is no longer available. That means the user value is in a |
| 907 | // non-existent sub-register, and %noreg is exactly what we want. |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 908 | Loc.substPhysReg(VRM.getPhys(VirtReg), TRI); |
Jakob Stoklund Olesen | cb39064 | 2011-11-13 01:23:30 +0000 | [diff] [blame] | 909 | } else if (VRM.getStackSlot(VirtReg) != VirtRegMap::NO_STACK_SLOT) { |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 910 | // FIXME: Translate SubIdx to a stackslot offset. |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 911 | Loc = MachineOperand::CreateFI(VRM.getStackSlot(VirtReg)); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 912 | } else { |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 913 | Loc.setReg(0); |
| 914 | Loc.setSubReg(0); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 915 | } |
Jakob Stoklund Olesen | 5daec22 | 2010-12-03 22:25:07 +0000 | [diff] [blame] | 916 | coalesceLocation(LocNo); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 917 | } |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 918 | } |
| 919 | |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 920 | /// findInsertLocation - Find an iterator for inserting a DBG_VALUE |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 921 | /// instruction. |
| 922 | static MachineBasicBlock::iterator |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 923 | findInsertLocation(MachineBasicBlock *MBB, SlotIndex Idx, |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 924 | LiveIntervals &LIS) { |
| 925 | SlotIndex Start = LIS.getMBBStartIdx(MBB); |
| 926 | Idx = Idx.getBaseIndex(); |
| 927 | |
| 928 | // Try to find an insert location by going backwards from Idx. |
| 929 | MachineInstr *MI; |
| 930 | while (!(MI = LIS.getInstructionFromIndex(Idx))) { |
| 931 | // We've reached the beginning of MBB. |
| 932 | if (Idx == Start) { |
| 933 | MachineBasicBlock::iterator I = MBB->SkipPHIsAndLabels(MBB->begin()); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 934 | return I; |
| 935 | } |
| 936 | Idx = Idx.getPrevIndex(); |
| 937 | } |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 938 | |
Jakob Stoklund Olesen | eea666f | 2011-01-13 23:35:53 +0000 | [diff] [blame] | 939 | // Don't insert anything after the first terminator, though. |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 940 | return MI->isTerminator() ? MBB->getFirstTerminator() : |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 941 | std::next(MachineBasicBlock::iterator(MI)); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 942 | } |
| 943 | |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 944 | DebugLoc UserValue::findDebugLoc() { |
| 945 | DebugLoc D = dl; |
| 946 | dl = DebugLoc(); |
| 947 | return D; |
| 948 | } |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 949 | void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx, |
| 950 | unsigned LocNo, |
| 951 | LiveIntervals &LIS, |
| 952 | const TargetInstrInfo &TII) { |
Devang Patel | f827cd7 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 953 | MachineBasicBlock::iterator I = findInsertLocation(MBB, Idx, LIS); |
Jakob Stoklund Olesen | 0804ead | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 954 | MachineOperand &Loc = locations[LocNo]; |
Devang Patel | d9f3fc7 | 2011-08-04 20:42:11 +0000 | [diff] [blame] | 955 | ++NumInsertedDebugValues; |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 956 | |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 957 | if (Loc.isReg()) |
| 958 | BuildMI(*MBB, I, findDebugLoc(), TII.get(TargetOpcode::DBG_VALUE), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 959 | IsIndirect, Loc.getReg(), offset, Variable, Expression); |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 960 | else |
| 961 | BuildMI(*MBB, I, findDebugLoc(), TII.get(TargetOpcode::DBG_VALUE)) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 962 | .addOperand(Loc) |
| 963 | .addImm(offset) |
| 964 | .addMetadata(Variable) |
| 965 | .addMetadata(Expression); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 966 | } |
| 967 | |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 968 | void UserValue::emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS, |
| 969 | const TargetInstrInfo &TII) { |
| 970 | MachineFunction::iterator MFEnd = VRM->getMachineFunction().end(); |
| 971 | |
| 972 | for (LocMap::const_iterator I = locInts.begin(); I.valid();) { |
| 973 | SlotIndex Start = I.start(); |
| 974 | SlotIndex Stop = I.stop(); |
| 975 | unsigned LocNo = I.value(); |
| 976 | DEBUG(dbgs() << "\t[" << Start << ';' << Stop << "):" << LocNo); |
| 977 | MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start); |
| 978 | SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB); |
| 979 | |
| 980 | DEBUG(dbgs() << " BB#" << MBB->getNumber() << '-' << MBBEnd); |
| 981 | insertDebugValue(MBB, Start, LocNo, LIS, TII); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 982 | // This interval may span multiple basic blocks. |
| 983 | // Insert a DBG_VALUE into each one. |
| 984 | while(Stop > MBBEnd) { |
| 985 | // Move to the next block. |
| 986 | Start = MBBEnd; |
| 987 | if (++MBB == MFEnd) |
| 988 | break; |
| 989 | MBBEnd = LIS.getMBBEndIdx(MBB); |
| 990 | DEBUG(dbgs() << " BB#" << MBB->getNumber() << '-' << MBBEnd); |
| 991 | insertDebugValue(MBB, Start, LocNo, LIS, TII); |
| 992 | } |
| 993 | DEBUG(dbgs() << '\n'); |
| 994 | if (MBB == MFEnd) |
| 995 | break; |
| 996 | |
| 997 | ++I; |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 998 | } |
| 999 | } |
| 1000 | |
| 1001 | void LDVImpl::emitDebugValues(VirtRegMap *VRM) { |
| 1002 | DEBUG(dbgs() << "********** EMITTING LIVE DEBUG VARIABLES **********\n"); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1003 | if (!MF) |
| 1004 | return; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1005 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1006 | for (unsigned i = 0, e = userValues.size(); i != e; ++i) { |
Jakob Stoklund Olesen | cf724f0 | 2011-05-08 19:21:08 +0000 | [diff] [blame] | 1007 | DEBUG(userValues[i]->print(dbgs(), &MF->getTarget())); |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1008 | userValues[i]->rewriteLocations(*VRM, *TRI); |
| 1009 | userValues[i]->emitDebugValues(VRM, *LIS, *TII); |
| 1010 | } |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 1011 | EmitDone = true; |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
| 1014 | void LiveDebugVariables::emitDebugValues(VirtRegMap *VRM) { |
Manman Ren | f098620 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 1015 | if (pImpl) |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1016 | static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM); |
| 1017 | } |
| 1018 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1019 | bool LiveDebugVariables::doInitialization(Module &M) { |
| 1020 | FunctionDIs = makeSubprogramMap(M); |
| 1021 | return Pass::doInitialization(M); |
| 1022 | } |
Jakob Stoklund Olesen | 42acf06 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1023 | |
Jakob Stoklund Olesen | 30e2128 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 1024 | #ifndef NDEBUG |
| 1025 | void LiveDebugVariables::dump() { |
| 1026 | if (pImpl) |
| 1027 | static_cast<LDVImpl*>(pImpl)->print(dbgs()); |
| 1028 | } |
| 1029 | #endif |