19 个不稳定版本
0.11.0 | 2023年12月13日 |
---|---|
0.10.4 | 2022年11月15日 |
0.10.2 | 2022年7月25日 |
0.7.1 | 2021年10月3日 |
0.4.0 | 2021年6月13日 |
#55 在 调试 中
21,066 每月下载量
用于 17 个crates (直接使用4个)
115KB
2K SLoC
pdb-addr2line
通过PDB文件解析地址到函数名称,以及到文件名和行号信息。支持内联堆栈。
此crate的API旨在与addr2line
crate的API相似;两个Context
API具有相似的功能。此crate用于PDB文件,而addr2line
用于DWARF数据(例如在ELF和mach-o二进制文件中使用的)。
此crate还有一个TypeFormatter
API,可以用来独立于Context
获取函数签名字符串。
要创建一个Context
,请使用ContextPdbData
。
实现使用了优秀的pdb
crate。
示例
use pdb_addr2line::pdb; // (this is a re-export of the pdb crate)
fn look_up_addresses<'s, S: pdb::Source<'s> + 's>(stream: S, addresses: &[u32]) -> std::result::Result<(), pdb_addr2line::Error> {
let pdb = pdb::PDB::open(stream)?;
let context_data = pdb_addr2line::ContextPdbData::try_from_pdb(pdb)?;
let context = context_data.make_context()?;
for address in addresses {
if let Some(procedure_frames) = context.find_frames(*address)? {
eprintln!("0x{:x} - {} frames:", address, procedure_frames.frames.len());
for frame in procedure_frames.frames {
let line_str = frame.line.map(|l| format!("{}", l));
eprintln!(
" {} at {}:{}",
frame.function.as_deref().unwrap_or("<unknown>"),
frame.file.as_deref().unwrap_or("??"),
line_str.as_deref().unwrap_or("??"),
)
}
} else {
eprintln!("{:x} - no frames found", address);
}
}
Ok(())
}
命令行使用
此仓库还包含一个模仿addr2line的CLI可执行文件。您可以使用cargo install
进行安装
cargo install --examples pdb-addr2line
以下是一些示例用法
$ curl -o dcomp.pdb -L "https://msdl.microsoft.com/download/symbols/dcomp.pdb/648B8DD0780A4E22FA7FA89B84633C231/dcomp.pdb"
$ pdb-addr2line --exe dcomp.pdb -fC 0x59aa0 0x52340 0x13498
Windows::UI::Composition::Compositor::Api::CreateScalarKeyFrameAnimation(Windows::UI::Composition::IScalarKeyFrameAnimation**)
??:?
std::map<unsigned int, Windows::UI::Composition::AnimationLoggingManager::ReferencedObject, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, Windows::UI::Composition::AnimationLoggingManager::ReferencedObject> > >::_Try_emplace<unsigned int const&>(unsigned int const&)
??:?
DirectComposition::CDxDevice::RemoveGuardRect(ID3D11Texture2D*)
??:?
$ curl -o mozglue.pdb -L "https://github.com/mstange/profiler-get-symbols/raw/master/fixtures/win64-ci/mozglue.pdb"
$ pdb-addr2line -e mozglue.pdb -psfi 0x3b9fb
mozilla::JSONWriter::StartCollection(char const*, char const*, mozilla::JSONWriter::CollectionStyle) at JSONWriter.h:318
(inlined by) mozilla::JSONWriter::StartArrayProperty(char const*, mozilla::JSONWriter::CollectionStyle) at JSONWriter.h:417
(inlined by) mozilla::JSONWriter::StartArrayElement(mozilla::JSONWriter::CollectionStyle) at JSONWriter.h:422
(inlined by) mozilla::baseprofiler::AutoArraySchemaWriter::AutoArraySchemaWriter(mozilla::baseprofiler::SpliceableJSONWriter&, mozilla::baseprofiler::UniqueJSONStrings&) at ProfileBufferEntry.cpp:141
(inlined by) mozilla::baseprofiler::WriteSample(mozilla::baseprofiler::SpliceableJSONWriter&, mozilla::baseprofiler::UniqueJSONStrings&, mozilla::baseprofiler::ProfileSample const&) at ProfileBufferEntry.cpp:361
(inlined by) mozilla::baseprofiler::ProfileBuffer::StreamSamplesToJSON::<unnamed-tag>::operator()(mozilla::ProfileChunkedBuffer::Reader*) const at ProfileBufferEntry.cpp:809
性能
pdb-addr2line
通过缓存解析信息优化速度,尽可能懒惰地解析内联、文件和行号等调试信息。
许可证
许可协议为以下之一
- Apache许可证,版本2.0(
LICENSE-APACHE
或 https://apache.ac.cn/licenses/LICENSE-2.0) - MIT许可证(
LICENSE-MIT
或 http://opensource.org/licenses/MIT)
任由您选择。
除非您明确说明,否则根据Apache-2.0许可证定义,您有意提交以包含在作品中的任何贡献,将按上述方式双重许可,没有任何附加条款或条件。
依赖项
~1.5-2MB
~43K SLoC