行业解决方案
查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-18 11: 04: 59
Action name:MakeRptCmt
This command allows you to enter a repeatable comment.A repeatable comment will appear attached to the current item and all other items referencing it.
If you stand at the function start,IDA will ask you to enter a function comment.
If this command is issued in the structures window,it allows you to change the comment of a structure or structure member.If the cursor is on the structure name,the structure comment will be changed,otherwise the member comment will be changed.
Otherwise,this command allows you to enter a repeatable comment for the current item.
You cannot enter repeatable segment comments.
All items that refer to the current item will have this comment by default.
Note that if you have defined both comment types(regular and repeatable),the regular comment will be displayed for the current item and the repeatable comment will be displayed for all items that refer to the current item,if they do not have their own comments.
The repeatable comments may be used to describe subroutines,data items etc.,because all calls to the subroutine will have the repeatable comment.
You can show/hide all comments in the Comments Dialog.
You can show and hide repeatable comments in the Comments Dialog.
See also
以下为中文翻译:
动作名称: MakeRptCmt
这个命令允许你输入一个可重复的注释。可重复的评论将附加到当前项目和引用它的所有其他项目。
如果你站在函数开头,IDA 会要求你输入函数注释。
如果在结构窗口中发出此命令,它允许您更改结构或结构成员的注释。如果光标在结构体名称上,则改变结构体注释,否则改变成员注释。
否则,此命令允许您为当前项目输入可重复的注释。
您不能输入可重复的句段注释。
默认情况下,所有引用当前项目的项目都将具有此注释。
请注意,如果您定义了两种评论类型(常规评论和可重复评论),
则将为当前项目显示常规评论,如果引用当前项目的所有项目没有自己的评论,则将显示可重复评论。
可重复注释可用于描述子程序、数据项等,因为所有对子程序的调用都会有可重复注释。
您可以在评论对话框中显示/隐藏所有评论。
您可以在评论对话框中显示和隐藏可重复的评论。
展开阅读全文
︾
读者也喜欢这些内容:
IDA C反编译怎么看指针结构体 IDA C反编译结构体怎么重建字段
在IDA里看C反编译结果时,结构体相关内容之所以会显得乱,很多时候不是反编译器完全看不出来,而是当前变量还停留在无类型指针、整数偏移或不完整联合体的状态。Hex-Rays官方文档明确提到,Set type可以显著改变输出结果并减少多余强转;反过来,如果对象还是void指针或类型信息不足,反编译结果的可读性就会明显下降。...
阅读全文 >
IDA分析dsp怎么选处理器模块 IDA分析dsp反汇编全是数据段怎么处理
用IDA分析DSP时,处理器模块选错会直接把指令当成数据,反汇编窗口看起来就像整段都是字节数组。更麻烦的是,你一旦在错误模块下做了大量标注与重命名,后面再换模块会发现视图和引用关系全变了。正确做法是先把处理器模块与装载口径选对,再让IDA完成一次稳定的自动分析,然后再进入深挖。...
阅读全文 >
IDA反编译c++怎么看类结构 IDA反编译c++虚函数表怎么识别
用IDA反编译C++时,类结构还原与虚函数表识别是一体两面。你先把vptr写入点和成员偏移搞清楚,伪代码里的this指针与结构体字段才会“长”出来。下面按可操作路径讲清楚,先看类结构怎么搭起来,再看虚函数表怎么定位与命名,最后给一套反推校对的方法,方便你在大型工程里快速闭环。...
阅读全文 >
IDA Pro反汇编代码怎么加注释 IDA Pro反汇编代码怎么导出成文本
在IDA Pro里做静态分析,注释是把你的判断依据固定下来的关键动作,后续复盘、交接、做对比数据库时都靠它来省时间。导出成文本则更偏向分享与留档,既可以把当前反汇编视图写成可读的清单,也能按需要导出成ASM或LST文件,便于外部检索与对照。...
阅读全文 >