How to check for memory leaks in Guile extension modules? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T20:29:28Zhttp://stackoverflow.com/feeds/question/78900http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/78900/how-to-check-for-memory-leaks-in-guile-extension-modules2How to check for memory leaks in Guile extension modules?Omer Zak2008-09-17T01:22:56Z2008-09-17T01:38:24Z
<p>I develop an extension module for Guile, written in C. This extension module embeds a Python interpreter.</p>
<p>Since this extension module invokes the Python interpreter, I need to verify that it properly manages the memory occupied by Python objects. </p>
<p>I found that the Python interpreter is well-behaved in its own memory handling, so that by running valgrind I can find memory leaks due to bugs in my own Python interpreter embedding code, if there are no other interfering factors. </p>
<p>However, when I run Guile under valgrind, valgrind reports memory leaks. Such memory leaks obscure any memory leaks due to my own code. </p>
<p>The question is what can I do to separate memory leaks due to bugs in my code from memory leaks reported by valgrind as due to Guile. Another tool instead of valgrind? Special valgrind options? Give up and rely upon manual code walkthrough?</p>
http://stackoverflow.com/questions/78900/how-to-check-for-memory-leaks-in-guile-extension-modules/78990#789903Answer by Allen for How to check for memory leaks in Guile extension modules?Allen2008-09-17T01:38:24Z2008-09-17T01:38:24Z<p>You've got a couple options. One is to write a supressions file for valgrind that turns off reporting of stuff that you're not working on. Python has such a file, for example:
<a href="http://svn.python.org/projects/python/trunk/Misc/valgrind-python.supp" rel="nofollow">http://svn.python.org/projects/python/trunk/Misc/valgrind-python.supp</a></p>
<p>If valgrind doesn't like your setup, another possibility is using <code>libmudflap</code>; you compile your program with <code>gcc -fmudflap -lmudflap</code>, and the resulting code is instrumented for pointer debugging. Described in the gcc docs, and here: <a href="http://gcc.gnu.org/wiki/Mudflap_Pointer_Debugging" rel="nofollow">http://gcc.gnu.org/wiki/Mudflap_Pointer_Debugging</a></p>