How to see heap and stack usage of a function in c using valgrind?

I am working on a embedded system. We have limited stack and heap in our embedded system typically 64k (ram). I am trying to use polar-ssl library calls. Is there any tools which tells how much stack and heap memory is used by a C function?

Is there any option is in valgrind which prints the following:

  • Stack and heap usage of a function.
  • Call trace of functions which calls internally malloc with no of bytes.

  • There is a valgrind tool massif that measures how much heap memory an application uses. Similarly memcheck can give you stack trace. More explanation here

    http://wiki.eclipse.org/Linux_Tools_Project/Valgrind/User_Guide#Analyzing_Memcheck_Profile_Results

    链接地址: http://www.djcxy.com/p/59122.html

    上一篇: ManyToOne与where子句

    下一篇: 如何在c中使用valgrind查看函数堆和堆栈的使用情况?