【Visual Leak Detector】配置项 ForceIncludeModulesmd

打印 上一主题 下一主题

主题 819|帖子 819|积分 2457

说明

使用 VLD 内存泄漏检测工具辅助开发时整理的学习笔记。本篇介绍 VLD 配置文件中配置项 ForceIncludeModules 的使用方法。 同系列文章目录可见 《内存泄漏检测工具》目录

目录


1. 配置文件使用说明

在程序中通过 #include "vld.h" 的方式检测内存泄漏时,VLD 首先会尝试在程序的生成目录下读取 vld.ini 文件,若未读取成功,则会尝试在 VLD 的安装目录下读取 vld.ini 文件,若仍未读取成功,则会使用内置的默认配置,内置的默认配置如果不动源码是无法更改的,因此通过修改相应目录下的 vld.ini 文件来定制 VLD 功能是最好的选择。当配置参数等号右边为空,或者给配置了不合法值时,在使用过程中会被程序重置到默认值。
2. 设置需要检测的第三方模块

参数名:ForceIncludeModules。
有效赋值:包含模块名的列表。
默认值:无。
功能说明:当需要对第三方模块(exe、lib、dll)进行内存泄漏检测,但又没法在这些模块的源码中 #include "vld.h" 时,可以在等号右边列出这些模块的名称,模块之间可使用任意分隔符,甚至不分隔也可以,但为了便于阅读,通常使用空格、; 或 , 来进行分隔。需要注意的是,这个功能开启后程序有崩溃的风险,有时候还会输出错误的内存泄漏报告
2.1 测试代码
  1. #include <QCoreApplication>
  2. #include "vld.h"
  3. #include "testdll1.h"
  4. #include "testdll2.h"
  5. int main(int argc, char *argv[])
  6. {
  7.     QCoreApplication a(argc, argv);
  8.     TestDll1 aaa;
  9.     aaa.testFun(1);
  10.     TestDll2 bbb;
  11.     bbb.testFun(2);
  12.     return a.exec();
  13. }
复制代码
测试环境:QT 5.9.2MSVC 2015 32bitDebug 模式,VLD 版本为 2.5.1,VLD 配置文件只对该参数做修改,测试工程所在路径为:E:\Cworkspace\Qt 5.9\QtDemo\testVLD。其中的 testdll1 与 testdll2 是为了测试而打包的库,两个库里的函数都存在内存泄漏。
2.2 ForceIncludeModules 为空时的输出

标准输出窗显示:
  1. testDLL1 ptr = 00840bc0, *ptr = 00000001.
  2. testDLL2 ptr = 00840b90, *ptr = 00000002.
复制代码
VLD 输出报告:
  1. Visual Leak Detector read settings from: D:\Program Files (x86)\Visual Leak Detector\vld.ini
  2. Visual Leak Detector Version 2.5.1 installed.
  3. No memory leaks detected.
  4. Visual Leak Detector is now exiting.
复制代码
2.3 ForceIncludeModules = 指定库时的输出

以下 ForceIncludeModules 配置的效果相同:
  1. ForceIncludeModules = testDll1.dll;testDll2.dll         // 使用英文分号做分隔符
  2. ForceIncludeModules = testDll1.dll,testDll2.dll         // 使用英文逗号做分隔符
  3. ForceIncludeModules = testDll1.dll testDll2.dll         // 使用空格做分隔符
  4. ForceIncludeModules = testDll1.dll/testDll2.dll         // 使用斜杠做分隔符
  5. ForceIncludeModules = testDll1.dll-testDll2.dll         // 使用减号做分隔符
  6. ForceIncludeModules = testDll1.dlltestDll2.dll          // 不使用任何分隔符
  7. ForceIncludeModules = testDll1.dllabcdefghtestDll2.dll  // 使用字符串abcdefgh做分隔符
  8. ForceIncludeModules = testDll1.dll++++++testDll2.dll    // 使用字符串++++++做分隔符
复制代码
标准输出窗显示:
  1. testDLL1 ptr = 00e070f8, *ptr = 00000001.
  2. testDLL2 ptr = 00e072a8, *ptr = 00000002.
复制代码
VLD 输出报告:
  1. Visual Leak Detector read settings from: D:\Program Files (x86)\Visual Leak Detector\vld.ini
  2. Visual Leak Detector Version 2.5.1 installed.
  3.     Forcing inclusion of these modules in leak detection: testdll1.dll;testdll2.dll
  4. WARNING: Visual Leak Detector detected memory leaks!
  5. ---------- Block 1 at 0x00E070F8: 4 bytes ----------
  6.   Leak Hash: 0x8BB01C20, Count: 1, Total 4 bytes
  7.   Call Stack (TID 14012):
  8.     ucrtbased.dll!malloc()
  9.     f:\dd\vctools\crt\vcstartup\src\heap\new_scalar.cpp (19): testDll1.dll!operator new() + 0x9 bytes
  10.     e:\cworkspace\qt 5.9\qtdemo\testdll1\testdll1.cpp (10): testDll1.dll!TestDll1::testFun() + 0x7 bytes
  11.     e:\cworkspace\qt 5.9\qtdemo\testvld\main.cpp (11): testVLD.exe!main() + 0xB bytes
  12.     f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (74): testVLD.exe!invoke_main() + 0x1B bytes
  13.     f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (264): testVLD.exe!__scrt_common_main_seh() + 0x5 bytes
  14.     f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (309): testVLD.exe!__scrt_common_main()
  15.     f:\dd\vctools\crt\vcstartup\src\startup\exe_main.cpp (17): testVLD.exe!mainCRTStartup()
  16.     KERNEL32.DLL!BaseThreadInitThunk() + 0x19 bytes
  17.     ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0x11E bytes
  18.     ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0xEE bytes
  19.   Data:
  20.     01 00 00 00                                                  ........ ........
  21. ---------- Block 2 at 0x00E072A8: 4 bytes ----------
  22.   Leak Hash: 0x08AA1CDB, Count: 1, Total 4 bytes
  23.   Call Stack (TID 14012):
  24.     ucrtbased.dll!malloc()
  25.     f:\dd\vctools\crt\vcstartup\src\heap\new_scalar.cpp (19): testDll2.dll!operator new() + 0x9 bytes
  26.     e:\cworkspace\qt 5.9\qtdemo\testdll2\testdll2.cpp (10): testDll2.dll!TestDll2::testFun() + 0x7 bytes
  27.     e:\cworkspace\qt 5.9\qtdemo\testvld\main.cpp (14): testVLD.exe!main() + 0xB bytes
  28.     f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (74): testVLD.exe!invoke_main() + 0x1B bytes
  29.     f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (264): testVLD.exe!__scrt_common_main_seh() + 0x5 bytes
  30.     f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (309): testVLD.exe!__scrt_common_main()
  31.     f:\dd\vctools\crt\vcstartup\src\startup\exe_main.cpp (17): testVLD.exe!mainCRTStartup()
  32.     KERNEL32.DLL!BaseThreadInitThunk() + 0x19 bytes
  33.     ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0x11E bytes
  34.     ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0xEE bytes
  35.   Data:
  36.     02 00 00 00                                                  ........ ........
  37. Visual Leak Detector detected 2 memory leaks (80 bytes).
  38. Largest number used: 80 bytes.
  39. Total allocations: 80 bytes.
  40. Visual Leak Detector is now exiting.
复制代码
2.4 输出结果对比


  • 当 ForceIncludeModules 为空时,没有检测出动态库里的内存泄漏。
  • 当 ForceIncludeModules 指定了库 testDll1.dll 与 testDll2.dll 时,成功检测到了动态库里的内存泄漏,并指出了文件和行号等信息。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

tsx81429

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表