Displaying 3 results from an estimated 3 matches for "dwarfunitvector".
2019 Apr 24
2
[DebugInfo] DWARF C API
...*) const (DWARFDataExtractor.cpp:27)
by 0x5071C2F: llvm::DWARFUnitHeader::extract(llvm::DWARFContext&,
llvm::DWARFDataExtractor const&, unsigned int*, llvm::DWARFSectionKind,
llvm::DWARFUnitIndex const*, llvm::DWARFUnitIndex::Entr y const*)
(DWARFUnit.cpp:254)
by 0x5070BAD: llvm::DWARFUnitVector::addUnitsImpl(llvm::DWARFContext&,
llvm::DWARFObject const&, llvm::DWARFSection const&, llvm::DWARFDebugAbbrev
const*, llvm::DWARFSection const*, llvm::DWARF Section const*,
llvm::StringRef, llvm::DWARFSection const&, llvm::DWARFSection const*,
llvm::DWARFSection const&, bool...
2019 Apr 24
2
[DebugInfo] DWARF C API
Hi folks,
I am trying to implement the C bindings API for DebugInfo::DWARF::DWARFDie.
My goal is to have a C library that reads and parses DWARF debugging format
(just like how llvm-dwarfdump does, but maybe more than just dumping debug
info)
I've started with creating C structure for DebugInfo::DWARF::DWARFContext
which contains all DWARF DIEs in the object file. For this I used
```
2018 Jul 24
2
[DWARF] De-segregating type units and compile units
...ation exists in which object files, and
is not fundamentally changing in DWARF v5.
Patch 1: De-templatize DWARFUnitSection
https://reviews.llvm.org/D49741
Patch 2: The TU collection doesn't need to be a deque
https://reviews.llvm.org/D49742
Patch 3: Rename DWARFUnitSection to DWARFUnitVector
https://reviews.llvm.org/D49743
Patch 4: Unify handling of type and compile units
https://reviews.llvm.org/D49744
Thanks,
--paulr