[all-commits] [llvm/llvm-project] b7af1b: [lldb/DWARF] Simplify DWARFDebugInfoEntry::LookupA...
Pavel Labath via All-commits
all-commits at lists.llvm.org
Mon Jan 20 03:43:49 PST 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: b7af1bfa6e31a2a896e8a94a7f086914719e7d5d
https://github.com/llvm/llvm-project/commit/b7af1bfa6e31a2a896e8a94a7f086914719e7d5d
Author: Pavel Labath <pavel at labath.sk>
Date: 2020-01-20 (Mon, 20 Jan 2020)
Changed paths:
M lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
M lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
M lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
Log Message:
-----------
[lldb/DWARF] Simplify DWARFDebugInfoEntry::LookupAddress
Summary:
This method was doing a lot more than it's only caller needed
(DWARFDIE::LookupDeepestBlock) needed, so I inline it into the caller,
and remove any code which is not actually used. This includes code for
searching for the deepest function, and the code for working around
incomplete DW_AT_low_pc/high_pc attributes on a compile unit DIE (modern
compiler get this right, and this method is called on function DIEs
anyway).
This also improves our llvm consistency, as llvm::DWARFDebugInfoEntry is
just a very simple struct with no nontrivial logic.
Reviewers: JDevlieghere, aprantl
Subscribers: lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D72920
More information about the All-commits
mailing list