嵌入式系统的内存错误检测器?
查找嵌入式系统中的内存管理错误最有用的工具是什么? valgrind 有能力做到这一点吗?他们需要什么输入?源代码?物件代码?
如果我使用嵌入式操作系统或独立的嵌入式应用程序,有什么区别吗?
What are the most useful tools for finding memory management errors in embedded systems? Is valgrind capable of doing that? What input do they need? Source code? Object code?
Is there a difference if I am using an embedded OS or a standalone embedded application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们正在做两件事来检测内存问题:
1/预防措施:使用 Grammatech CodeSonar。作为静态分析器,它可以检测内存问题。
2/ 嵌入式控制来监视堆栈和堆使用情况。
3/ 在全局范围内,尝试不使用动态内存分配或至少在固件初始化时限制新关键字的使用。您将避免堆碎片和内存问题。
The two things we are doing to detect memory issue:
1/ Preventive measure : use Grammatech CodeSonar. As a static analyzer, it can detect memory issue.
2/ Embedded control to monitor stack & heap usage.
3/ Globally, try not using dynamic memory allocation or at least restrict the new keyword usage at initialization of the firmware. You will avoid heap fragmentation and memory issue.
我建议您查看 Walter Bright 的 MEM 包。
描述: http://www8.cs.umu.se/~isak/snippets /mem.txt
代码可以在以下位置找到:http://www8.cs.umu.se/~isak/snippets/
I suggest you look into Walter Bright's MEM Package.
Description: http://www8.cs.umu.se/~isak/snippets/mem.txt
The code can be found at: http://www8.cs.umu.se/~isak/snippets/