从已解析的名称获取标记名称 [英] Getting mangled name from demangled name

查看:179
本文介绍了从已解析的名称获取标记名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有任何方法可以从g ++中的解析名称中找回错误的名称。

Is there any way to get back the mangled name from demangled name in g++.

例如,我有解密的名称 func char *,int),我应该怎么做才能得到错误的名字 _Z4funcPci 回来?

For example , I have the demangled name func(char*, int), what should I do to get the mangled name i.e _Z4funcPci back?

我的问题是g ++特定的。

My question is g++ specific.

推荐答案

g ++编译一个空函数与您需要的签名,并从中提取名称。例如:

You can simply use g++ to compile an empty function with the signature you require and extract the name from that. For example:

echo "int f1(char *, int) {} " | g++ -x c++ -S - -o- | grep "^_.*:$" | sed -e 's/:$//'

给出输出

_Z2f1Pci

你需要什么。请确保您包含任何相关的头文件,因为它们会影响符号的破坏方式。

which is I think what you require. Make sure that you include any relevant header files as they will affect the way the symbols are mangled.

这篇关于从已解析的名称获取标记名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆