[llvm] [DebugInfo] getMergedLocation: match scopes based on their location (PR #132286)
Stephen Tozer via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 4 04:56:23 PDT 2025
================
@@ -118,6 +118,106 @@ DILocation *DILocation::getMergedLocations(ArrayRef<DILocation *> Locs) {
return Merged;
}
+static DILexicalBlockBase *cloneAndReplaceParentScope(DILexicalBlockBase *LBB,
+ DIScope *NewParent) {
+ TempMDNode ClonedScope = LBB->clone();
+ cast<DILexicalBlockBase>(*ClonedScope).replaceScope(NewParent);
+ return cast<DILexicalBlockBase>(
+ MDNode::replaceWithUniqued(std::move(ClonedScope)));
+}
+
+using LineColumn = std::pair<unsigned /* Line */, unsigned /* Column */>;
+
+/// Returns the location of DILocalScope, if present, or a default value.
+static LineColumn getLocalScopeLocationOr(DIScope *S, LineColumn Default) {
+ assert(isa<DILocalScope>(S) && "Expected DILocalScope.");
+
+ if (isa<DILexicalBlockFile>(S))
+ return Default;
+ if (auto *LB = dyn_cast<DILexicalBlock>(S))
+ return {LB->getLine(), LB->getColumn()};
+ if (auto *SP = dyn_cast<DISubprogram>(S))
+ return {SP->getLine(), 0u};
+
+ llvm_unreachable("Unhandled type of DILocalScope.");
+}
+
+// Returns the nearest matching scope inside a subprogram.
+template <typename MatcherT>
+static std::pair<DIScope *, LineColumn>
+getNearestMatchingScope(const DILocation *L1, const DILocation *L2) {
+ MatcherT Matcher;
+
+ DIScope *S1 = L1->getScope();
+ DIScope *S2 = L2->getScope();
+
+ // When matching DILexicalBlockFile's, ignore column numbers, so that
+ // DILocation's having different columns within the same
+ // DILexicalBlockFile will match.
----------------
SLTozer wrote:
Is this a behaviour we definitely want? On the one hand, it seems worth matching `DILexicalBlockFile`s if they have different column numbers, and setting a line 0 column in the result; on the other hand, if we have two `DILexicalBlockFile`s that have identical column numbers, then we would want to preserve that column number.
No need to complicate the patch further by allowing either exact matches or line 0 columns if it's non-trivial, just noting this and checking whether it's an important property or just a matter of convenience.
https://github.com/llvm/llvm-project/pull/132286
More information about the llvm-commits
mailing list