15#ifndef LIEF_PDB_INFO_H
16#define LIEF_PDB_INFO_H
52 static std::unique_ptr<DebugInfo>
from_file(
const std::string& pdb_path);
73 std::unique_ptr<Type>
find_type(
const std::string& name)
const;
111inline std::unique_ptr<DebugInfo>
load(
const std::string& pdb_path) {
This class provides a generic interface for accessing debug information from different formats such a...
Definition Abstract/DebugInfo.hpp:38
DebugInfo(std::unique_ptr< details::DebugInfo > impl)
FORMAT
Definition Abstract/DebugInfo.hpp:41
@ PDB
Definition Abstract/DebugInfo.hpp:43
Definition iterators.hpp:486
Definition optional.hpp:23
std::string to_string() const
Pretty representation.
uint32_t age() const
The number of times the PDB file has been written.
iterator_range< Type::Iterator > types_it
Iterator over the PDB's types.
Definition PDB/DebugInfo.hpp:48
DebugInfo(std::unique_ptr< details::DebugInfo > impl)
iterator_range< PublicSymbol::Iterator > public_symbols_it
Iterator over the symbols located in the PDB public symbol stream.
Definition PDB/DebugInfo.hpp:45
compilation_units_it compilation_units() const
Iterator over the CompilationUnit from the PDB's DBI stream. CompilationUnit are also named "Module" ...
~DebugInfo() override=default
static bool classof(const LIEF::DebugInfo *info)
Definition PDB/DebugInfo.hpp:58
iterator_range< CompilationUnit::Iterator > compilation_units_it
Iterator over the CompilationUnit.
Definition PDB/DebugInfo.hpp:42
FORMAT format() const override
Definition PDB/DebugInfo.hpp:54
friend std::ostream & operator<<(std::ostream &os, const DebugInfo &dbg)
Definition PDB/DebugInfo.hpp:100
public_symbols_it public_symbols() const
Return an iterator over the public symbol stream.
std::unique_ptr< Type > find_type(const std::string &name) const
Find the type with the given name.
optional< uint64_t > find_function_address(const std::string &name) const override
Attempt to resolve the address of the function specified by name.
std::unique_ptr< PublicSymbol > find_public_symbol(const std::string &name) const
Try to find the PublicSymbol from the given name (based on the public symbol stream).
static std::unique_ptr< DebugInfo > from_file(const std::string &pdb_path)
Instantiate this class from the given PDB file. It returns a nullptr if the PDB can't be processed.
types_it types() const
Return an iterator over the different types registered in this PDB.
std::string guid() const
Unique identifier of the PDB file.
Definition PDB/Function.hpp:32
Definition BuildMetadata.hpp:24
std::unique_ptr< DebugInfo > load(const std::string &pdb_path)
Load the PDB file from the given path.
Definition PDB/DebugInfo.hpp:111
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:41