slower has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monks,
I'm having trouble with a memory leak in XS code that occurs whenever I catch a C++ exception, then croak. I would appreciate your advice as to whether this is a problem with my XS code, or with Perl itself.
I can reproduce the problem in a trivial test library, libfoo:
foo.h ------------------------------------------------------ class Foo { public: void bar(); };
foo.cpp ---------------------------------------------------- #include <stdexcept> #include "foo.h" void Foo::bar() { throw std::runtime_error("oh no!"); }
Here is the XS glue:
Foo.xs ----------------------------------------------------- void Foo::bar() CODE: try { THIS->bar(); } catch (const std::runtime_error &e) { croak("Foo::bar threw a runtime error!"); }
My Perl test script just instantiates Foo and calls bar() in an eval block n times. For n=1000, valgrind reports the following on RHEL5, x64, Perl 5.12.2:
30,969 bytes in 999 blocks are possibly lost in loss record 1,064 of 1 +,069 at 0x4A0666E: operator new(unsigned long) (vg_replace_malloc.c:220) by 0x929F070: std::string::_Rep::_S_create(unsigned long, unsigned +long, std::allocator<char> const&) (new_allocator.h:89) by 0x929FCA4: char* std::string::_S_construct<char const*>(char con +st*, char const*, std::allocator<char> const&, std::forward_iterator_ +tag) (basic_string.tcc:139) by 0x929FE41: std::basic_string<char, std::char_traits<char>, std:: +allocator<char> >::basic_string(char const*, std::allocator<char> con +st&) (basic_string.h:1546) by 0x8FFEABF: Foo::bar() (foo.cpp:6) by 0x8DFC856: XS_Foo_bar (in /home/slower/dev/xstest/src/blib/arch/ +auto/Foo/Foo.so) by 0x49291F: Perl_pp_entersub (in /usr/local/perl/5.12.2-gcc443-rhe +l5-64/bin/perl) by 0x490D35: Perl_runops_standard (in /usr/local/perl/5.12.2-gcc443 +-rhel5-64/bin/perl) by 0x43410B: perl_run (in /usr/local/perl/5.12.2-gcc443-rhel5-64/bi +n/perl) by 0x41E51B: main (in /usr/local/perl/5.12.2-gcc443-rhel5-64/bin/pe +rl) 143,856 bytes in 999 blocks are possibly lost in loss record 1,068 of +1,069 at 0x4A05E1C: malloc (vg_replace_malloc.c:195) by 0x92BF206: __cxa_allocate_exception (eh_alloc.cc:102) by 0x8FFEACD: Foo::bar() (foo.cpp:6) by 0x8DFC856: XS_Foo_bar (in /home/slower/dev/xstest/src/blib/arch/ +auto/Foo/Foo.so) by 0x49291F: Perl_pp_entersub (in /usr/local/perl/5.12.2-gcc443-rhe +l5-64/bin/perl) by 0x490D35: Perl_runops_standard (in /usr/local/perl/5.12.2-gcc443 +-rhel5-64/bin/perl) by 0x43410B: perl_run (in /usr/local/perl/5.12.2-gcc443-rhel5-64/bi +n/perl) by 0x41E51B: main (in /usr/local/perl/5.12.2-gcc443-rhel5-64/bin/pe +rl)
These leaks completely disappear if either 1) Foo::bar doesn't throw an exception, or 2) Foo.xs catches the exception and doesn't croak. I have also confirmed the leak on the following platforms, though valgrind isn't available or doesn't detect it. Watching the memory usage of the test script reveals the leak in these cases (usage increases linearly with the value of n):
The only platform available to me where the leak does not occur is Windows 7, x32, Perl 5.10.0.
Thanks,
m.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Memory leak in XS code that handles C++ exceptions
by davido (Cardinal) on Oct 03, 2013 at 00:36 UTC | |
|
Re: Memory leak in XS code that handles C++ exceptions
by bulk88 (Priest) on Oct 03, 2013 at 02:31 UTC | |
by slower (Acolyte) on Oct 03, 2013 at 14:53 UTC | |
|
Re: Memory leak in XS code that handles C++ exceptions
by Anonymous Monk on Oct 03, 2013 at 08:47 UTC | |
|
Re: Memory leak in XS code that handles C++ exceptions
by Anonymous Monk on Oct 03, 2013 at 01:27 UTC |