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