-
Enabled caching of DWARF abbreviations. #318
-
Changed the
addr2line
binary to prefer symbol names over DWARF names. #332 -
Updated
gimli
dependency.
-
Added
Context::from_arc_dwarf
. #327
- Fixed parsing of partial units, which are found in supplementary object files. #313
- Updated
gimli
dependency.
-
Changed the order of ranges returned by
Context::find_location_range
, and fixed handling in rare situations. #303 #304 #306 -
Improved the performance of
Context::find_location
. #305
-
Updated
gimli
dependency. -
Deleted
Context::new
,Context::new_with_sup
, andbuiltin_split_dwarf_loader
. UseContext::from_dwarf
orLoader::new
instead. This removesobject
from the public API. #296
-
Fixed handling of column 0 in the line table. #290
-
Moved
addr2line
fromexamples
tobin
. Requires thebin
feature. #291 -
Split up
lib.rs
into smaller modules. #292
- Updated
gimli
andobject
dependencies.
- Updated
gimli
,object
, andfallible-iterator
dependencies.
-
The minimum supported rust version is 1.65.0.
-
Store boxed slices instead of
Vec
objects inContext
. #278
-
The minimum supported rust version is 1.58.0.
-
Changed
Context::find_frames
to returnLookupResult
. UseLookupResult::skip_all_loads
to obtain the result without loading split DWARF. #260 -
Replaced
Context::find_dwarf_unit
withContext::find_dwarf_and_unit
. #260 -
Updated
object
dependency.
- Fix handling of file index 0 for DWARF 5. #264
- Added types and methods to support loading split DWARF:
LookupResult
,SplitDwarfLoad
,SplitDwarfLoader
,Context::preload_units
. #260 #262 #263
- Updated
gimli
andobject
dependencies.
- Updated
object
dependency.
-
Fixed handling of relative path for
DW_AT_comp_dir
. #239 -
Fixed handling of
DW_FORM_addrx
for DWARF 5 support. #243 -
Fixed handling of units that are missing range information. #249
- Updated
gimli
andobject
dependencies.
- Use
skip_attributes
to improve performance. #236
- Updated
gimli
andobject
dependencies.
- Allow
Context
to beSend
. #219
- Don't ignore aranges with address 0. #217
-
Updated
gimli
andobject
dependencies. #215 -
Added
debug_aranges
parameter toContext::from_sections
. #200
-
Fixed handling of Windows paths in locations. #209
-
examples/addr2line: Flush stdout after each response. #210
-
examples/addr2line: Avoid copying every section. #213
- Fix location lookup for skeleton units. #201
- Updated
gimli
andobject
dependencies.
-
Handle units that only have line information. #188
-
Handle DWARF units with version <= 4 and no
DW_AT_name
. #191 -
Fix handling of
DW_FORM_ref_addr
. #193
-
Updated
gimli
andobject
dependencies. -
Added
rustc-dep-of-std
feature. #166
-
Improve performance by parsing function contents lazily. #178
-
Don't skip
.debug_info
and.debug_line
entries with a zero address. #182
- Avoid linear search for
DW_FORM_ref_addr
. #175
-
Handle units with overlapping address ranges. #163
-
Don't assert for functions with overlapping address ranges. #168
-
Updated
gimli
andobject
dependencies. -
Added more optional features:
smallvec
andfallible-iterator
. #160
- Added
Context::dwarf
andContext::find_dwarf_unit
. #159
- Removed
lazycell
dependency. #160
-
Updated
gimli
andobject
dependencies. -
#130 Changed
Location::file
fromOption<String>
toOption<&str>
. This required adding lifetime parameters toLocation
and other structs that contain it. -
#152 Changed
Location::line
andLocation::column
fromOption<u64>
toOption<u32>
. -
#156 Deleted
alloc
feature, and fixedno-std
builds with stable rust. Removed defaultReader
parameter forContext
, and addedObjectContext
instead.
- #134
Added
Context::from_dwarf
.
-
#133 Fixed handling of units that can't be parsed.
-
#155 Fixed
addr2line
output to match binutils. -
#130 Improved
.debug_line
parsing performance. -
#148 #150 #151 #152 Improved
.debug_info
parsing performance.
- #127
Update
gimli
.
- #121
Update
gimli
,object
, andfallible-iterator
dependencies.
- #121
Reexport
gimli
,object
, andfallible-iterator
.
- #107
Update
object
dependency to 0.11. This is part of the public API.