如何将IAR IDE反汇编窗口内容保存到文件中?

时间:2013-10-24 20:30:41

标签: c embedded disassembly iar

使用IAR IDE从C源构建ARM可执行文件,我可以在相关窗口中看到反汇编,包括标签,地址,操作码和指令。

我试图将一系列地址的内容转储到文本文件中,但找不到办法。窗口文本不可选,因此我无法使用复制/粘贴。没有相关的菜单启用此功能。

作为替代方案,我可以生成列表和汇编文件,但这些似乎仅限于我的代码,并且不包含我感兴趣的CRT代码或任何ROM部分。

任何方式转储选定的地址范围?

2 个答案:

答案 0 :(得分:5)

您想使用位于arm / bin下的Workbench目录中的ielfdumparm。这是该工具的帮助。

Usage:          IElfDump input_file [output_file]

Available command line options:
--all           Dump all sections
--code          Dump only code sections
--no_header     Do not produce a list header
--no_rel_sections
                Do not output associated .rel sections
--no_strtab     Do not include strtab sections
--output file
-o file         Name of text file to create
--raw           Use raw text format
--section #|name[,...]
-s #|name[,...] Dump only section(s) with given numbers/names
--source        Include source in disassembled code in executables
--use_full_std_template_names
                Don't use short names for standard C++ templates
-a              All sections, except strtab sections
-f file         Read command line options from file

要获得与调试视图类似的输出,我建议--code以避免转储数据空间,并--source将原始C嵌入到程序集中。

您可以指定部分,但看起来不像您可以指定地址范围。您可以将其与某些其他ELF工具配对以仅提取特定的地址范围,然后在其上运行此工具。或者,这会按地址顺序转储,因此您可以转储整个ELF文件,然后查看事后的所需地址范围。

答案 1 :(得分:1)

我使用Snagit捕获不可选择的文本。 Snagit是一个屏幕快照工具(非常好)。除了制作经典的屏幕截图外,它还支持捕获文本并将其保存为ASCII文本。它还可以自动滚动窗口以捕获长文本。

也许值得一试。有30天试用版。