行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-06-01 16: 51: 05
Action name:SetDemangledNames
IDA can demangle mangled C++names of the most popular C++compilers:
-Microsoft
-Borland
-Watcom
-Visual Age
-GNU
The demangled names are represented in two forms:short and long form.The short form is used when a name is used as a reference,the long form is used at the declaration.
You can set how demangled C++names must be represented:
-as comments.this representation allows you to obtain
recompilable source text
-instead of mangled names.this representation makes the output
more readable.the disadvantage is that you cannot recompile the
output
-don't display demangled names.
You can setup short and long forms of demangled names.Short form is used when a reference to the name is made;long form is used at the declaration.
To make demangled names more readable,we introduce the possibility to suppress pointer modifiers(near/far/huge).
To demangle GNU C v3.x names,the"Assume GCC v3.x names"checkbox should be set,otherwise such names might not be demangled.furthermore,to make the demangled name more compact,unsigned types may be displayed as uchar,uint,ushort,ulong.The same with signed basic types.
If the"Override type info"checkbox is set,the demangled name overrides the type information if both are present.
以下为中文翻译:
操作名称:SetDemangledNames
IDA可以对最流行的C++编译器的C++名称进行分解:
-微软
-宝兰
-沃通
-视觉时代
-GNU
demangled名称用两个表示
形式:短形式和长形式。当名称用作
参考,声明中使用长格式。
您可以设置必须如何表示demangled C++名称:
-作为评论。这种表示法让你获得
可重新编译的源文本
-而不是错位的名字。这种表示使得输出
更具可读性。缺点是不能重新编译
输出
-不要显示损坏的名称。
您可以设置短格式和长格式的demangled名称。使用缩写形式
当提及该名称时;声明中使用长格式。
为了使demangled名称更具可读性,我们引入了以下可能性
抑制指针修饰符(近/远/大)。
要分解GNU C v3.x名称,应设置Assume GCC v3.x名称复选框,
否则这些名称可能不会被删除。
此外,为了使分解后的名称更紧凑,可以显示未签名的类型
作为uchar、uint、ushort、ulong。与带符号的基本类型相同。
如果设置了Override type info复选框,则demangled名称将覆盖
如果两者都存在,则键入信息。
展开阅读全文
︾