Hsiangkai Wang | 2532ac8 | 2018-08-17 15:22:04 +0000 | [diff] [blame] | 1 | //===- llvm/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp -------------===// |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 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 |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Yonghong Song | 61b189e | 2018-12-18 23:10:17 +0000 | [diff] [blame] | 9 | #include "llvm/CodeGen/DbgEntityHistoryCalculator.h" |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 10 | #include "llvm/ADT/BitVector.h" |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/STLExtras.h" |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 12 | #include "llvm/ADT/SmallSet.h" |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/SmallVector.h" |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| 15 | #include "llvm/CodeGen/MachineFunction.h" |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineInstr.h" |
| 17 | #include "llvm/CodeGen/MachineOperand.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/TargetLowering.h" |
| 19 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 20 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 21 | #include "llvm/IR/DebugInfoMetadata.h" |
| 22 | #include "llvm/IR/DebugLoc.h" |
| 23 | #include "llvm/MC/MCRegisterInfo.h" |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Debug.h" |
Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 25 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 26 | #include <cassert> |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 27 | #include <map> |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 28 | #include <utility> |
| 29 | |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 31 | |
| 32 | #define DEBUG_TYPE "dwarfdebug" |
| 33 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 34 | namespace { |
| 35 | using EntryIndex = DbgValueHistoryMap::EntryIndex; |
| 36 | } |
| 37 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 38 | // If @MI is a DBG_VALUE with debug value described by a |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 39 | // defined register, returns the number of this register. |
| 40 | // In the other case, returns 0. |
| 41 | static unsigned isDescribedByReg(const MachineInstr &MI) { |
| 42 | assert(MI.isDebugValue()); |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 43 | assert(MI.getNumOperands() == 4); |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 44 | // If location of variable is described using a register (directly or |
Dominic Chen | 6ba1965 | 2016-08-11 17:52:40 +0000 | [diff] [blame] | 45 | // indirectly), this register is always a first operand. |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 46 | return MI.getOperand(0).isReg() ? MI.getOperand(0).getReg() : 0; |
| 47 | } |
| 48 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 49 | bool DbgValueHistoryMap::startDbgValue(InlinedEntity Var, |
| 50 | const MachineInstr &MI, |
| 51 | EntryIndex &NewIndex) { |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 52 | // Instruction range should start with a DBG_VALUE instruction for the |
| 53 | // variable. |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 54 | assert(MI.isDebugValue() && "not a DBG_VALUE"); |
David Stenberg | 6feef56 | 2019-04-10 09:07:43 +0000 | [diff] [blame] | 55 | auto &Entries = VarEntries[Var]; |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 56 | if (!Entries.empty() && Entries.back().isDbgValue() && |
| 57 | !Entries.back().isClosed() && |
| 58 | Entries.back().getInstr()->isIdenticalTo(MI)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 59 | LLVM_DEBUG(dbgs() << "Coalescing identical DBG_VALUE entries:\n" |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 60 | << "\t" << Entries.back().getInstr() << "\t" << MI |
David Stenberg | 3739979 | 2019-04-10 09:07:32 +0000 | [diff] [blame] | 61 | << "\n"); |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 62 | return false; |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 63 | } |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 64 | Entries.emplace_back(&MI, Entry::DbgValue); |
| 65 | NewIndex = Entries.size() - 1; |
| 66 | return true; |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 67 | } |
| 68 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 69 | EntryIndex DbgValueHistoryMap::startClobber(InlinedEntity Var, |
| 70 | const MachineInstr &MI) { |
David Stenberg | 6feef56 | 2019-04-10 09:07:43 +0000 | [diff] [blame] | 71 | auto &Entries = VarEntries[Var]; |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 72 | // If an instruction clobbers multiple registers that the variable is |
| 73 | // described by, then we may have already created a clobbering instruction. |
| 74 | if (Entries.back().isClobber() && Entries.back().getInstr() == &MI) |
| 75 | return Entries.size() - 1; |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 76 | Entries.emplace_back(&MI, Entry::Clobber); |
| 77 | return Entries.size() - 1; |
David Stenberg | 3739979 | 2019-04-10 09:07:32 +0000 | [diff] [blame] | 78 | } |
| 79 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 80 | void DbgValueHistoryMap::Entry::endEntry(EntryIndex Index) { |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 81 | // For now, instruction ranges are not allowed to cross basic block |
| 82 | // boundaries. |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 83 | assert(isDbgValue() && "Setting end index for non-debug value"); |
| 84 | assert(!isClosed() && "End index has already been set"); |
| 85 | EndIndex = Index; |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 88 | void DbgLabelInstrMap::addInstr(InlinedEntity Label, const MachineInstr &MI) { |
Hsiangkai Wang | 2532ac8 | 2018-08-17 15:22:04 +0000 | [diff] [blame] | 89 | assert(MI.isDebugLabel() && "not a DBG_LABEL"); |
| 90 | LabelInstr[Label] = &MI; |
| 91 | } |
| 92 | |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 93 | namespace { |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 94 | |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 95 | // Maps physreg numbers to the variables they describe. |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 96 | using InlinedEntity = DbgValueHistoryMap::InlinedEntity; |
| 97 | using RegDescribedVarsMap = std::map<unsigned, SmallVector<InlinedEntity, 1>>; |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 98 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 99 | // Keeps track of the debug value entries that are currently live for each |
| 100 | // inlined entity. As the history map entries are stored in a SmallVector, they |
| 101 | // may be moved at insertion of new entries, so store indices rather than |
| 102 | // pointers. |
| 103 | using DbgValueEntriesMap = std::map<InlinedEntity, SmallSet<EntryIndex, 1>>; |
| 104 | |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 105 | } // end anonymous namespace |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 106 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 107 | // Claim that @Var is not described by @RegNo anymore. |
Duncan P. N. Exon Smith | 62e0f45 | 2015-04-15 22:29:27 +0000 | [diff] [blame] | 108 | static void dropRegDescribedVar(RegDescribedVarsMap &RegVars, unsigned RegNo, |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 109 | InlinedEntity Var) { |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 110 | const auto &I = RegVars.find(RegNo); |
| 111 | assert(RegNo != 0U && I != RegVars.end()); |
| 112 | auto &VarSet = I->second; |
Eugene Zelenko | 6e07bfd | 2017-08-17 21:26:39 +0000 | [diff] [blame] | 113 | const auto &VarPos = llvm::find(VarSet, Var); |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 114 | assert(VarPos != VarSet.end()); |
| 115 | VarSet.erase(VarPos); |
| 116 | // Don't keep empty sets in a map to keep it as small as possible. |
| 117 | if (VarSet.empty()) |
| 118 | RegVars.erase(I); |
| 119 | } |
| 120 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 121 | // Claim that @Var is now described by @RegNo. |
Duncan P. N. Exon Smith | 62e0f45 | 2015-04-15 22:29:27 +0000 | [diff] [blame] | 122 | static void addRegDescribedVar(RegDescribedVarsMap &RegVars, unsigned RegNo, |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 123 | InlinedEntity Var) { |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 124 | assert(RegNo != 0U); |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 125 | auto &VarSet = RegVars[RegNo]; |
David Majnemer | 0d955d0 | 2016-08-11 22:21:41 +0000 | [diff] [blame] | 126 | assert(!is_contained(VarSet, Var)); |
Alexey Samsonov | bb2990d | 2014-05-27 23:09:50 +0000 | [diff] [blame] | 127 | VarSet.push_back(Var); |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 128 | } |
| 129 | |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 130 | /// Create a clobbering entry and end all open debug value entries |
| 131 | /// for \p Var that are described by \p RegNo using that entry. |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 132 | static void clobberRegEntries(InlinedEntity Var, unsigned RegNo, |
| 133 | const MachineInstr &ClobberingInstr, |
| 134 | DbgValueEntriesMap &LiveEntries, |
| 135 | DbgValueHistoryMap &HistMap) { |
| 136 | EntryIndex ClobberIndex = HistMap.startClobber(Var, ClobberingInstr); |
| 137 | |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 138 | // Close all entries whose values are described by the register. |
| 139 | SmallVector<EntryIndex, 4> IndicesToErase; |
| 140 | for (auto Index : LiveEntries[Var]) { |
| 141 | auto &Entry = HistMap.getEntry(Var, Index); |
| 142 | assert(Entry.isDbgValue() && "Not a DBG_VALUE in LiveEntries"); |
| 143 | if (isDescribedByReg(*Entry.getInstr()) == RegNo) { |
| 144 | IndicesToErase.push_back(Index); |
| 145 | Entry.endEntry(ClobberIndex); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // Drop all entries that have ended. |
| 150 | for (auto Index : IndicesToErase) |
| 151 | LiveEntries[Var].erase(Index); |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | /// Add a new debug value for \p Var. Closes all overlapping debug values. |
| 155 | static void handleNewDebugValue(InlinedEntity Var, const MachineInstr &DV, |
| 156 | RegDescribedVarsMap &RegVars, |
| 157 | DbgValueEntriesMap &LiveEntries, |
| 158 | DbgValueHistoryMap &HistMap) { |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 159 | EntryIndex NewIndex; |
| 160 | if (HistMap.startDbgValue(Var, DV, NewIndex)) { |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 161 | SmallDenseMap<unsigned, bool, 4> TrackedRegs; |
| 162 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 163 | // If we have created a new debug value entry, close all preceding |
| 164 | // live entries that overlap. |
| 165 | SmallVector<EntryIndex, 4> IndicesToErase; |
| 166 | const DIExpression *DIExpr = DV.getDebugExpression(); |
| 167 | for (auto Index : LiveEntries[Var]) { |
| 168 | auto &Entry = HistMap.getEntry(Var, Index); |
| 169 | assert(Entry.isDbgValue() && "Not a DBG_VALUE in LiveEntries"); |
| 170 | const MachineInstr &DV = *Entry.getInstr(); |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 171 | bool Overlaps = DIExpr->fragmentsOverlap(DV.getDebugExpression()); |
| 172 | if (Overlaps) { |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 173 | IndicesToErase.push_back(Index); |
| 174 | Entry.endEntry(NewIndex); |
| 175 | } |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 176 | if (unsigned Reg = isDescribedByReg(DV)) |
| 177 | TrackedRegs[Reg] |= !Overlaps; |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 178 | } |
David Stenberg | b96943b | 2019-04-10 11:28:28 +0000 | [diff] [blame] | 179 | |
| 180 | // If the new debug value is described by a register, add tracking of |
| 181 | // that register if it is not already tracked. |
| 182 | if (unsigned NewReg = isDescribedByReg(DV)) { |
| 183 | if (!TrackedRegs.count(NewReg)) |
| 184 | addRegDescribedVar(RegVars, NewReg, Var); |
| 185 | LiveEntries[Var].insert(NewIndex); |
| 186 | TrackedRegs[NewReg] = true; |
| 187 | } |
| 188 | |
| 189 | // Drop tracking of registers that are no longer used. |
| 190 | for (auto I : TrackedRegs) |
| 191 | if (!I.second) |
| 192 | dropRegDescribedVar(RegVars, I.first, Var); |
| 193 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 194 | // Drop all entries that have ended, and mark the new entry as live. |
| 195 | for (auto Index : IndicesToErase) |
| 196 | LiveEntries[Var].erase(Index); |
| 197 | LiveEntries[Var].insert(NewIndex); |
| 198 | } |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 201 | // Terminate the location range for variables described by register at |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 202 | // @I by inserting @ClobberingInstr to their history. |
| 203 | static void clobberRegisterUses(RegDescribedVarsMap &RegVars, |
| 204 | RegDescribedVarsMap::iterator I, |
| 205 | DbgValueHistoryMap &HistMap, |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 206 | DbgValueEntriesMap &LiveEntries, |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 207 | const MachineInstr &ClobberingInstr) { |
| 208 | // Iterate over all variables described by this register and add this |
| 209 | // instruction to their history, clobbering it. |
| 210 | for (const auto &Var : I->second) |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 211 | clobberRegEntries(Var, I->first, ClobberingInstr, LiveEntries, HistMap); |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 212 | RegVars.erase(I); |
| 213 | } |
| 214 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 215 | // Terminate the location range for variables described by register |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 216 | // @RegNo by inserting @ClobberingInstr to their history. |
| 217 | static void clobberRegisterUses(RegDescribedVarsMap &RegVars, unsigned RegNo, |
| 218 | DbgValueHistoryMap &HistMap, |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 219 | DbgValueEntriesMap &LiveEntries, |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 220 | const MachineInstr &ClobberingInstr) { |
| 221 | const auto &I = RegVars.find(RegNo); |
| 222 | if (I == RegVars.end()) |
| 223 | return; |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 224 | clobberRegisterUses(RegVars, I, HistMap, LiveEntries, ClobberingInstr); |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 227 | // Returns the first instruction in @MBB which corresponds to |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 228 | // the function epilogue, or nullptr if @MBB doesn't contain an epilogue. |
| 229 | static const MachineInstr *getFirstEpilogueInst(const MachineBasicBlock &MBB) { |
| 230 | auto LastMI = MBB.getLastNonDebugInstr(); |
| 231 | if (LastMI == MBB.end() || !LastMI->isReturn()) |
| 232 | return nullptr; |
| 233 | // Assume that epilogue starts with instruction having the same debug location |
| 234 | // as the return instruction. |
| 235 | DebugLoc LastLoc = LastMI->getDebugLoc(); |
| 236 | auto Res = LastMI; |
Duncan P. N. Exon Smith | 1872096 | 2016-09-11 18:51:28 +0000 | [diff] [blame] | 237 | for (MachineBasicBlock::const_reverse_iterator I = LastMI.getReverse(), |
| 238 | E = MBB.rend(); |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 239 | I != E; ++I) { |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 240 | if (I->getDebugLoc() != LastLoc) |
Duncan P. N. Exon Smith | 5bff511 | 2016-07-08 19:31:47 +0000 | [diff] [blame] | 241 | return &*Res; |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 242 | Res = &*I; |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 243 | } |
| 244 | // If all instructions have the same debug location, assume whole MBB is |
| 245 | // an epilogue. |
Duncan P. N. Exon Smith | 5bff511 | 2016-07-08 19:31:47 +0000 | [diff] [blame] | 246 | return &*MBB.begin(); |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 249 | // Collect registers that are modified in the function body (their |
Adrian Prantl | 364d131 | 2014-08-06 18:41:24 +0000 | [diff] [blame] | 250 | // contents is changed outside of the prologue and epilogue). |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 251 | static void collectChangingRegs(const MachineFunction *MF, |
| 252 | const TargetRegisterInfo *TRI, |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 253 | BitVector &Regs) { |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 254 | for (const auto &MBB : *MF) { |
| 255 | auto FirstEpilogueInst = getFirstEpilogueInst(MBB); |
Adrian Prantl | e2d6375 | 2014-08-06 18:41:19 +0000 | [diff] [blame] | 256 | |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 257 | for (const auto &MI : MBB) { |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 258 | // Avoid looking at prologue or epilogue instructions. |
Adrian Prantl | e2d6375 | 2014-08-06 18:41:19 +0000 | [diff] [blame] | 259 | if (&MI == FirstEpilogueInst) |
| 260 | break; |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 261 | if (MI.getFlag(MachineInstr::FrameSetup)) |
| 262 | continue; |
| 263 | |
| 264 | // Look for register defs and register masks. Register masks are |
| 265 | // typically on calls and they clobber everything not in the mask. |
| 266 | for (const MachineOperand &MO : MI.operands()) { |
Dominic Chen | 6ba1965 | 2016-08-11 17:52:40 +0000 | [diff] [blame] | 267 | // Skip virtual registers since they are handled by the parent. |
| 268 | if (MO.isReg() && MO.isDef() && MO.getReg() && |
| 269 | !TRI->isVirtualRegister(MO.getReg())) { |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 270 | for (MCRegAliasIterator AI(MO.getReg(), TRI, true); AI.isValid(); |
| 271 | ++AI) |
| 272 | Regs.set(*AI); |
| 273 | } else if (MO.isRegMask()) { |
| 274 | Regs.setBitsNotInMask(MO.getRegMask()); |
| 275 | } |
| 276 | } |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 277 | } |
| 278 | } |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Hsiangkai Wang | 2532ac8 | 2018-08-17 15:22:04 +0000 | [diff] [blame] | 281 | void llvm::calculateDbgEntityHistory(const MachineFunction *MF, |
| 282 | const TargetRegisterInfo *TRI, |
| 283 | DbgValueHistoryMap &DbgValues, |
| 284 | DbgLabelInstrMap &DbgLabels) { |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 285 | BitVector ChangingRegs(TRI->getNumRegs()); |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 286 | collectChangingRegs(MF, TRI, ChangingRegs); |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 287 | |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 288 | const TargetLowering *TLI = MF->getSubtarget().getTargetLowering(); |
| 289 | unsigned SP = TLI->getStackPointerRegisterToSaveRestore(); |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 290 | RegDescribedVarsMap RegVars; |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 291 | DbgValueEntriesMap LiveEntries; |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 292 | for (const auto &MBB : *MF) { |
| 293 | for (const auto &MI : MBB) { |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 294 | if (!MI.isDebugInstr()) { |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 295 | // Not a DBG_VALUE instruction. It may clobber registers which describe |
| 296 | // some variables. |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 297 | for (const MachineOperand &MO : MI.operands()) { |
| 298 | if (MO.isReg() && MO.isDef() && MO.getReg()) { |
Adrian Prantl | d9cd4d5 | 2017-06-01 21:14:58 +0000 | [diff] [blame] | 299 | // Ignore call instructions that claim to clobber SP. The AArch64 |
| 300 | // backend does this for aggregate function arguments. |
| 301 | if (MI.isCall() && MO.getReg() == SP) |
| 302 | continue; |
Dominic Chen | 6ba1965 | 2016-08-11 17:52:40 +0000 | [diff] [blame] | 303 | // If this is a virtual register, only clobber it since it doesn't |
| 304 | // have aliases. |
| 305 | if (TRI->isVirtualRegister(MO.getReg())) |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 306 | clobberRegisterUses(RegVars, MO.getReg(), DbgValues, LiveEntries, |
| 307 | MI); |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 308 | // If this is a register def operand, it may end a debug value |
| 309 | // range. |
Dominic Chen | 6ba1965 | 2016-08-11 17:52:40 +0000 | [diff] [blame] | 310 | else { |
| 311 | for (MCRegAliasIterator AI(MO.getReg(), TRI, true); AI.isValid(); |
| 312 | ++AI) |
| 313 | if (ChangingRegs.test(*AI)) |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 314 | clobberRegisterUses(RegVars, *AI, DbgValues, LiveEntries, MI); |
Dominic Chen | 6ba1965 | 2016-08-11 17:52:40 +0000 | [diff] [blame] | 315 | } |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 316 | } else if (MO.isRegMask()) { |
| 317 | // If this is a register mask operand, clobber all debug values in |
| 318 | // non-CSRs. |
Francis Visoiu Mistrih | b52e036 | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 319 | for (unsigned I : ChangingRegs.set_bits()) { |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 320 | // Don't consider SP to be clobbered by register masks. |
| 321 | if (unsigned(I) != SP && TRI->isPhysicalRegister(I) && |
| 322 | MO.clobbersPhysReg(I)) { |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 323 | clobberRegisterUses(RegVars, I, DbgValues, LiveEntries, MI); |
Reid Kleckner | f6f04f8 | 2016-03-25 17:54:46 +0000 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | } |
| 327 | } |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 328 | continue; |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 329 | } |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 330 | |
Hsiangkai Wang | 2532ac8 | 2018-08-17 15:22:04 +0000 | [diff] [blame] | 331 | if (MI.isDebugValue()) { |
| 332 | assert(MI.getNumOperands() > 1 && "Invalid DBG_VALUE instruction!"); |
| 333 | // Use the base variable (without any DW_OP_piece expressions) |
| 334 | // as index into History. The full variables including the |
| 335 | // piece expressions are attached to the MI. |
| 336 | const DILocalVariable *RawVar = MI.getDebugVariable(); |
| 337 | assert(RawVar->isValidLocationForIntrinsic(MI.getDebugLoc()) && |
| 338 | "Expected inlined-at fields to agree"); |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 339 | InlinedEntity Var(RawVar, MI.getDebugLoc()->getInlinedAt()); |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 340 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 341 | handleNewDebugValue(Var, MI, RegVars, LiveEntries, DbgValues); |
Hsiangkai Wang | 2532ac8 | 2018-08-17 15:22:04 +0000 | [diff] [blame] | 342 | } else if (MI.isDebugLabel()) { |
| 343 | assert(MI.getNumOperands() == 1 && "Invalid DBG_LABEL instruction!"); |
| 344 | const DILabel *RawLabel = MI.getDebugLabel(); |
| 345 | assert(RawLabel->isValidLocationForIntrinsic(MI.getDebugLoc()) && |
| 346 | "Expected inlined-at fields to agree"); |
| 347 | // When collecting debug information for labels, there is no MCSymbol |
| 348 | // generated for it. So, we keep MachineInstr in DbgLabels in order |
| 349 | // to query MCSymbol afterward. |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 350 | InlinedEntity L(RawLabel, MI.getDebugLoc()->getInlinedAt()); |
Hsiangkai Wang | 2532ac8 | 2018-08-17 15:22:04 +0000 | [diff] [blame] | 351 | DbgLabels.addInstr(L, MI); |
| 352 | } |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 353 | } |
Alexey Samsonov | dfcaf9c | 2014-05-20 18:34:54 +0000 | [diff] [blame] | 354 | |
Eric Christopher | c93f56d | 2019-05-08 23:54:03 +0000 | [diff] [blame^] | 355 | // Make sure locations for register-described variables are valid only |
| 356 | // until the end of the basic block (unless it's the last basic block, in |
| 357 | // which case let their liveness run off to the end of the function). |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 358 | if (!MBB.empty() && &MBB != &MF->back()) { |
Eric Christopher | c93f56d | 2019-05-08 23:54:03 +0000 | [diff] [blame^] | 359 | for (auto I = RegVars.begin(), E = RegVars.end(); I != E;) { |
| 360 | auto CurElem = I++; // CurElem can be erased below. |
| 361 | if (TRI->isVirtualRegister(CurElem->first) || |
| 362 | ChangingRegs.test(CurElem->first)) |
| 363 | clobberRegisterUses(RegVars, CurElem, DbgValues, LiveEntries, |
| 364 | MBB.back()); |
Benjamin Kramer | 6bf8af5 | 2014-10-06 15:31:04 +0000 | [diff] [blame] | 365 | } |
Alexey Samsonov | 8000e27 | 2014-06-09 21:53:47 +0000 | [diff] [blame] | 366 | } |
Alexey Samsonov | 414b6fb | 2014-04-30 21:34:11 +0000 | [diff] [blame] | 367 | } |
| 368 | } |
Vedant Kumar | 7224c08 | 2018-06-01 22:33:15 +0000 | [diff] [blame] | 369 | |
| 370 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
| 371 | LLVM_DUMP_METHOD void DbgValueHistoryMap::dump() const { |
| 372 | dbgs() << "DbgValueHistoryMap:\n"; |
| 373 | for (const auto &VarRangePair : *this) { |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 374 | const InlinedEntity &Var = VarRangePair.first; |
David Stenberg | 6feef56 | 2019-04-10 09:07:43 +0000 | [diff] [blame] | 375 | const Entries &Entries = VarRangePair.second; |
Vedant Kumar | 7224c08 | 2018-06-01 22:33:15 +0000 | [diff] [blame] | 376 | |
Hsiangkai Wang | 760c1ab | 2018-09-06 02:22:06 +0000 | [diff] [blame] | 377 | const DILocalVariable *LocalVar = cast<DILocalVariable>(Var.first); |
Vedant Kumar | 7224c08 | 2018-06-01 22:33:15 +0000 | [diff] [blame] | 378 | const DILocation *Location = Var.second; |
| 379 | |
| 380 | dbgs() << " - " << LocalVar->getName() << " at "; |
| 381 | |
| 382 | if (Location) |
| 383 | dbgs() << Location->getFilename() << ":" << Location->getLine() << ":" |
| 384 | << Location->getColumn(); |
| 385 | else |
| 386 | dbgs() << "<unknown location>"; |
| 387 | |
| 388 | dbgs() << " --\n"; |
| 389 | |
David Stenberg | 5ffec6d | 2019-04-10 11:28:20 +0000 | [diff] [blame] | 390 | for (const auto &E : enumerate(Entries)) { |
| 391 | const auto &Entry = E.value(); |
| 392 | dbgs() << " Entry[" << E.index() << "]: "; |
| 393 | if (Entry.isDbgValue()) |
| 394 | dbgs() << "Debug value\n"; |
| 395 | else |
| 396 | dbgs() << "Clobber\n"; |
| 397 | dbgs() << " Instr: " << *Entry.getInstr(); |
| 398 | if (Entry.isDbgValue()) { |
| 399 | if (Entry.getEndIndex() == NoEntry) |
| 400 | dbgs() << " - Valid until end of function\n"; |
| 401 | else |
| 402 | dbgs() << " - Closed by Entry[" << Entry.getEndIndex() << "]\n"; |
| 403 | } |
Vedant Kumar | 7224c08 | 2018-06-01 22:33:15 +0000 | [diff] [blame] | 404 | dbgs() << "\n"; |
| 405 | } |
| 406 | } |
| 407 | } |
| 408 | #endif |