计算静态分配的内存量
给定一个包含多个源文件的大型 C 项目,什么是计算它将使用多少静态分配内存的有效方法?
如果问题不够清楚,该值的一个很好的近似值是
Σ sizeof(x),其中 x 是一个数组
,可以在编译时获得。
Given a large C project with multiple source files, what is an efficient way of figuring out how much statically allocated memory will it use?
In case the question is not clear enough, a good approximation for the value would be
Σ sizeof(x), where x is an array
and can be obtained at compile time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
构建它,然后使用检查生成的二进制文件的工具,因为它将包含此信息。
使用哪些工具取决于平台,在 Linux 上您可以尝试
nm
和/或objdump
。Build it, and then use tools that inspect the resulting binary, since it will contain this information.
Which tools to use depends on the platform, on Linux you might try
nm
and/orobjdump
.