【问题标题】:Is there any way to convert symbol names into function names? [duplicate]有没有办法将符号名称转换为函数名称? [复制]
【发布时间】:2021-07-14 14:52:20
【问题描述】:

例如 callq 401400 <_ZNSaIcEC1Ev@plt> 我想知道这个函数的名字

我的编译器是 g++

【问题讨论】:

标签: c++ decompiler


【解决方案1】:

您可以使用应该包含在编译器中的c++filt 工具。示例:

$ echo 'callq 401400 <_ZNSaIcEC1Ev@plt>' | c++filt
callq 401400 <std::allocator<char>::allocator()@plt>

【讨论】:

  • 查看我的欺骗标签
猜你喜欢
  • 2020-05-12
  • 1970-01-01
  • 2020-09-27
  • 2014-05-01
  • 1970-01-01
  • 2012-06-18
  • 1970-01-01
  • 2013-08-02
  • 2020-07-06
相关资源
最近更新 更多