Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 1 | //===- LiveDebugVariables.cpp - Tracking debug info variables -------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the LiveDebugVariables analysis. |
| 10 | // |
| 11 | // Remove all DBG_VALUE instructions referencing virtual registers and replace |
| 12 | // them with a data structure tracking where live user variables are kept - in a |
| 13 | // virtual register or in a stack slot. |
| 14 | // |
| 15 | // Allow the data structure to be updated during register allocation when values |
| 16 | // are moved between registers and stack slots. Finally emit new DBG_VALUE |
| 17 | // instructions after register allocation is complete. |
| 18 | // |
| 19 | //===----------------------------------------------------------------------===// |
| 20 | |
| 21 | #include "LiveDebugVariables.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/ArrayRef.h" |
| 23 | #include "llvm/ADT/DenseMap.h" |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/IntervalMap.h" |
Eric Christopher | b6c190d | 2019-04-12 06:16:33 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/MapVector.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/STLExtras.h" |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/SmallSet.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallVector.h" |
Devang Patel | b456866 | 2011-08-04 18:45:38 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/StringRef.h" |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/LexicalScopes.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/LiveInterval.h" |
Matthias Braun | f842297 | 2017-12-13 02:51:04 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/LiveIntervals.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/MachineFunction.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/MachineInstr.h" |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/MachineOperand.h" |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 41 | #include "llvm/CodeGen/SlotIndexes.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 42 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 43 | #include "llvm/CodeGen/TargetOpcodes.h" |
| 44 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 45 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Jakob Stoklund Olesen | 26c9d70 | 2012-11-28 19:13:06 +0000 | [diff] [blame] | 46 | #include "llvm/CodeGen/VirtRegMap.h" |
Nico Weber | 432a388 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 47 | #include "llvm/Config/llvm-config.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 48 | #include "llvm/IR/DebugInfoMetadata.h" |
| 49 | #include "llvm/IR/DebugLoc.h" |
| 50 | #include "llvm/IR/Function.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 51 | #include "llvm/IR/Metadata.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 52 | #include "llvm/MC/MCRegisterInfo.h" |
| 53 | #include "llvm/Pass.h" |
| 54 | #include "llvm/Support/Casting.h" |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 55 | #include "llvm/Support/CommandLine.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 56 | #include "llvm/Support/Compiler.h" |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 57 | #include "llvm/Support/Debug.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 58 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 59 | #include <algorithm> |
| 60 | #include <cassert> |
| 61 | #include <iterator> |
David Blaikie | 2b1dfa7 | 2014-04-21 20:37:07 +0000 | [diff] [blame] | 62 | #include <memory> |
Benjamin Kramer | 82de7d3 | 2016-05-27 14:27:24 +0000 | [diff] [blame] | 63 | #include <utility> |
David Blaikie | 2b1dfa7 | 2014-04-21 20:37:07 +0000 | [diff] [blame] | 64 | |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 65 | using namespace llvm; |
| 66 | |
Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 67 | #define DEBUG_TYPE "livedebugvars" |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 68 | |
Devang Patel | acbee0b | 2011-01-07 22:33:41 +0000 | [diff] [blame] | 69 | static cl::opt<bool> |
Jakob Stoklund Olesen | 74ded57 | 2011-01-12 23:36:21 +0000 | [diff] [blame] | 70 | EnableLDV("live-debug-variables", cl::init(true), |
Devang Patel | acbee0b | 2011-01-07 22:33:41 +0000 | [diff] [blame] | 71 | cl::desc("Enable the live debug variables pass"), cl::Hidden); |
| 72 | |
Devang Patel | b456866 | 2011-08-04 18:45:38 +0000 | [diff] [blame] | 73 | STATISTIC(NumInsertedDebugValues, "Number of DBG_VALUEs inserted"); |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 74 | STATISTIC(NumInsertedDebugLabels, "Number of DBG_LABELs inserted"); |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 75 | |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 76 | char LiveDebugVariables::ID = 0; |
| 77 | |
Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 78 | INITIALIZE_PASS_BEGIN(LiveDebugVariables, DEBUG_TYPE, |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 79 | "Debug Variable Analysis", false, false) |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 80 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 81 | INITIALIZE_PASS_DEPENDENCY(LiveIntervals) |
Matthias Braun | 1527baa | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 82 | INITIALIZE_PASS_END(LiveDebugVariables, DEBUG_TYPE, |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 83 | "Debug Variable Analysis", false, false) |
| 84 | |
| 85 | void LiveDebugVariables::getAnalysisUsage(AnalysisUsage &AU) const { |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 86 | AU.addRequired<MachineDominatorTree>(); |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 87 | AU.addRequiredTransitive<LiveIntervals>(); |
| 88 | AU.setPreservesAll(); |
| 89 | MachineFunctionPass::getAnalysisUsage(AU); |
| 90 | } |
| 91 | |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 92 | LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID) { |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 93 | initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry()); |
| 94 | } |
| 95 | |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 96 | enum : unsigned { UndefLocNo = ~0U }; |
| 97 | |
| 98 | /// Describes a location by number along with some flags about the original |
| 99 | /// usage of the location. |
| 100 | class DbgValueLocation { |
| 101 | public: |
| 102 | DbgValueLocation(unsigned LocNo, bool WasIndirect) |
| 103 | : LocNo(LocNo), WasIndirect(WasIndirect) { |
| 104 | static_assert(sizeof(*this) == sizeof(unsigned), "bad bitfield packing"); |
| 105 | assert(locNo() == LocNo && "location truncation"); |
| 106 | } |
| 107 | |
| 108 | DbgValueLocation() : LocNo(0), WasIndirect(0) {} |
| 109 | |
| 110 | unsigned locNo() const { |
| 111 | // Fix up the undef location number, which gets truncated. |
| 112 | return LocNo == INT_MAX ? UndefLocNo : LocNo; |
| 113 | } |
| 114 | bool wasIndirect() const { return WasIndirect; } |
| 115 | bool isUndef() const { return locNo() == UndefLocNo; } |
| 116 | |
| 117 | DbgValueLocation changeLocNo(unsigned NewLocNo) const { |
| 118 | return DbgValueLocation(NewLocNo, WasIndirect); |
| 119 | } |
| 120 | |
Reid Kleckner | b4569de7 | 2017-10-03 18:30:11 +0000 | [diff] [blame] | 121 | friend inline bool operator==(const DbgValueLocation &LHS, |
| 122 | const DbgValueLocation &RHS) { |
| 123 | return LHS.LocNo == RHS.LocNo && LHS.WasIndirect == RHS.WasIndirect; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 124 | } |
Reid Kleckner | b4569de7 | 2017-10-03 18:30:11 +0000 | [diff] [blame] | 125 | |
| 126 | friend inline bool operator!=(const DbgValueLocation &LHS, |
| 127 | const DbgValueLocation &RHS) { |
| 128 | return !(LHS == RHS); |
| 129 | } |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 130 | |
| 131 | private: |
| 132 | unsigned LocNo : 31; |
| 133 | unsigned WasIndirect : 1; |
| 134 | }; |
| 135 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 136 | /// Map of where a user value is live, and its location. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 137 | using LocMap = IntervalMap<SlotIndex, DbgValueLocation, 4>; |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 138 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 139 | /// Map of stack slot offsets for spilled locations. |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 140 | /// Non-spilled locations are not added to the map. |
| 141 | using SpillOffsetMap = DenseMap<unsigned, unsigned>; |
| 142 | |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 143 | namespace { |
| 144 | |
| 145 | class LDVImpl; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 146 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 147 | /// A user value is a part of a debug info user variable. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 148 | /// |
| 149 | /// A DBG_VALUE instruction notes that (a sub-register of) a virtual register |
| 150 | /// holds part of a user variable. The part is identified by a byte offset. |
| 151 | /// |
| 152 | /// UserValues are grouped into equivalence classes for easier searching. Two |
| 153 | /// user values are related if they refer to the same variable, or if they are |
| 154 | /// held by the same virtual register. The equivalence class is the transitive |
| 155 | /// closure of that relation. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 156 | class UserValue { |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 157 | const DILocalVariable *Variable; ///< The debug info variable we are part of. |
| 158 | const DIExpression *Expression; ///< Any complex address expression. |
Devang Patel | 26ffa01 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 159 | DebugLoc dl; ///< The debug location for the variable. This is |
| 160 | ///< used by dwarf writer to find lexical scope. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 161 | UserValue *leader; ///< Equivalence class leader. |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 162 | UserValue *next = nullptr; ///< Next value in equivalence class, or null. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 163 | |
| 164 | /// Numbered locations referenced by locmap. |
Jakob Stoklund Olesen | 9adf5e0 | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 165 | SmallVector<MachineOperand, 4> locations; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 166 | |
| 167 | /// Map of slot indices where this value is live. |
| 168 | LocMap locInts; |
| 169 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 170 | /// Insert a DBG_VALUE into MBB at Idx for LocNo. |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 171 | void insertDebugValue(MachineBasicBlock *MBB, SlotIndex StartIdx, |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 172 | SlotIndex StopIdx, DbgValueLocation Loc, bool Spilled, |
| 173 | unsigned SpillOffset, LiveIntervals &LIS, |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 174 | const TargetInstrInfo &TII, |
| 175 | const TargetRegisterInfo &TRI); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 176 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 177 | /// Replace OldLocNo ranges with NewRegs ranges where NewRegs |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 178 | /// is live. Returns true if any changes were made. |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 179 | bool splitLocation(unsigned OldLocNo, ArrayRef<unsigned> NewRegs, |
| 180 | LiveIntervals &LIS); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 181 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 182 | public: |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 183 | /// Create a new UserValue. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 184 | UserValue(const DILocalVariable *var, const DIExpression *expr, DebugLoc L, |
| 185 | LocMap::Allocator &alloc) |
| 186 | : Variable(var), Expression(expr), dl(std::move(L)), leader(this), |
| 187 | locInts(alloc) {} |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 188 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 189 | /// Get the leader of this value's equivalence class. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 190 | UserValue *getLeader() { |
| 191 | UserValue *l = leader; |
| 192 | while (l != l->leader) |
| 193 | l = l->leader; |
| 194 | return leader = l; |
| 195 | } |
| 196 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 197 | /// Return the next UserValue in the equivalence class. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 198 | UserValue *getNext() const { return next; } |
| 199 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 200 | /// Does this UserValue match the parameters? |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 201 | bool match(const DILocalVariable *Var, const DIExpression *Expr, |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 202 | const DILocation *IA) const { |
| 203 | // FIXME: The fragment should be part of the equivalence class, but not |
| 204 | // other things in the expression like stack values. |
| 205 | return Var == Variable && Expr == Expression && dl->getInlinedAt() == IA; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 208 | /// Merge equivalence classes. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 209 | static UserValue *merge(UserValue *L1, UserValue *L2) { |
| 210 | L2 = L2->getLeader(); |
| 211 | if (!L1) |
| 212 | return L2; |
| 213 | L1 = L1->getLeader(); |
| 214 | if (L1 == L2) |
| 215 | return L1; |
| 216 | // Splice L2 before L1's members. |
| 217 | UserValue *End = L2; |
Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 218 | while (End->next) { |
| 219 | End->leader = L1; |
| 220 | End = End->next; |
| 221 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 222 | End->leader = L1; |
| 223 | End->next = L1->next; |
| 224 | L1->next = L2; |
| 225 | return L1; |
| 226 | } |
| 227 | |
Mikael Holmen | 57b33f6 | 2018-06-21 07:02:46 +0000 | [diff] [blame] | 228 | /// Return the location number that matches Loc. |
| 229 | /// |
| 230 | /// For undef values we always return location number UndefLocNo without |
| 231 | /// inserting anything in locations. Since locations is a vector and the |
| 232 | /// location number is the position in the vector and UndefLocNo is ~0, |
| 233 | /// we would need a very big vector to put the value at the right position. |
Jakob Stoklund Olesen | 9adf5e0 | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 234 | unsigned getLocationNo(const MachineOperand &LocMO) { |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 235 | if (LocMO.isReg()) { |
| 236 | if (LocMO.getReg() == 0) |
Reid Kleckner | eed0973 | 2017-09-15 22:08:50 +0000 | [diff] [blame] | 237 | return UndefLocNo; |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 238 | // For register locations we dont care about use/def and other flags. |
| 239 | for (unsigned i = 0, e = locations.size(); i != e; ++i) |
| 240 | if (locations[i].isReg() && |
| 241 | locations[i].getReg() == LocMO.getReg() && |
| 242 | locations[i].getSubReg() == LocMO.getSubReg()) |
| 243 | return i; |
| 244 | } else |
| 245 | for (unsigned i = 0, e = locations.size(); i != e; ++i) |
| 246 | if (LocMO.isIdenticalTo(locations[i])) |
| 247 | return i; |
Jakob Stoklund Olesen | 9adf5e0 | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 248 | locations.push_back(LocMO); |
| 249 | // We are storing a MachineOperand outside a MachineInstr. |
| 250 | locations.back().clearParent(); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 251 | // Don't store def operands. |
Geoff Berry | b3d126d | 2017-12-29 21:01:09 +0000 | [diff] [blame] | 252 | if (locations.back().isReg()) { |
| 253 | if (locations.back().isDef()) |
| 254 | locations.back().setIsDead(false); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 255 | locations.back().setIsUse(); |
Geoff Berry | b3d126d | 2017-12-29 21:01:09 +0000 | [diff] [blame] | 256 | } |
Jakob Stoklund Olesen | 9adf5e0 | 2011-01-09 05:33:21 +0000 | [diff] [blame] | 257 | return locations.size() - 1; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 260 | /// Ensure that all virtual register locations are mapped. |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 261 | void mapVirtRegs(LDVImpl *LDV); |
| 262 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 263 | /// Add a definition point to this value. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 264 | void addDef(SlotIndex Idx, const MachineOperand &LocMO, bool IsIndirect) { |
| 265 | DbgValueLocation Loc(getLocationNo(LocMO), IsIndirect); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 266 | // Add a singular (Idx,Idx) -> Loc mapping. |
| 267 | LocMap::iterator I = locInts.find(Idx); |
| 268 | if (!I.valid() || I.start() != Idx) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 269 | I.insert(Idx, Idx.getNextSlot(), Loc); |
Jakob Stoklund Olesen | 2539af6 | 2011-08-03 23:44:31 +0000 | [diff] [blame] | 270 | else |
| 271 | // A later DBG_VALUE at the same SlotIndex overrides the old location. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 272 | I.setValue(Loc); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 275 | /// Extend the current definition as far as possible down. |
| 276 | /// |
Adrian Prantl | f8d10ce | 2016-09-28 21:34:23 +0000 | [diff] [blame] | 277 | /// Stop when meeting an existing def or when leaving the live |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 278 | /// range of VNI. End points where VNI is no longer live are added to Kills. |
| 279 | /// |
| 280 | /// We only propagate DBG_VALUES locally here. LiveDebugValues performs a |
| 281 | /// data-flow analysis to propagate them beyond basic block boundaries. |
| 282 | /// |
| 283 | /// \param Idx Starting point for the definition. |
| 284 | /// \param Loc Location number to propagate. |
| 285 | /// \param LR Restrict liveness to where LR has the value VNI. May be null. |
| 286 | /// \param VNI When LR is not null, this is the value to restrict to. |
| 287 | /// \param [out] Kills Append end points of VNI's live range to Kills. |
| 288 | /// \param LIS Live intervals analysis. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 289 | void extendDef(SlotIndex Idx, DbgValueLocation Loc, |
Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 290 | LiveRange *LR, const VNInfo *VNI, |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 291 | SmallVectorImpl<SlotIndex> *Kills, |
Adrian Prantl | f8d10ce | 2016-09-28 21:34:23 +0000 | [diff] [blame] | 292 | LiveIntervals &LIS); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 293 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 294 | /// The value in LI/LocNo may be copies to other registers. Determine if |
| 295 | /// any of the copies are available at the kill points, and add defs if |
| 296 | /// possible. |
| 297 | /// |
| 298 | /// \param LI Scan for copies of the value in LI->reg. |
| 299 | /// \param LocNo Location number of LI->reg. |
| 300 | /// \param WasIndirect Indicates if the original use of LI->reg was indirect |
| 301 | /// \param Kills Points where the range of LocNo could be extended. |
| 302 | /// \param [in,out] NewDefs Append (Idx, LocNo) of inserted defs here. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 303 | void addDefsFromCopies( |
| 304 | LiveInterval *LI, unsigned LocNo, bool WasIndirect, |
| 305 | const SmallVectorImpl<SlotIndex> &Kills, |
| 306 | SmallVectorImpl<std::pair<SlotIndex, DbgValueLocation>> &NewDefs, |
| 307 | MachineRegisterInfo &MRI, LiveIntervals &LIS); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 308 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 309 | /// Compute the live intervals of all locations after collecting all their |
| 310 | /// def points. |
Jakob Stoklund Olesen | 3244963 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 311 | void computeIntervals(MachineRegisterInfo &MRI, const TargetRegisterInfo &TRI, |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 312 | LiveIntervals &LIS, LexicalScopes &LS); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 313 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 314 | /// Replace OldReg ranges with NewRegs ranges where NewRegs is |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 315 | /// live. Returns true if any changes were made. |
Fangrui Song | cb0bab8 | 2018-07-16 18:51:40 +0000 | [diff] [blame] | 316 | bool splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 317 | LiveIntervals &LIS); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 318 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 319 | /// Rewrite virtual register locations according to the provided virtual |
| 320 | /// register map. Record the stack slot offsets for the locations that |
| 321 | /// were spilled. |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 322 | void rewriteLocations(VirtRegMap &VRM, const MachineFunction &MF, |
| 323 | const TargetInstrInfo &TII, |
| 324 | const TargetRegisterInfo &TRI, |
| 325 | SpillOffsetMap &SpillOffsets); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 326 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 327 | /// Recreate DBG_VALUE instruction from data structures. |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 328 | void emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS, |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 329 | const TargetInstrInfo &TII, |
| 330 | const TargetRegisterInfo &TRI, |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 331 | const SpillOffsetMap &SpillOffsets); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 332 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 333 | /// Return DebugLoc of this UserValue. |
Devang Patel | f9e2ae9 | 2011-09-13 18:40:53 +0000 | [diff] [blame] | 334 | DebugLoc getDebugLoc() { return dl;} |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 335 | |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 336 | void print(raw_ostream &, const TargetRegisterInfo *); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 337 | }; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 338 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 339 | /// A user label is a part of a debug info user label. |
| 340 | class UserLabel { |
| 341 | const DILabel *Label; ///< The debug info label we are part of. |
| 342 | DebugLoc dl; ///< The debug location for the label. This is |
| 343 | ///< used by dwarf writer to find lexical scope. |
| 344 | SlotIndex loc; ///< Slot used by the debug label. |
| 345 | |
| 346 | /// Insert a DBG_LABEL into MBB at Idx. |
| 347 | void insertDebugLabel(MachineBasicBlock *MBB, SlotIndex Idx, |
| 348 | LiveIntervals &LIS, const TargetInstrInfo &TII); |
| 349 | |
| 350 | public: |
| 351 | /// Create a new UserLabel. |
| 352 | UserLabel(const DILabel *label, DebugLoc L, SlotIndex Idx) |
| 353 | : Label(label), dl(std::move(L)), loc(Idx) {} |
| 354 | |
| 355 | /// Does this UserLabel match the parameters? |
| 356 | bool match(const DILabel *L, const DILocation *IA, |
| 357 | const SlotIndex Index) const { |
| 358 | return Label == L && dl->getInlinedAt() == IA && loc == Index; |
| 359 | } |
| 360 | |
| 361 | /// Recreate DBG_LABEL instruction from data structures. |
| 362 | void emitDebugLabel(LiveIntervals &LIS, const TargetInstrInfo &TII); |
| 363 | |
| 364 | /// Return DebugLoc of this UserLabel. |
| 365 | DebugLoc getDebugLoc() { return dl; } |
| 366 | |
| 367 | void print(raw_ostream &, const TargetRegisterInfo *); |
| 368 | }; |
| 369 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 370 | /// Implementation of the LiveDebugVariables pass. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 371 | class LDVImpl { |
| 372 | LiveDebugVariables &pass; |
| 373 | LocMap::Allocator allocator; |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 374 | MachineFunction *MF = nullptr; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 375 | LiveIntervals *LIS; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 376 | const TargetRegisterInfo *TRI; |
| 377 | |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 378 | /// Whether emitDebugValues is called. |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 379 | bool EmitDone = false; |
| 380 | |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 381 | /// Whether the machine function is modified during the pass. |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 382 | bool ModifiedMF = false; |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 383 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 384 | /// All allocated UserValue instances. |
David Blaikie | 2b1dfa7 | 2014-04-21 20:37:07 +0000 | [diff] [blame] | 385 | SmallVector<std::unique_ptr<UserValue>, 8> userValues; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 386 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 387 | /// All allocated UserLabel instances. |
| 388 | SmallVector<std::unique_ptr<UserLabel>, 2> userLabels; |
| 389 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 390 | /// Map virtual register to eq class leader. |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 391 | using VRMap = DenseMap<unsigned, UserValue *>; |
Jakob Stoklund Olesen | 922e1fa | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 392 | VRMap virtRegToEqClass; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 393 | |
| 394 | /// Map user variable to eq class leader. |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 395 | using UVMap = DenseMap<const DILocalVariable *, UserValue *>; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 396 | UVMap userVarMap; |
| 397 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 398 | /// Find or create a UserValue. |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 399 | UserValue *getUserValue(const DILocalVariable *Var, const DIExpression *Expr, |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 400 | const DebugLoc &DL); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 401 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 402 | /// Find the EC leader for VirtReg or null. |
Jakob Stoklund Olesen | 9ec2011 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 403 | UserValue *lookupVirtReg(unsigned VirtReg); |
| 404 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 405 | /// Add DBG_VALUE instruction to our maps. |
| 406 | /// |
| 407 | /// \param MI DBG_VALUE instruction |
| 408 | /// \param Idx Last valid SLotIndex before instruction. |
| 409 | /// |
| 410 | /// \returns True if the DBG_VALUE instruction should be deleted. |
Duncan P. N. Exon Smith | fb612ac | 2016-06-30 23:13:38 +0000 | [diff] [blame] | 411 | bool handleDebugValue(MachineInstr &MI, SlotIndex Idx); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 412 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 413 | /// Add DBG_LABEL instruction to UserLabel. |
| 414 | /// |
| 415 | /// \param MI DBG_LABEL instruction |
| 416 | /// \param Idx Last valid SlotIndex before instruction. |
| 417 | /// |
| 418 | /// \returns True if the DBG_LABEL instruction should be deleted. |
| 419 | bool handleDebugLabel(MachineInstr &MI, SlotIndex Idx); |
| 420 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 421 | /// Collect and erase all DBG_VALUE instructions, adding a UserValue def |
| 422 | /// for each instruction. |
| 423 | /// |
| 424 | /// \param mf MachineFunction to be scanned. |
| 425 | /// |
| 426 | /// \returns True if any debug values were found. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 427 | bool collectDebugValues(MachineFunction &mf); |
| 428 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 429 | /// Compute the live intervals of all user values after collecting all |
| 430 | /// their def points. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 431 | void computeIntervals(); |
| 432 | |
| 433 | public: |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 434 | LDVImpl(LiveDebugVariables *ps) : pass(*ps) {} |
| 435 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 436 | bool runOnMachineFunction(MachineFunction &mf); |
| 437 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 438 | /// Release all memory. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 439 | void clear() { |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 440 | MF = nullptr; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 441 | userValues.clear(); |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 442 | userLabels.clear(); |
Jakob Stoklund Olesen | 922e1fa | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 443 | virtRegToEqClass.clear(); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 444 | userVarMap.clear(); |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 445 | // Make sure we call emitDebugValues if the machine function was modified. |
| 446 | assert((!ModifiedMF || EmitDone) && |
| 447 | "Dbg values are not emitted in LDV"); |
| 448 | EmitDone = false; |
| 449 | ModifiedMF = false; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 452 | /// Map virtual register to an equivalence class. |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 453 | void mapVirtReg(unsigned VirtReg, UserValue *EC); |
| 454 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 455 | /// Replace all references to OldReg with NewRegs. |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 456 | void splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 457 | |
Hsiangkai Wang | d72f6f133 | 2018-11-30 08:07:24 +0000 | [diff] [blame] | 458 | /// Recreate DBG_VALUE instruction from data structures. |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 459 | void emitDebugValues(VirtRegMap *VRM); |
| 460 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 461 | void print(raw_ostream&); |
| 462 | }; |
Eugene Zelenko | 5df3d89 | 2017-08-24 21:21:39 +0000 | [diff] [blame] | 463 | |
| 464 | } // end anonymous namespace |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 465 | |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 466 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 467 | static void printDebugLoc(const DebugLoc &DL, raw_ostream &CommentOS, |
Duncan P. N. Exon Smith | 32e7f28 | 2015-04-14 02:09:32 +0000 | [diff] [blame] | 468 | const LLVMContext &Ctx) { |
| 469 | if (!DL) |
| 470 | return; |
| 471 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 472 | auto *Scope = cast<DIScope>(DL.getScope()); |
Duncan P. N. Exon Smith | 32e7f28 | 2015-04-14 02:09:32 +0000 | [diff] [blame] | 473 | // 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] | 474 | CommentOS << Scope->getFilename(); |
Duncan P. N. Exon Smith | 32e7f28 | 2015-04-14 02:09:32 +0000 | [diff] [blame] | 475 | CommentOS << ':' << DL.getLine(); |
| 476 | if (DL.getCol() != 0) |
| 477 | CommentOS << ':' << DL.getCol(); |
| 478 | |
| 479 | DebugLoc InlinedAtDL = DL.getInlinedAt(); |
| 480 | if (!InlinedAtDL) |
| 481 | return; |
| 482 | |
| 483 | CommentOS << " @[ "; |
| 484 | printDebugLoc(InlinedAtDL, CommentOS, Ctx); |
| 485 | CommentOS << " ]"; |
| 486 | } |
| 487 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 488 | static void printExtendedName(raw_ostream &OS, const DINode *Node, |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 489 | const DILocation *DL) { |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 490 | const LLVMContext &Ctx = Node->getContext(); |
| 491 | StringRef Res; |
| 492 | unsigned Line; |
| 493 | if (const auto *V = dyn_cast<const DILocalVariable>(Node)) { |
| 494 | Res = V->getName(); |
| 495 | Line = V->getLine(); |
| 496 | } else if (const auto *L = dyn_cast<const DILabel>(Node)) { |
| 497 | Res = L->getName(); |
| 498 | Line = L->getLine(); |
| 499 | } |
| 500 | |
Duncan P. N. Exon Smith | 32e7f28 | 2015-04-14 02:09:32 +0000 | [diff] [blame] | 501 | if (!Res.empty()) |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 502 | OS << Res << "," << Line; |
Pengfei Wang | c05aad0 | 2019-05-09 08:09:21 +0000 | [diff] [blame] | 503 | auto *InlinedAt = DL ? DL->getInlinedAt() : nullptr; |
| 504 | if (InlinedAt) { |
Duncan P. N. Exon Smith | 32e7f28 | 2015-04-14 02:09:32 +0000 | [diff] [blame] | 505 | if (DebugLoc InlinedAtDL = InlinedAt) { |
| 506 | OS << " @["; |
| 507 | printDebugLoc(InlinedAtDL, OS, Ctx); |
| 508 | OS << "]"; |
| 509 | } |
| 510 | } |
| 511 | } |
| 512 | |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 513 | void UserValue::print(raw_ostream &OS, const TargetRegisterInfo *TRI) { |
Frederic Riss | e6bb187 | 2014-08-07 20:04:00 +0000 | [diff] [blame] | 514 | OS << "!\""; |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 515 | printExtendedName(OS, Variable, dl); |
Duncan P. N. Exon Smith | 32e7f28 | 2015-04-14 02:09:32 +0000 | [diff] [blame] | 516 | |
Devang Patel | 6c1ed31 | 2011-08-09 01:03:35 +0000 | [diff] [blame] | 517 | OS << "\"\t"; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 518 | for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) { |
| 519 | OS << " [" << I.start() << ';' << I.stop() << "):"; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 520 | if (I.value().isUndef()) |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 521 | OS << "undef"; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 522 | else { |
| 523 | OS << I.value().locNo(); |
| 524 | if (I.value().wasIndirect()) |
| 525 | OS << " ind"; |
| 526 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 527 | } |
Jakob Stoklund Olesen | c86fe05 | 2011-05-06 17:59:59 +0000 | [diff] [blame] | 528 | for (unsigned i = 0, e = locations.size(); i != e; ++i) { |
| 529 | OS << " Loc" << i << '='; |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 530 | locations[i].print(OS, TRI); |
Jakob Stoklund Olesen | c86fe05 | 2011-05-06 17:59:59 +0000 | [diff] [blame] | 531 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 532 | OS << '\n'; |
| 533 | } |
| 534 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 535 | void UserLabel::print(raw_ostream &OS, const TargetRegisterInfo *TRI) { |
| 536 | OS << "!\""; |
| 537 | printExtendedName(OS, Label, dl); |
| 538 | |
| 539 | OS << "\"\t"; |
| 540 | OS << loc; |
| 541 | OS << '\n'; |
| 542 | } |
| 543 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 544 | void LDVImpl::print(raw_ostream &OS) { |
| 545 | OS << "********** DEBUG VARIABLES **********\n"; |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 546 | for (auto &userValue : userValues) |
| 547 | userValue->print(OS, TRI); |
| 548 | OS << "********** DEBUG LABELS **********\n"; |
| 549 | for (auto &userLabel : userLabels) |
| 550 | userLabel->print(OS, TRI); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 551 | } |
Florian Hahn | 6b3216a | 2017-07-31 10:07:49 +0000 | [diff] [blame] | 552 | #endif |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 553 | |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 554 | void UserValue::mapVirtRegs(LDVImpl *LDV) { |
| 555 | for (unsigned i = 0, e = locations.size(); i != e; ++i) |
| 556 | if (locations[i].isReg() && |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 557 | Register::isVirtualRegister(locations[i].getReg())) |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 558 | LDV->mapVirtReg(locations[i].getReg(), this); |
| 559 | } |
| 560 | |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 561 | UserValue *LDVImpl::getUserValue(const DILocalVariable *Var, |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 562 | const DIExpression *Expr, const DebugLoc &DL) { |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 563 | UserValue *&Leader = userVarMap[Var]; |
| 564 | if (Leader) { |
| 565 | UserValue *UV = Leader->getLeader(); |
| 566 | Leader = UV; |
| 567 | for (; UV; UV = UV->getNext()) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 568 | if (UV->match(Var, Expr, DL->getInlinedAt())) |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 569 | return UV; |
| 570 | } |
| 571 | |
David Blaikie | 2b1dfa7 | 2014-04-21 20:37:07 +0000 | [diff] [blame] | 572 | userValues.push_back( |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 573 | llvm::make_unique<UserValue>(Var, Expr, DL, allocator)); |
David Blaikie | 2b1dfa7 | 2014-04-21 20:37:07 +0000 | [diff] [blame] | 574 | UserValue *UV = userValues.back().get(); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 575 | Leader = UserValue::merge(Leader, UV); |
| 576 | return UV; |
| 577 | } |
| 578 | |
| 579 | void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) { |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 580 | assert(Register::isVirtualRegister(VirtReg) && "Only map VirtRegs"); |
Jakob Stoklund Olesen | 922e1fa | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 581 | UserValue *&Leader = virtRegToEqClass[VirtReg]; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 582 | Leader = UserValue::merge(Leader, EC); |
| 583 | } |
| 584 | |
Jakob Stoklund Olesen | 9ec2011 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 585 | UserValue *LDVImpl::lookupVirtReg(unsigned VirtReg) { |
Jakob Stoklund Olesen | 922e1fa | 2010-12-03 22:25:09 +0000 | [diff] [blame] | 586 | if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) |
Jakob Stoklund Olesen | 9ec2011 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 587 | return UV->getLeader(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 588 | return nullptr; |
Jakob Stoklund Olesen | 9ec2011 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 589 | } |
| 590 | |
Duncan P. N. Exon Smith | fb612ac | 2016-06-30 23:13:38 +0000 | [diff] [blame] | 591 | bool LDVImpl::handleDebugValue(MachineInstr &MI, SlotIndex Idx) { |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 592 | // DBG_VALUE loc, offset, variable |
Duncan P. N. Exon Smith | fb612ac | 2016-06-30 23:13:38 +0000 | [diff] [blame] | 593 | if (MI.getNumOperands() != 4 || |
| 594 | !(MI.getOperand(1).isReg() || MI.getOperand(1).isImm()) || |
| 595 | !MI.getOperand(2).isMetadata()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 596 | LLVM_DEBUG(dbgs() << "Can't handle " << MI); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 597 | return false; |
| 598 | } |
| 599 | |
Bjorn Pettersson | bdf0c00 | 2018-03-06 08:47:07 +0000 | [diff] [blame] | 600 | // Detect invalid DBG_VALUE instructions, with a debug-use of a virtual |
| 601 | // register that hasn't been defined yet. If we do not remove those here, then |
| 602 | // the re-insertion of the DBG_VALUE instruction after register allocation |
| 603 | // will be incorrect. |
| 604 | // TODO: If earlier passes are corrected to generate sane debug information |
| 605 | // (and if the machine verifier is improved to catch this), then these checks |
| 606 | // could be removed or replaced by asserts. |
| 607 | bool Discard = false; |
| 608 | if (MI.getOperand(0).isReg() && |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 609 | Register::isVirtualRegister(MI.getOperand(0).getReg())) { |
Bjorn Pettersson | bdf0c00 | 2018-03-06 08:47:07 +0000 | [diff] [blame] | 610 | const unsigned Reg = MI.getOperand(0).getReg(); |
| 611 | if (!LIS->hasInterval(Reg)) { |
| 612 | // The DBG_VALUE is described by a virtual register that does not have a |
| 613 | // live interval. Discard the DBG_VALUE. |
| 614 | Discard = true; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 615 | LLVM_DEBUG(dbgs() << "Discarding debug info (no LIS interval): " << Idx |
| 616 | << " " << MI); |
Bjorn Pettersson | bdf0c00 | 2018-03-06 08:47:07 +0000 | [diff] [blame] | 617 | } else { |
| 618 | // The DBG_VALUE is only valid if either Reg is live out from Idx, or Reg |
| 619 | // is defined dead at Idx (where Idx is the slot index for the instruction |
Jordan Rupprecht | 6387fa2 | 2019-02-23 01:28:32 +0000 | [diff] [blame] | 620 | // preceding the DBG_VALUE). |
Bjorn Pettersson | bdf0c00 | 2018-03-06 08:47:07 +0000 | [diff] [blame] | 621 | const LiveInterval &LI = LIS->getInterval(Reg); |
| 622 | LiveQueryResult LRQ = LI.Query(Idx); |
| 623 | if (!LRQ.valueOutOrDead()) { |
| 624 | // We have found a DBG_VALUE with the value in a virtual register that |
| 625 | // is not live. Discard the DBG_VALUE. |
| 626 | Discard = true; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 627 | LLVM_DEBUG(dbgs() << "Discarding debug info (reg not live): " << Idx |
| 628 | << " " << MI); |
Bjorn Pettersson | bdf0c00 | 2018-03-06 08:47:07 +0000 | [diff] [blame] | 629 | } |
| 630 | } |
| 631 | } |
| 632 | |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 633 | // Get or create the UserValue for (variable,offset) here. |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 634 | bool IsIndirect = MI.getOperand(1).isImm(); |
Adrian Prantl | b2811e5 | 2017-07-28 23:06:50 +0000 | [diff] [blame] | 635 | if (IsIndirect) |
| 636 | assert(MI.getOperand(1).getImm() == 0 && "DBG_VALUE with nonzero offset"); |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 637 | const DILocalVariable *Var = MI.getDebugVariable(); |
| 638 | const DIExpression *Expr = MI.getDebugExpression(); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 639 | UserValue *UV = |
| 640 | getUserValue(Var, Expr, MI.getDebugLoc()); |
Bjorn Pettersson | bdf0c00 | 2018-03-06 08:47:07 +0000 | [diff] [blame] | 641 | if (!Discard) |
| 642 | UV->addDef(Idx, MI.getOperand(0), IsIndirect); |
Bjorn Pettersson | e0050d7 | 2018-03-06 13:23:28 +0000 | [diff] [blame] | 643 | else { |
| 644 | MachineOperand MO = MachineOperand::CreateReg(0U, false); |
| 645 | MO.setIsDebug(); |
| 646 | UV->addDef(Idx, MO, false); |
| 647 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 648 | return true; |
| 649 | } |
| 650 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 651 | bool LDVImpl::handleDebugLabel(MachineInstr &MI, SlotIndex Idx) { |
| 652 | // DBG_LABEL label |
| 653 | if (MI.getNumOperands() != 1 || !MI.getOperand(0).isMetadata()) { |
| 654 | LLVM_DEBUG(dbgs() << "Can't handle " << MI); |
| 655 | return false; |
| 656 | } |
| 657 | |
| 658 | // Get or create the UserLabel for label here. |
| 659 | const DILabel *Label = MI.getDebugLabel(); |
| 660 | const DebugLoc &DL = MI.getDebugLoc(); |
| 661 | bool Found = false; |
| 662 | for (auto const &L : userLabels) { |
| 663 | if (L->match(Label, DL->getInlinedAt(), Idx)) { |
| 664 | Found = true; |
| 665 | break; |
| 666 | } |
| 667 | } |
| 668 | if (!Found) |
| 669 | userLabels.push_back(llvm::make_unique<UserLabel>(Label, DL, Idx)); |
| 670 | |
| 671 | return true; |
| 672 | } |
| 673 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 674 | bool LDVImpl::collectDebugValues(MachineFunction &mf) { |
| 675 | bool Changed = false; |
| 676 | for (MachineFunction::iterator MFI = mf.begin(), MFE = mf.end(); MFI != MFE; |
| 677 | ++MFI) { |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 678 | MachineBasicBlock *MBB = &*MFI; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 679 | for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end(); |
| 680 | MBBI != MBBE;) { |
Hsiangkai Wang | b2b7f5f | 2018-09-05 05:58:53 +0000 | [diff] [blame] | 681 | // Use the first debug instruction in the sequence to get a SlotIndex |
| 682 | // for following consecutive debug instructions. |
| 683 | if (!MBBI->isDebugInstr()) { |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 684 | ++MBBI; |
| 685 | continue; |
| 686 | } |
Hsiangkai Wang | b2b7f5f | 2018-09-05 05:58:53 +0000 | [diff] [blame] | 687 | // Debug instructions has no slot index. Use the previous |
| 688 | // non-debug instruction's SlotIndex as its SlotIndex. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 689 | SlotIndex Idx = |
| 690 | MBBI == MBB->begin() |
| 691 | ? LIS->getMBBStartIdx(MBB) |
| 692 | : LIS->getInstructionIndex(*std::prev(MBBI)).getRegSlot(); |
Hsiangkai Wang | b2b7f5f | 2018-09-05 05:58:53 +0000 | [diff] [blame] | 693 | // Handle consecutive debug instructions with the same slot index. |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 694 | do { |
Hsiangkai Wang | b2b7f5f | 2018-09-05 05:58:53 +0000 | [diff] [blame] | 695 | // Only handle DBG_VALUE in handleDebugValue(). Skip all other |
| 696 | // kinds of debug instructions. |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 697 | if ((MBBI->isDebugValue() && handleDebugValue(*MBBI, Idx)) || |
| 698 | (MBBI->isDebugLabel() && handleDebugLabel(*MBBI, Idx))) { |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 699 | MBBI = MBB->erase(MBBI); |
| 700 | Changed = true; |
| 701 | } else |
| 702 | ++MBBI; |
Hsiangkai Wang | b2b7f5f | 2018-09-05 05:58:53 +0000 | [diff] [blame] | 703 | } while (MBBI != MBBE && MBBI->isDebugInstr()); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 704 | } |
| 705 | } |
| 706 | return Changed; |
| 707 | } |
| 708 | |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 709 | void UserValue::extendDef(SlotIndex Idx, DbgValueLocation Loc, LiveRange *LR, |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 710 | const VNInfo *VNI, SmallVectorImpl<SlotIndex> *Kills, |
Adrian Prantl | f8d10ce | 2016-09-28 21:34:23 +0000 | [diff] [blame] | 711 | LiveIntervals &LIS) { |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 712 | SlotIndex Start = Idx; |
| 713 | MachineBasicBlock *MBB = LIS.getMBBFromIndex(Start); |
| 714 | SlotIndex Stop = LIS.getMBBEndIdx(MBB); |
| 715 | LocMap::iterator I = locInts.find(Start); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 716 | |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 717 | // Limit to VNI's live range. |
| 718 | bool ToEnd = true; |
| 719 | if (LR && VNI) { |
| 720 | LiveInterval::Segment *Segment = LR->getSegmentContaining(Start); |
| 721 | if (!Segment || Segment->valno != VNI) { |
| 722 | if (Kills) |
| 723 | Kills->push_back(Start); |
| 724 | return; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 725 | } |
Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 726 | if (Segment->end < Stop) { |
| 727 | Stop = Segment->end; |
| 728 | ToEnd = false; |
| 729 | } |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 730 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 731 | |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 732 | // There could already be a short def at Start. |
| 733 | if (I.valid() && I.start() <= Start) { |
| 734 | // Stop when meeting a different location or an already extended interval. |
| 735 | Start = Start.getNextSlot(); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 736 | if (I.value() != Loc || I.stop() != Start) |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 737 | return; |
| 738 | // This is a one-slot placeholder. Just skip it. |
| 739 | ++I; |
| 740 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 741 | |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 742 | // Limited by the next def. |
Fangrui Song | b251cc0 | 2019-07-12 14:58:15 +0000 | [diff] [blame] | 743 | if (I.valid() && I.start() < Stop) |
Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 744 | Stop = I.start(); |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 745 | // Limited by VNI's live range. |
| 746 | else if (!ToEnd && Kills) |
| 747 | Kills->push_back(Stop); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 748 | |
Adrian Prantl | ce85813 | 2015-12-21 20:03:00 +0000 | [diff] [blame] | 749 | if (Start < Stop) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 750 | I.insert(Start, Stop, Loc); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 751 | } |
| 752 | |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 753 | void UserValue::addDefsFromCopies( |
| 754 | LiveInterval *LI, unsigned LocNo, bool WasIndirect, |
| 755 | const SmallVectorImpl<SlotIndex> &Kills, |
| 756 | SmallVectorImpl<std::pair<SlotIndex, DbgValueLocation>> &NewDefs, |
| 757 | MachineRegisterInfo &MRI, LiveIntervals &LIS) { |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 758 | if (Kills.empty()) |
| 759 | return; |
| 760 | // Don't track copies from physregs, there are too many uses. |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 761 | if (!Register::isVirtualRegister(LI->reg)) |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 762 | return; |
| 763 | |
| 764 | // Collect all the (vreg, valno) pairs that are copies of LI. |
| 765 | SmallVector<std::pair<LiveInterval*, const VNInfo*>, 8> CopyValues; |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 766 | for (MachineOperand &MO : MRI.use_nodbg_operands(LI->reg)) { |
| 767 | MachineInstr *MI = MO.getParent(); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 768 | // Copies of the full value. |
Owen Anderson | b36376e | 2014-03-17 19:36:09 +0000 | [diff] [blame] | 769 | if (MO.getSubReg() || !MI->isCopy()) |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 770 | continue; |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 771 | unsigned DstReg = MI->getOperand(0).getReg(); |
| 772 | |
Jakob Stoklund Olesen | ec0ac3c | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 773 | // Don't follow copies to physregs. These are usually setting up call |
| 774 | // arguments, and the argument registers are always call clobbered. We are |
| 775 | // better off in the source register which could be a callee-saved register, |
| 776 | // or it could be spilled. |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 777 | if (!Register::isVirtualRegister(DstReg)) |
Jakob Stoklund Olesen | ec0ac3c | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 778 | continue; |
| 779 | |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 780 | // Is LocNo extended to reach this copy? If not, another def may be blocking |
| 781 | // it, or we are looking at a wrong value of LI. |
Duncan P. N. Exon Smith | 3ac9cc6 | 2016-02-27 06:40:41 +0000 | [diff] [blame] | 782 | SlotIndex Idx = LIS.getInstructionIndex(*MI); |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 783 | LocMap::iterator I = locInts.find(Idx.getRegSlot(true)); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 784 | if (!I.valid() || I.value().locNo() != LocNo) |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 785 | continue; |
| 786 | |
| 787 | if (!LIS.hasInterval(DstReg)) |
| 788 | continue; |
| 789 | LiveInterval *DstLI = &LIS.getInterval(DstReg); |
Jakob Stoklund Olesen | 90b5e56 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 790 | const VNInfo *DstVNI = DstLI->getVNInfoAt(Idx.getRegSlot()); |
| 791 | assert(DstVNI && DstVNI->def == Idx.getRegSlot() && "Bad copy value"); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 792 | CopyValues.push_back(std::make_pair(DstLI, DstVNI)); |
| 793 | } |
| 794 | |
| 795 | if (CopyValues.empty()) |
| 796 | return; |
| 797 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 798 | LLVM_DEBUG(dbgs() << "Got " << CopyValues.size() << " copies of " << *LI |
| 799 | << '\n'); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 800 | |
| 801 | // Try to add defs of the copied values for each kill point. |
| 802 | for (unsigned i = 0, e = Kills.size(); i != e; ++i) { |
| 803 | SlotIndex Idx = Kills[i]; |
| 804 | for (unsigned j = 0, e = CopyValues.size(); j != e; ++j) { |
| 805 | LiveInterval *DstLI = CopyValues[j].first; |
| 806 | const VNInfo *DstVNI = CopyValues[j].second; |
| 807 | if (DstLI->getVNInfoAt(Idx) != DstVNI) |
| 808 | continue; |
| 809 | // Check that there isn't already a def at Idx |
| 810 | LocMap::iterator I = locInts.find(Idx); |
| 811 | if (I.valid() && I.start() <= Idx) |
| 812 | continue; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 813 | LLVM_DEBUG(dbgs() << "Kill at " << Idx << " covered by valno #" |
| 814 | << DstVNI->id << " in " << *DstLI << '\n'); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 815 | MachineInstr *CopyMI = LIS.getInstructionFromIndex(DstVNI->def); |
| 816 | assert(CopyMI && CopyMI->isCopy() && "Bad copy value"); |
| 817 | unsigned LocNo = getLocationNo(CopyMI->getOperand(0)); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 818 | DbgValueLocation NewLoc(LocNo, WasIndirect); |
| 819 | I.insert(Idx, Idx.getNextSlot(), NewLoc); |
| 820 | NewDefs.push_back(std::make_pair(Idx, NewLoc)); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 821 | break; |
| 822 | } |
| 823 | } |
| 824 | } |
| 825 | |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 826 | void UserValue::computeIntervals(MachineRegisterInfo &MRI, |
| 827 | const TargetRegisterInfo &TRI, |
| 828 | LiveIntervals &LIS, LexicalScopes &LS) { |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 829 | SmallVector<std::pair<SlotIndex, DbgValueLocation>, 16> Defs; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 830 | |
| 831 | // Collect all defs to be extended (Skipping undefs). |
| 832 | for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 833 | if (!I.value().isUndef()) |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 834 | Defs.push_back(std::make_pair(I.start(), I.value())); |
| 835 | |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 836 | // Extend all defs, and possibly add new ones along the way. |
| 837 | for (unsigned i = 0; i != Defs.size(); ++i) { |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 838 | SlotIndex Idx = Defs[i].first; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 839 | DbgValueLocation Loc = Defs[i].second; |
| 840 | const MachineOperand &LocMO = locations[Loc.locNo()]; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 841 | |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 842 | if (!LocMO.isReg()) { |
| 843 | extendDef(Idx, Loc, nullptr, nullptr, nullptr, LIS); |
Jakob Stoklund Olesen | 3244963 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 844 | continue; |
| 845 | } |
| 846 | |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 847 | // Register locations are constrained to where the register value is live. |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 848 | if (Register::isVirtualRegister(LocMO.getReg())) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 849 | LiveInterval *LI = nullptr; |
| 850 | const VNInfo *VNI = nullptr; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 851 | if (LIS.hasInterval(LocMO.getReg())) { |
| 852 | LI = &LIS.getInterval(LocMO.getReg()); |
Jakob Stoklund Olesen | 48a1647 | 2012-06-22 18:51:35 +0000 | [diff] [blame] | 853 | VNI = LI->getVNInfoAt(Idx); |
| 854 | } |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 855 | SmallVector<SlotIndex, 16> Kills; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 856 | extendDef(Idx, Loc, LI, VNI, &Kills, LIS); |
Bjorn Pettersson | 8483004 | 2018-08-25 10:02:03 +0000 | [diff] [blame] | 857 | // FIXME: Handle sub-registers in addDefsFromCopies. The problem is that |
| 858 | // if the original location for example is %vreg0:sub_hi, and we find a |
| 859 | // full register copy in addDefsFromCopies (at the moment it only handles |
| 860 | // full register copies), then we must add the sub1 sub-register index to |
| 861 | // the new location. However, that is only possible if the new virtual |
| 862 | // register is of the same regclass (or if there is an equivalent |
| 863 | // sub-register in that regclass). For now, simply skip handling copies if |
| 864 | // a sub-register is involved. |
| 865 | if (LI && !LocMO.getSubReg()) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 866 | addDefsFromCopies(LI, Loc.locNo(), Loc.wasIndirect(), Kills, Defs, MRI, |
| 867 | LIS); |
Jakob Stoklund Olesen | 3244963 | 2012-06-22 17:15:32 +0000 | [diff] [blame] | 868 | continue; |
| 869 | } |
| 870 | |
Bjorn Pettersson | 715a5ef | 2017-09-28 13:10:06 +0000 | [diff] [blame] | 871 | // For physregs, we only mark the start slot idx. DwarfDebug will see it |
| 872 | // as if the DBG_VALUE is valid up until the end of the basic block, or |
| 873 | // the next def of the physical register. So we do not need to extend the |
| 874 | // range. It might actually happen that the DBG_VALUE is the last use of |
| 875 | // the physical register (e.g. if this is an unused input argument to a |
| 876 | // function). |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 877 | } |
| 878 | |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 879 | // The computed intervals may extend beyond the range of the debug |
| 880 | // location's lexical scope. In this case, splitting of an interval |
| 881 | // can result in an interval outside of the scope being created, |
| 882 | // causing extra unnecessary DBG_VALUEs to be emitted. To prevent |
| 883 | // this, trim the intervals to the lexical scope. |
| 884 | |
| 885 | LexicalScope *Scope = LS.findLexicalScope(dl); |
| 886 | if (!Scope) |
| 887 | return; |
| 888 | |
| 889 | SlotIndex PrevEnd; |
| 890 | LocMap::iterator I = locInts.begin(); |
| 891 | |
| 892 | // Iterate over the lexical scope ranges. Each time round the loop |
| 893 | // we check the intervals for overlap with the end of the previous |
| 894 | // range and the start of the next. The first range is handled as |
| 895 | // a special case where there is no PrevEnd. |
| 896 | for (const InsnRange &Range : Scope->getRanges()) { |
| 897 | SlotIndex RStart = LIS.getInstructionIndex(*Range.first); |
| 898 | SlotIndex REnd = LIS.getInstructionIndex(*Range.second); |
| 899 | |
| 900 | // At the start of each iteration I has been advanced so that |
| 901 | // I.stop() >= PrevEnd. Check for overlap. |
| 902 | if (PrevEnd && I.start() < PrevEnd) { |
| 903 | SlotIndex IStop = I.stop(); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 904 | DbgValueLocation Loc = I.value(); |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 905 | |
| 906 | // Stop overlaps previous end - trim the end of the interval to |
| 907 | // the scope range. |
| 908 | I.setStopUnchecked(PrevEnd); |
| 909 | ++I; |
| 910 | |
| 911 | // If the interval also overlaps the start of the "next" (i.e. |
Alexey Lapshin | b9f1e7b | 2019-06-06 21:19:39 +0000 | [diff] [blame] | 912 | // current) range create a new interval for the remainder |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 913 | if (RStart < IStop) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 914 | I.insert(RStart, IStop, Loc); |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | // Advance I so that I.stop() >= RStart, and check for overlap. |
| 918 | I.advanceTo(RStart); |
| 919 | if (!I.valid()) |
| 920 | return; |
| 921 | |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 922 | // The end of a lexical scope range is the last instruction in the |
| 923 | // range. To convert to an interval we need the index of the |
| 924 | // instruction after it. |
| 925 | REnd = REnd.getNextIndex(); |
| 926 | |
| 927 | // Advance I to first interval outside current range. |
| 928 | I.advanceTo(REnd); |
| 929 | if (!I.valid()) |
| 930 | return; |
| 931 | |
| 932 | PrevEnd = REnd; |
| 933 | } |
| 934 | |
| 935 | // Check for overlap with end of final range. |
| 936 | if (PrevEnd && I.start() < PrevEnd) |
| 937 | I.setStopUnchecked(PrevEnd); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 938 | } |
| 939 | |
| 940 | void LDVImpl::computeIntervals() { |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 941 | LexicalScopes LS; |
| 942 | LS.initialize(*MF); |
| 943 | |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 944 | for (unsigned i = 0, e = userValues.size(); i != e; ++i) { |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 945 | userValues[i]->computeIntervals(MF->getRegInfo(), *TRI, *LIS, LS); |
Jakob Stoklund Olesen | 816f5f4 | 2011-03-18 21:42:19 +0000 | [diff] [blame] | 946 | userValues[i]->mapVirtRegs(this); |
| 947 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | bool LDVImpl::runOnMachineFunction(MachineFunction &mf) { |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 951 | clear(); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 952 | MF = &mf; |
| 953 | LIS = &pass.getAnalysis<LiveIntervals>(); |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 954 | TRI = mf.getSubtarget().getRegisterInfo(); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 955 | LLVM_DEBUG(dbgs() << "********** COMPUTING LIVE DEBUG VARIABLES: " |
| 956 | << mf.getName() << " **********\n"); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 957 | |
| 958 | bool Changed = collectDebugValues(mf); |
| 959 | computeIntervals(); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 960 | LLVM_DEBUG(print(dbgs())); |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 961 | ModifiedMF = Changed; |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 962 | return Changed; |
| 963 | } |
| 964 | |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 965 | static void removeDebugValues(MachineFunction &mf) { |
| 966 | for (MachineBasicBlock &MBB : mf) { |
| 967 | for (auto MBBI = MBB.begin(), MBBE = MBB.end(); MBBI != MBBE; ) { |
| 968 | if (!MBBI->isDebugValue()) { |
| 969 | ++MBBI; |
| 970 | continue; |
| 971 | } |
| 972 | MBBI = MBB.erase(MBBI); |
| 973 | } |
| 974 | } |
| 975 | } |
| 976 | |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 977 | bool LiveDebugVariables::runOnMachineFunction(MachineFunction &mf) { |
Devang Patel | acbee0b | 2011-01-07 22:33:41 +0000 | [diff] [blame] | 978 | if (!EnableLDV) |
| 979 | return false; |
Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 980 | if (!mf.getFunction().getSubprogram()) { |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 981 | removeDebugValues(mf); |
| 982 | return false; |
| 983 | } |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 984 | if (!pImpl) |
| 985 | pImpl = new LDVImpl(this); |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 986 | return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf); |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 987 | } |
| 988 | |
| 989 | void LiveDebugVariables::releaseMemory() { |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 990 | if (pImpl) |
Jakob Stoklund Olesen | 4be0bd7 | 2010-12-02 00:37:37 +0000 | [diff] [blame] | 991 | static_cast<LDVImpl*>(pImpl)->clear(); |
| 992 | } |
| 993 | |
| 994 | LiveDebugVariables::~LiveDebugVariables() { |
| 995 | if (pImpl) |
| 996 | delete static_cast<LDVImpl*>(pImpl); |
Jakob Stoklund Olesen | d4900a6 | 2010-11-30 02:17:10 +0000 | [diff] [blame] | 997 | } |
Jakob Stoklund Olesen | 9ec2011 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 998 | |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 999 | //===----------------------------------------------------------------------===// |
| 1000 | // Live Range Splitting |
| 1001 | //===----------------------------------------------------------------------===// |
| 1002 | |
| 1003 | bool |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1004 | UserValue::splitLocation(unsigned OldLocNo, ArrayRef<unsigned> NewRegs, |
| 1005 | LiveIntervals& LIS) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1006 | LLVM_DEBUG({ |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1007 | dbgs() << "Splitting Loc" << OldLocNo << '\t'; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1008 | print(dbgs(), nullptr); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1009 | }); |
| 1010 | bool DidChange = false; |
| 1011 | LocMap::iterator LocMapI; |
| 1012 | LocMapI.setMap(locInts); |
| 1013 | for (unsigned i = 0; i != NewRegs.size(); ++i) { |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1014 | LiveInterval *LI = &LIS.getInterval(NewRegs[i]); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1015 | if (LI->empty()) |
| 1016 | continue; |
| 1017 | |
| 1018 | // Don't allocate the new LocNo until it is needed. |
Reid Kleckner | eed0973 | 2017-09-15 22:08:50 +0000 | [diff] [blame] | 1019 | unsigned NewLocNo = UndefLocNo; |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1020 | |
| 1021 | // Iterate over the overlaps between locInts and LI. |
| 1022 | LocMapI.find(LI->beginIndex()); |
| 1023 | if (!LocMapI.valid()) |
| 1024 | continue; |
| 1025 | LiveInterval::iterator LII = LI->advanceTo(LI->begin(), LocMapI.start()); |
| 1026 | LiveInterval::iterator LIE = LI->end(); |
| 1027 | while (LocMapI.valid() && LII != LIE) { |
| 1028 | // At this point, we know that LocMapI.stop() > LII->start. |
| 1029 | LII = LI->advanceTo(LII, LocMapI.start()); |
| 1030 | if (LII == LIE) |
| 1031 | break; |
| 1032 | |
| 1033 | // Now LII->end > LocMapI.start(). Do we have an overlap? |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1034 | if (LocMapI.value().locNo() == OldLocNo && LII->start < LocMapI.stop()) { |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1035 | // Overlapping correct location. Allocate NewLocNo now. |
Reid Kleckner | eed0973 | 2017-09-15 22:08:50 +0000 | [diff] [blame] | 1036 | if (NewLocNo == UndefLocNo) { |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1037 | MachineOperand MO = MachineOperand::CreateReg(LI->reg, false); |
| 1038 | MO.setSubReg(locations[OldLocNo].getSubReg()); |
| 1039 | NewLocNo = getLocationNo(MO); |
| 1040 | DidChange = true; |
| 1041 | } |
| 1042 | |
| 1043 | SlotIndex LStart = LocMapI.start(); |
| 1044 | SlotIndex LStop = LocMapI.stop(); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1045 | DbgValueLocation OldLoc = LocMapI.value(); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1046 | |
| 1047 | // Trim LocMapI down to the LII overlap. |
| 1048 | if (LStart < LII->start) |
| 1049 | LocMapI.setStartUnchecked(LII->start); |
| 1050 | if (LStop > LII->end) |
| 1051 | LocMapI.setStopUnchecked(LII->end); |
| 1052 | |
| 1053 | // Change the value in the overlap. This may trigger coalescing. |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1054 | LocMapI.setValue(OldLoc.changeLocNo(NewLocNo)); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1055 | |
| 1056 | // Re-insert any removed OldLocNo ranges. |
| 1057 | if (LStart < LocMapI.start()) { |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1058 | LocMapI.insert(LStart, LocMapI.start(), OldLoc); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1059 | ++LocMapI; |
| 1060 | assert(LocMapI.valid() && "Unexpected coalescing"); |
| 1061 | } |
| 1062 | if (LStop > LocMapI.stop()) { |
| 1063 | ++LocMapI; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1064 | LocMapI.insert(LII->end, LStop, OldLoc); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1065 | --LocMapI; |
| 1066 | } |
| 1067 | } |
| 1068 | |
| 1069 | // Advance to the next overlap. |
| 1070 | if (LII->end < LocMapI.stop()) { |
| 1071 | if (++LII == LIE) |
| 1072 | break; |
| 1073 | LocMapI.advanceTo(LII->start); |
| 1074 | } else { |
| 1075 | ++LocMapI; |
| 1076 | if (!LocMapI.valid()) |
| 1077 | break; |
| 1078 | LII = LI->advanceTo(LII, LocMapI.start()); |
| 1079 | } |
| 1080 | } |
| 1081 | } |
| 1082 | |
| 1083 | // Finally, remove any remaining OldLocNo intervals and OldLocNo itself. |
| 1084 | locations.erase(locations.begin() + OldLocNo); |
| 1085 | LocMapI.goToBegin(); |
| 1086 | while (LocMapI.valid()) { |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1087 | DbgValueLocation v = LocMapI.value(); |
| 1088 | if (v.locNo() == OldLocNo) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1089 | LLVM_DEBUG(dbgs() << "Erasing [" << LocMapI.start() << ';' |
| 1090 | << LocMapI.stop() << ")\n"); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1091 | LocMapI.erase(); |
| 1092 | } else { |
Mikael Holmen | 57b33f6 | 2018-06-21 07:02:46 +0000 | [diff] [blame] | 1093 | // Undef values always have location number UndefLocNo, so don't change |
| 1094 | // locNo in that case. See getLocationNo(). |
| 1095 | if (!v.isUndef() && v.locNo() > OldLocNo) |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1096 | LocMapI.setValueUnchecked(v.changeLocNo(v.locNo() - 1)); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1097 | ++LocMapI; |
| 1098 | } |
| 1099 | } |
| 1100 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1101 | LLVM_DEBUG({ |
| 1102 | dbgs() << "Split result: \t"; |
| 1103 | print(dbgs(), nullptr); |
| 1104 | }); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1105 | return DidChange; |
| 1106 | } |
| 1107 | |
| 1108 | bool |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1109 | UserValue::splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, |
| 1110 | LiveIntervals &LIS) { |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1111 | bool DidChange = false; |
Jakob Stoklund Olesen | 57c8f58 | 2011-05-06 19:31:19 +0000 | [diff] [blame] | 1112 | // Split locations referring to OldReg. Iterate backwards so splitLocation can |
Eric Christopher | be153e6 | 2012-03-15 21:33:35 +0000 | [diff] [blame] | 1113 | // safely erase unused locations. |
Jakob Stoklund Olesen | 57c8f58 | 2011-05-06 19:31:19 +0000 | [diff] [blame] | 1114 | for (unsigned i = locations.size(); i ; --i) { |
| 1115 | unsigned LocNo = i-1; |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1116 | const MachineOperand *Loc = &locations[LocNo]; |
| 1117 | if (!Loc->isReg() || Loc->getReg() != OldReg) |
| 1118 | continue; |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1119 | DidChange |= splitLocation(LocNo, NewRegs, LIS); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1120 | } |
| 1121 | return DidChange; |
| 1122 | } |
| 1123 | |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1124 | void LDVImpl::splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs) { |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1125 | bool DidChange = false; |
| 1126 | for (UserValue *UV = lookupVirtReg(OldReg); UV; UV = UV->getNext()) |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1127 | DidChange |= UV->splitRegister(OldReg, NewRegs, *LIS); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1128 | |
| 1129 | if (!DidChange) |
| 1130 | return; |
| 1131 | |
| 1132 | // Map all of the new virtual registers. |
| 1133 | UserValue *UV = lookupVirtReg(OldReg); |
| 1134 | for (unsigned i = 0; i != NewRegs.size(); ++i) |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1135 | mapVirtReg(NewRegs[i], UV); |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | void LiveDebugVariables:: |
Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1139 | splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, LiveIntervals &LIS) { |
Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1140 | if (pImpl) |
| 1141 | static_cast<LDVImpl*>(pImpl)->splitRegister(OldReg, NewRegs); |
| 1142 | } |
| 1143 | |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1144 | void UserValue::rewriteLocations(VirtRegMap &VRM, const MachineFunction &MF, |
| 1145 | const TargetInstrInfo &TII, |
| 1146 | const TargetRegisterInfo &TRI, |
| 1147 | SpillOffsetMap &SpillOffsets) { |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1148 | // Build a set of new locations with new numbers so we can coalesce our |
| 1149 | // IntervalMap if two vreg intervals collapse to the same physical location. |
| 1150 | // Use MapVector instead of SetVector because MapVector::insert returns the |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1151 | // position of the previously or newly inserted element. The boolean value |
| 1152 | // tracks if the location was produced by a spill. |
| 1153 | // FIXME: This will be problematic if we ever support direct and indirect |
| 1154 | // frame index locations, i.e. expressing both variables in memory and |
| 1155 | // 'int x, *px = &x'. The "spilled" bit must become part of the location. |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1156 | MapVector<MachineOperand, std::pair<bool, unsigned>> NewLocations; |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1157 | SmallVector<unsigned, 4> LocNoMap(locations.size()); |
| 1158 | for (unsigned I = 0, E = locations.size(); I != E; ++I) { |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1159 | bool Spilled = false; |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1160 | unsigned SpillOffset = 0; |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1161 | MachineOperand Loc = locations[I]; |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1162 | // Only virtual registers are rewritten. |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1163 | if (Loc.isReg() && Loc.getReg() && |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 1164 | Register::isVirtualRegister(Loc.getReg())) { |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1165 | unsigned VirtReg = Loc.getReg(); |
| 1166 | if (VRM.isAssignedReg(VirtReg) && |
Daniel Sanders | 2bea69b | 2019-08-01 23:27:28 +0000 | [diff] [blame] | 1167 | Register::isPhysicalRegister(VRM.getPhys(VirtReg))) { |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1168 | // This can create a %noreg operand in rare cases when the sub-register |
| 1169 | // index is no longer available. That means the user value is in a |
| 1170 | // non-existent sub-register, and %noreg is exactly what we want. |
| 1171 | Loc.substPhysReg(VRM.getPhys(VirtReg), TRI); |
| 1172 | } else if (VRM.getStackSlot(VirtReg) != VirtRegMap::NO_STACK_SLOT) { |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1173 | // Retrieve the stack slot offset. |
| 1174 | unsigned SpillSize; |
| 1175 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
| 1176 | const TargetRegisterClass *TRC = MRI.getRegClass(VirtReg); |
| 1177 | bool Success = TII.getStackSlotRange(TRC, Loc.getSubReg(), SpillSize, |
| 1178 | SpillOffset, MF); |
| 1179 | |
| 1180 | // FIXME: Invalidate the location if the offset couldn't be calculated. |
| 1181 | (void)Success; |
| 1182 | |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1183 | Loc = MachineOperand::CreateFI(VRM.getStackSlot(VirtReg)); |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1184 | Spilled = true; |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1185 | } else { |
| 1186 | Loc.setReg(0); |
| 1187 | Loc.setSubReg(0); |
| 1188 | } |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1189 | } |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1190 | |
| 1191 | // Insert this location if it doesn't already exist and record a mapping |
| 1192 | // from the old number to the new number. |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1193 | auto InsertResult = NewLocations.insert({Loc, {Spilled, SpillOffset}}); |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1194 | unsigned NewLocNo = std::distance(NewLocations.begin(), InsertResult.first); |
| 1195 | LocNoMap[I] = NewLocNo; |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1196 | } |
| 1197 | |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1198 | // Rewrite the locations and record the stack slot offsets for spills. |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1199 | locations.clear(); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1200 | SpillOffsets.clear(); |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1201 | for (auto &Pair : NewLocations) { |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1202 | bool Spilled; |
| 1203 | unsigned SpillOffset; |
| 1204 | std::tie(Spilled, SpillOffset) = Pair.second; |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1205 | locations.push_back(Pair.first); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1206 | if (Spilled) { |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1207 | unsigned NewLocNo = std::distance(&*NewLocations.begin(), &Pair); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1208 | SpillOffsets[NewLocNo] = SpillOffset; |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1209 | } |
| 1210 | } |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1211 | |
| 1212 | // Update the interval map, but only coalesce left, since intervals to the |
| 1213 | // right use the old location numbers. This should merge two contiguous |
| 1214 | // DBG_VALUE intervals with different vregs that were allocated to the same |
| 1215 | // physical register. |
| 1216 | for (LocMap::iterator I = locInts.begin(); I.valid(); ++I) { |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1217 | DbgValueLocation Loc = I.value(); |
Mikael Holmen | 57b33f6 | 2018-06-21 07:02:46 +0000 | [diff] [blame] | 1218 | // Undef values don't exist in locations (and thus not in LocNoMap either) |
| 1219 | // so skip over them. See getLocationNo(). |
| 1220 | if (Loc.isUndef()) |
| 1221 | continue; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1222 | unsigned NewLocNo = LocNoMap[Loc.locNo()]; |
| 1223 | I.setValueUnchecked(Loc.changeLocNo(NewLocNo)); |
Reid Kleckner | 92687d4 | 2017-09-20 17:32:54 +0000 | [diff] [blame] | 1224 | I.setStart(I.start()); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1225 | } |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1228 | /// Find an iterator for inserting a DBG_VALUE instruction. |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1229 | static MachineBasicBlock::iterator |
Devang Patel | 26ffa01 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 1230 | findInsertLocation(MachineBasicBlock *MBB, SlotIndex Idx, |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1231 | LiveIntervals &LIS) { |
| 1232 | SlotIndex Start = LIS.getMBBStartIdx(MBB); |
| 1233 | Idx = Idx.getBaseIndex(); |
| 1234 | |
| 1235 | // Try to find an insert location by going backwards from Idx. |
| 1236 | MachineInstr *MI; |
| 1237 | while (!(MI = LIS.getInstructionFromIndex(Idx))) { |
| 1238 | // We've reached the beginning of MBB. |
| 1239 | if (Idx == Start) { |
Keith Walker | 830a8c1 | 2016-09-16 14:07:29 +0000 | [diff] [blame] | 1240 | MachineBasicBlock::iterator I = MBB->SkipPHIsLabelsAndDebug(MBB->begin()); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1241 | return I; |
| 1242 | } |
| 1243 | Idx = Idx.getPrevIndex(); |
| 1244 | } |
Devang Patel | 26ffa01 | 2011-02-04 01:43:25 +0000 | [diff] [blame] | 1245 | |
Jakob Stoklund Olesen | 088b30a | 2011-01-13 23:35:53 +0000 | [diff] [blame] | 1246 | // Don't insert anything after the first terminator, though. |
Evan Cheng | 7f8e563 | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 1247 | return MI->isTerminator() ? MBB->getFirstTerminator() : |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 1248 | std::next(MachineBasicBlock::iterator(MI)); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1249 | } |
| 1250 | |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1251 | /// Find an iterator for inserting the next DBG_VALUE instruction |
| 1252 | /// (or end if no more insert locations found). |
| 1253 | static MachineBasicBlock::iterator |
| 1254 | findNextInsertLocation(MachineBasicBlock *MBB, |
| 1255 | MachineBasicBlock::iterator I, |
| 1256 | SlotIndex StopIdx, MachineOperand &LocMO, |
| 1257 | LiveIntervals &LIS, |
| 1258 | const TargetRegisterInfo &TRI) { |
| 1259 | if (!LocMO.isReg()) |
| 1260 | return MBB->instr_end(); |
| 1261 | unsigned Reg = LocMO.getReg(); |
| 1262 | |
| 1263 | // Find the next instruction in the MBB that define the register Reg. |
Stefan Maksimovic | 991af7a | 2018-02-09 14:03:26 +0000 | [diff] [blame] | 1264 | while (I != MBB->end() && !I->isTerminator()) { |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1265 | if (!LIS.isNotInMIMap(*I) && |
| 1266 | SlotIndex::isEarlierEqualInstr(StopIdx, LIS.getInstructionIndex(*I))) |
| 1267 | break; |
| 1268 | if (I->definesRegister(Reg, &TRI)) |
| 1269 | // The insert location is directly after the instruction/bundle. |
| 1270 | return std::next(I); |
| 1271 | ++I; |
| 1272 | } |
| 1273 | return MBB->end(); |
| 1274 | } |
| 1275 | |
| 1276 | void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex StartIdx, |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1277 | SlotIndex StopIdx, DbgValueLocation Loc, |
| 1278 | bool Spilled, unsigned SpillOffset, |
| 1279 | LiveIntervals &LIS, const TargetInstrInfo &TII, |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1280 | const TargetRegisterInfo &TRI) { |
| 1281 | SlotIndex MBBEndIdx = LIS.getMBBEndIdx(&*MBB); |
| 1282 | // Only search within the current MBB. |
| 1283 | StopIdx = (MBBEndIdx < StopIdx) ? MBBEndIdx : StopIdx; |
| 1284 | MachineBasicBlock::iterator I = findInsertLocation(MBB, StartIdx, LIS); |
Mikael Holmen | 57b33f6 | 2018-06-21 07:02:46 +0000 | [diff] [blame] | 1285 | // Undef values don't exist in locations so create new "noreg" register MOs |
| 1286 | // for them. See getLocationNo(). |
| 1287 | MachineOperand MO = !Loc.isUndef() ? |
| 1288 | locations[Loc.locNo()] : |
| 1289 | MachineOperand::CreateReg(/* Reg */ 0, /* isDef */ false, /* isImp */ false, |
| 1290 | /* isKill */ false, /* isDead */ false, |
| 1291 | /* isUndef */ false, /* isEarlyClobber */ false, |
| 1292 | /* SubReg */ 0, /* isDebug */ true); |
| 1293 | |
Devang Patel | eabc3cea | 2011-08-04 20:42:11 +0000 | [diff] [blame] | 1294 | ++NumInsertedDebugValues; |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1295 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 1296 | assert(cast<DILocalVariable>(Variable) |
Duncan P. N. Exon Smith | e686f15 | 2015-04-06 23:27:40 +0000 | [diff] [blame] | 1297 | ->isValidLocationForIntrinsic(getDebugLoc()) && |
Duncan P. N. Exon Smith | 3bef6a3 | 2015-04-03 19:20:26 +0000 | [diff] [blame] | 1298 | "Expected inlined-at fields to agree"); |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1299 | |
| 1300 | // If the location was spilled, the new DBG_VALUE will be indirect. If the |
| 1301 | // original DBG_VALUE was indirect, we need to add DW_OP_deref to indicate |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1302 | // that the original virtual register was a pointer. Also, add the stack slot |
| 1303 | // offset for the spilled register to the expression. |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1304 | const DIExpression *Expr = Expression; |
Petar Jovanovic | e85bbf5 | 2019-05-20 10:35:57 +0000 | [diff] [blame] | 1305 | uint8_t DIExprFlags = DIExpression::ApplyOffset; |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1306 | bool IsIndirect = Loc.wasIndirect(); |
| 1307 | if (Spilled) { |
Petar Jovanovic | e85bbf5 | 2019-05-20 10:35:57 +0000 | [diff] [blame] | 1308 | if (IsIndirect) |
| 1309 | DIExprFlags |= DIExpression::DerefAfter; |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1310 | Expr = |
Petar Jovanovic | e85bbf5 | 2019-05-20 10:35:57 +0000 | [diff] [blame] | 1311 | DIExpression::prepend(Expr, DIExprFlags, SpillOffset); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1312 | IsIndirect = true; |
| 1313 | } |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1314 | |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1315 | assert((!Spilled || MO.isFI()) && "a spilled location must be a frame index"); |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1316 | |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1317 | do { |
Mikael Holmen | 42f7bc9 | 2018-06-21 10:03:34 +0000 | [diff] [blame] | 1318 | BuildMI(*MBB, I, getDebugLoc(), TII.get(TargetOpcode::DBG_VALUE), |
| 1319 | IsIndirect, MO, Variable, Expr); |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1320 | |
| 1321 | // Continue and insert DBG_VALUES after every redefinition of register |
| 1322 | // associated with the debug value within the range |
| 1323 | I = findNextInsertLocation(MBB, I, StopIdx, MO, LIS, TRI); |
| 1324 | } while (I != MBB->end()); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 1327 | void UserLabel::insertDebugLabel(MachineBasicBlock *MBB, SlotIndex Idx, |
| 1328 | LiveIntervals &LIS, |
| 1329 | const TargetInstrInfo &TII) { |
| 1330 | MachineBasicBlock::iterator I = findInsertLocation(MBB, Idx, LIS); |
| 1331 | ++NumInsertedDebugLabels; |
| 1332 | BuildMI(*MBB, I, getDebugLoc(), TII.get(TargetOpcode::DBG_LABEL)) |
| 1333 | .addMetadata(Label); |
| 1334 | } |
| 1335 | |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1336 | void UserValue::emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS, |
Reid Kleckner | 4e04028 | 2017-09-20 18:19:08 +0000 | [diff] [blame] | 1337 | const TargetInstrInfo &TII, |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1338 | const TargetRegisterInfo &TRI, |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1339 | const SpillOffsetMap &SpillOffsets) { |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1340 | MachineFunction::iterator MFEnd = VRM->getMachineFunction().end(); |
| 1341 | |
| 1342 | for (LocMap::const_iterator I = locInts.begin(); I.valid();) { |
| 1343 | SlotIndex Start = I.start(); |
| 1344 | SlotIndex Stop = I.stop(); |
Reid Kleckner | 04e25e0 | 2017-10-03 17:59:02 +0000 | [diff] [blame] | 1345 | DbgValueLocation Loc = I.value(); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1346 | auto SpillIt = |
| 1347 | !Loc.isUndef() ? SpillOffsets.find(Loc.locNo()) : SpillOffsets.end(); |
| 1348 | bool Spilled = SpillIt != SpillOffsets.end(); |
| 1349 | unsigned SpillOffset = Spilled ? SpillIt->second : 0; |
Robert Lougher | 10f740d | 2017-08-03 11:54:02 +0000 | [diff] [blame] | 1350 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1351 | LLVM_DEBUG(dbgs() << "\t[" << Start << ';' << Stop << "):" << Loc.locNo()); |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 1352 | MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start)->getIterator(); |
| 1353 | SlotIndex MBBEnd = LIS.getMBBEndIdx(&*MBB); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1354 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1355 | LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1356 | insertDebugValue(&*MBB, Start, Stop, Loc, Spilled, SpillOffset, LIS, TII, |
| 1357 | TRI); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1358 | // This interval may span multiple basic blocks. |
| 1359 | // Insert a DBG_VALUE into each one. |
Karl-Johan Karlsson | 8d8d201 | 2017-10-05 08:37:31 +0000 | [diff] [blame] | 1360 | while (Stop > MBBEnd) { |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1361 | // Move to the next block. |
| 1362 | Start = MBBEnd; |
| 1363 | if (++MBB == MFEnd) |
| 1364 | break; |
Duncan P. N. Exon Smith | 5ae5939 | 2015-10-09 19:13:58 +0000 | [diff] [blame] | 1365 | MBBEnd = LIS.getMBBEndIdx(&*MBB); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1366 | LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1367 | insertDebugValue(&*MBB, Start, Stop, Loc, Spilled, SpillOffset, LIS, TII, |
| 1368 | TRI); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1369 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1370 | LLVM_DEBUG(dbgs() << '\n'); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1371 | if (MBB == MFEnd) |
| 1372 | break; |
| 1373 | |
| 1374 | ++I; |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1375 | } |
| 1376 | } |
| 1377 | |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 1378 | void UserLabel::emitDebugLabel(LiveIntervals &LIS, const TargetInstrInfo &TII) { |
| 1379 | LLVM_DEBUG(dbgs() << "\t" << loc); |
| 1380 | MachineFunction::iterator MBB = LIS.getMBBFromIndex(loc)->getIterator(); |
| 1381 | |
| 1382 | LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB)); |
| 1383 | insertDebugLabel(&*MBB, loc, LIS, TII); |
| 1384 | |
| 1385 | LLVM_DEBUG(dbgs() << '\n'); |
| 1386 | } |
| 1387 | |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1388 | void LDVImpl::emitDebugValues(VirtRegMap *VRM) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1389 | LLVM_DEBUG(dbgs() << "********** EMITTING LIVE DEBUG VARIABLES **********\n"); |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 1390 | if (!MF) |
| 1391 | return; |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 1392 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
David Stenberg | 45acc96 | 2018-09-07 13:54:07 +0000 | [diff] [blame] | 1393 | SpillOffsetMap SpillOffsets; |
Hsiangkai Wang | 66609a8 | 2019-01-18 07:17:09 +0000 | [diff] [blame] | 1394 | for (auto &userValue : userValues) { |
| 1395 | LLVM_DEBUG(userValue->print(dbgs(), TRI)); |
| 1396 | userValue->rewriteLocations(*VRM, *MF, *TII, *TRI, SpillOffsets); |
| 1397 | userValue->emitDebugValues(VRM, *LIS, *TII, *TRI, SpillOffsets); |
| 1398 | } |
| 1399 | LLVM_DEBUG(dbgs() << "********** EMITTING LIVE DEBUG LABELS **********\n"); |
| 1400 | for (auto &userLabel : userLabels) { |
| 1401 | LLVM_DEBUG(userLabel->print(dbgs(), TRI)); |
| 1402 | userLabel->emitDebugLabel(*LIS, *TII); |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1403 | } |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 1404 | EmitDone = true; |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1405 | } |
| 1406 | |
| 1407 | void LiveDebugVariables::emitDebugValues(VirtRegMap *VRM) { |
Manman Ren | 7a4c8a7 | 2013-02-13 20:23:48 +0000 | [diff] [blame] | 1408 | if (pImpl) |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1409 | static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM); |
| 1410 | } |
| 1411 | |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 1412 | bool LiveDebugVariables::doInitialization(Module &M) { |
David Blaikie | 2f04011 | 2014-07-25 16:10:16 +0000 | [diff] [blame] | 1413 | return Pass::doInitialization(M); |
| 1414 | } |
Jakob Stoklund Olesen | afc2bc2 | 2010-12-03 21:47:10 +0000 | [diff] [blame] | 1415 | |
Aaron Ballman | 615eb47 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 1416 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Sam Clegg | 705f798 | 2017-06-21 22:19:17 +0000 | [diff] [blame] | 1417 | LLVM_DUMP_METHOD void LiveDebugVariables::dump() const { |
Jakob Stoklund Olesen | 9ec2011 | 2010-12-02 18:15:44 +0000 | [diff] [blame] | 1418 | if (pImpl) |
| 1419 | static_cast<LDVImpl*>(pImpl)->print(dbgs()); |
| 1420 | } |
| 1421 | #endif |