不同机器上的Valgrind输出不同

时间:2015-08-12 18:09:12

标签: c++ linux memory-leaks valgrind

我有一个奇怪的情况,一台机器的Valgrind输出与完全相同的可执行文件在另一台机器上的输出不同。

我正在用C ++编写一个Windows注册表读/写库,我一直在努力编写代码。所以我一直在运行Valgrind并修复内存泄漏,因为它们是通过一系列单元测试生成的可执行文件引入的。

我的主要开发PC运行Linux Mint Debian Edition x86_64。一个周末,我将我的存储库克隆到运行Arch x86_64的笔记本电脑上,我开始在Valgrind中出现内存泄漏(或者更确切地说,仍然可以访问的块)。经过大量的头发拉动,我意识到即使是最后一次在Mint DE上清洁的提交也显示出Arch的漏洞。我还注意到Arch盒子上的allocs数量超过了四倍,但我不知道这是否意味着什么。

以下是我在两台机器上使用相同exe的内容(在一台机器上编译并复制到另一台机器上):

Mint DE x86_64:

valgrind --leak-check=full --show-leak-kinds=all ./regnixtest
==12248== Memcheck, a memory error detector
==12248== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==12248== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info
==12248== Command: ./regnixtest
==12248== 
Testing Create Valid NK...passed
[ normal command output snipped for brevity ]
==12248== 
==12248== HEAP SUMMARY:
==12248==     in use at exit: 0 bytes in 0 blocks
==12248==   total heap usage: 603 allocs, 603 frees, 608,657,070 bytes allocated
==12248== 
==12248== All heap blocks were freed -- no leaks are possible
==12248== 
==12248== For counts of detected and suppressed errors, rerun with: -v
==12248== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)

Arch x86_64:

valgrind --leak-check=full --show-leak-kinds=all ./regnixtest 
==5006== Memcheck, a memory error detector
==5006== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==5006== Using Valgrind-3.10.1 and LibVEX; rerun with -h for copyright info
==5006== Command: ./regnixtest
==5006== 
Testing Create Valid NK...passed
[ normal command output snipped for brevity ]
==5006== 
==5006== HEAP SUMMARY:
==5006==     in use at exit: 72,704 bytes in 1 blocks
==5006==   total heap usage: 2,927 allocs, 2,926 frees, 608,844,359 bytes allocated
==5006== 
==5006== 72,704 bytes in 1 blocks are still reachable in loss record 1 of 1
==5006==    at 0x4C29F90: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==5006==    by 0x4EC01EF: pool (eh_alloc.cc:117)
==5006==    by 0x4EC01EF: __static_initialization_and_destruction_0 (eh_alloc.cc:244)
==5006==    by 0x4EC01EF: _GLOBAL__sub_I_eh_alloc.cc (eh_alloc.cc:307)
==5006==    by 0x400F0E9: call_init.part.0 (in /usr/lib/ld-2.21.so)
==5006==    by 0x400F1FA: _dl_init (in /usr/lib/ld-2.21.so)
==5006==    by 0x4000DB9: ??? (in /usr/lib/ld-2.21.so)
==5006== 
==5006== LEAK SUMMARY:
==5006==    definitely lost: 0 bytes in 0 blocks
==5006==    indirectly lost: 0 bytes in 0 blocks
==5006==      possibly lost: 0 bytes in 0 blocks
==5006==    still reachable: 72,704 bytes in 1 blocks
==5006==         suppressed: 0 bytes in 0 blocks
==5006== 
==5006== For counts of detected and suppressed errors, rerun with: -v
==5006== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)

这是我的Arch盒子上的一个库的问题吗?下面是每个ldd的输出,以防任何光线:

Mint DE x86_64:

ldd ./regnixtest
linux-vdso.so.1 (0x00007ffc76ffc000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f080dcaa000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f080d9a9000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f080d792000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f080d3e9000)
/lib64/ld-linux-x86-64.so.2 (0x00007f080dfd2000)

Arch x86_64:

ldd ./regnixtest
linux-vdso.so.1 (0x00007ffd81bd5000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007fcf9d788000)
libm.so.6 => /usr/lib/libm.so.6 (0x00007fcf9d484000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007fcf9d26e000)
libc.so.6 => /usr/lib/libc.so.6 (0x00007fcf9cecc000)
/lib64/ld-linux-x86-64.so.2 (0x00007fcf9db0a000)

这个项目最终将是开源的,但我还没准备好将代码放在那里。如果它会有所帮助,我可以继续把它放在GitHub上。

1 个答案:

答案 0 :(得分:1)

Mint有gcc 4.x而Arch在撰写本文时有gcc 5.2,所以就是这样。这个简单的程序用g ++ 5.2编译并在Arch上运行,具有相同的valgrind选项,显示出相同的“泄漏”。

int main(void)
{
    return 0;
}

如果您担心隐藏真实问题的噪音,请添加对此警告的抑制。