MAP file analysis - where#39;s my code size comes from?(MAP 文件分析 - 我的代码大小从何而来?)
问题描述
我正在寻找一种工具来简化对大型 C++ 项目 (VC6) 的链接器映射文件的分析.
I am looking for a tool to simplify analysing a linker map file for a large C++ project (VC6).
在维护期间,二进制文件稳定增长,我想弄清楚它的来源.我怀疑在不同 DLL 之间共享的库中存在一些过度热心的模板扩展,但是浏览地图文件并没有提供很好的线索.
During maintenance, the binaries grow steadily and I want to figure out where it comes from. I suspect some overzealeous template expansion in a library shared between different DLL's, but jsut browsign the map file doesn't give good clues.
有什么建议吗?
推荐答案
这个是一个很棒的编译器生成的地图文件分析/资源管理器/查看器工具.检查是否可以浏览 gcc 生成的地图文件.
This is a wonderful compiler generated map file analysis/explorer/viewer tool. Check if you can explore gcc generated map file.
amap :分析 32 位 Visual Studio 编译器生成的 .MAP 文件并报告数据和代码使用的内存量的工具.此应用还可以读取和分析由 Xbox360、Wii 和 PS3 编译器生成的 MAP 文件.
这篇关于MAP 文件分析 - 我的代码大小从何而来?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MAP 文件分析 - 我的代码大小从何而来?


基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01