首页 > 其他分享 >【Visual Leak Detector】Release 模式下使用 VLD

【Visual Leak Detector】Release 模式下使用 VLD

时间:2023-04-12 19:55:46浏览次数:45  
标签:exe Leak bytes VLD Visual Detector

说明

使用 VLD 内存泄漏检测工具辅助开发时整理的学习笔记。本篇介绍如何在 Release 模式下使用 VLD。同系列文章目录可见 《内存泄漏检测工具》目录

目录


1. 思路概述

要在 RELEASE 模式下使用 VLD,必须在包含头文件 vld.h 前预先定义 VLD_FORCE_ENABLE 宏(参考 VLD Issues 46):

#define VLD_FORCE_ENABLE
#include "vld.h"

DEBUG 模式一样,可以在代码中使用 VLDGlobalEnableVLDReportLeaksVLDGlobalDisable 等 VLD 库提供的 API,也可以通过提前更改 vld.ini 配置文件,实现对 VLD 功能的定制。API 使用方法可查看 vld.h 头文件或本人同系列文章。

2. 在 QT 中实践

本次测试使用的环境为:QT 5.9.2MSVC 2015 32bitRelease 模式,VLD 版本为 2.5.1,VLD 配置文件不做任何更改使用默认配置,测试工程所在路径为:E:\Cworkspace\Qt 5.9\QtDemo\testVLD。测试代码如下:

#include <QCoreApplication>

#define VLD_FORCE_ENABLE
#include "vld.h"

void testFun(int i)
{
    int *ptr = new int(i);
    printf("ptr = %08x, *ptr = %08x.\n", ptr, *ptr);
}

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    testFun(1);

    return a.exec();
}

运行结束后,标准输出窗中输出以下结果:

ptr = 00e48270, *ptr = 00000001.

程序运行结束后,输出以下报告:

Visual Leak Detector read settings from: D:\Program Files (x86)\Visual Leak Detector\vld.ini
Visual Leak Detector Version 2.5.1 installed.
WARNING: Visual Leak Detector detected memory leaks!
---------- Block 1 at 0x00E48270: 4 bytes ----------
  Leak Hash: 0xBE4F898C, Count: 1, Total 4 bytes
  Call Stack (TID 37180):
    ucrtbase.dll!malloc()
    testVLD.exe!0x00A510FA()
    testVLD.exe!0x00A51059()
    testVLD.exe!0x00A512C6()
    KERNEL32.DLL!BaseThreadInitThunk() + 0x19 bytes
    ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0x11E bytes
    ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0xEE bytes
  Data:
    01 00 00 00                                                  ........ ........


Visual Leak Detector detected 1 memory leak (4 bytes).
Largest number used: 4 bytes.
Total allocations: 4 bytes.
Visual Leak Detector is now exiting.

为了与 DEBUG 模式下的输出做比较,切换为 DEBUG 模式后的输出报告如下:

Visual Leak Detector read settings from: D:\Program Files (x86)\Visual Leak Detector\vld.ini
Visual Leak Detector Version 2.5.1 installed.
WARNING: Visual Leak Detector detected memory leaks!
---------- Block 1 at 0x01123E48: 4 bytes ----------
  Leak Hash: 0x57574D54, Count: 1, Total 4 bytes
  Call Stack (TID 28696):
    ucrtbased.dll!malloc()
    f:\dd\vctools\crt\vcstartup\src\heap\new_scalar.cpp (19): testVLD.exe!operator new() + 0x9 bytes
    e:\cworkspace\qt 5.9\qtdemo\testvld\main.cpp (8): testVLD.exe!testFun() + 0x7 bytes
    e:\cworkspace\qt 5.9\qtdemo\testvld\main.cpp (16): testVLD.exe!main() + 0x7 bytes
    f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (74): testVLD.exe!invoke_main() + 0x1B bytes
    f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (264): testVLD.exe!__scrt_common_main_seh() + 0x5 bytes
    f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl (309): testVLD.exe!__scrt_common_main()
    f:\dd\vctools\crt\vcstartup\src\startup\exe_main.cpp (17): testVLD.exe!mainCRTStartup()
    KERNEL32.DLL!BaseThreadInitThunk() + 0x19 bytes
    ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0x11E bytes
    ntdll.dll!RtlGetAppContainerNamedObjectPath() + 0xEE bytes
  Data:
    01 00 00 00                                                  ........ ........


Visual Leak Detector detected 1 memory leak (40 bytes).
Largest number used: 40 bytes.
Total allocations: 40 bytes.
Visual Leak Detector is now exiting.

比较可知,RELEASE 模式下的报告,调用堆栈信息不够详细,且泄漏总内存中没有用于内存管理头的额外 36 bytes

标签:exe,Leak,bytes,VLD,Visual,Detector
From: https://www.cnblogs.com/young520/p/17311024.html

相关文章

  • 对Docker容器进行取证 CSAW CTF 2022 DockREleakage
    题目信息这是一道非常简单的题目意思是在构建docker时,有些东西泄露了,需要我们在里面找到flag开始我们下载附件,然后解压压缩包tar-xvfdockREleakage.tar.gzx:提取v:显示所有过程f:指定文件这里有一些json文件,是docker构建时的核心文件,我们打开看看都是一行,读起来很不方便,我们格式化......
  • Visual Studio C盘数据迁移,解决C盘空间不足的问题
     迁移原理:将VisualStudio比较占用磁盘空间的“C:\ProgramFiles(x86)\MicrosoftSDKs\”目录和“C:\ProgramFiles(x86)\WindowsKits\”目录移动到D盘,然后通过mklink命令建立C盘和D盘的软连接然后在cmd下执行下面命令即可(如果提示C盘找不到目录,自己手动新建一个即可)......
  • Can't open dsw file in Visual Studio C++ 6.0
    Can'topendswfileinVisualStudioC++6.0 WhenItryto"OpenWorkplace"ofmyproject,visualstudiodoesnothing,solutionexplorerisempty.AlsowhenItrytoopenmyproject,Ioccasionallyseethiserror:Thismakefilewas......
  • Visual Studo for Mac 快捷键
    DefaultKeyboardShortcuts-VisualStudioforMac|MicrosoftLearnCodeNavigationCommandsKeyboardshortcutsFindReferences⇧⌘R, F12GotoDeclaration⌘D, F12NextError⌥⇧⇟, ⇧⌘F12NextIssueinFile⌥⇟PreviousError⌥⇧⇞......
  • 利用Visual Studio新建一个C# Web项目
    首先就是要下载VisualStudio,具体可以登录官网查看下载教程。首次打开VisualStudio,就会显示新建的页面,若是使用过的则根据以下操作进行: 以下界面则与新使用的新建界面一致:选择ASP.NETWeb,点击下一步填写项目名称,选择项目存放的位置,选择框架,点击创建 在这里选择一个空的......
  • IDE-Visual Studio Code
    IDE-VisualStudioCodeVisualStudioCodeisalightweightbutpowerfulsourcecodeeditorwhichrunsonyourdesktopandisavailableforWindows,macOSandLinux.Itcomeswithbuilt-insupportforJavaScript,TypeScriptandNode.jsandhasarichecosy......
  • COMP5048 Visual Analytics
    COMP5048COMP5048VisualAnalytics2023S1Assignment1:IndividualworkDeadline:April6(Week7)Thursday23:59pm(pdfonCanvas)ConstructgoodvisualisationsofFOURofthefollowingdatatoanswerthegiventask.Youcanuseanysuitablelayoutchose......
  • 版本 .NET Framework版本 Visual Studio版本 发布日期 特性
    版本.NETFramework版本VisualStudio版本发布日期特性C#1.0.NETFramework1.0VisualStudio.NET20022002.1委托事件C#1.1.NETFramework1.1VisualStudio.NET20032003.4APM C#2.0.NETFramework2.0VisualStudio2005(开始命名为VisualStudio)2005.......
  • Visual Studio | 我的自定义快捷键
    视图:设置各个视图(窗口)的操作的快捷键设置方式:以Ctrl-W作为前缀组合键,后接各个视图/操作的代号键View.SolutionExplorer:打开|定位到解决方案探索器(文件管理器)键:Ctrl-WF导航:导航到:文件、符号、成员...等对象设置方式:以Ctrl-G作为前缀组合键,后接各个对象的代号键E......
  • Visual Studio | VS 的快捷键设置
    VS版本:2022(英文版)进入快捷键设置界面:Tools->Environment->KeyboardVS中是根据功能(函数)映射的键所以可以直接搜索函数名如要搜索注释选择区的函数,即搜索:Edit.CommentSelection即可导航到设置界面,在shortcutin中选择生效范围,在press栏中按下键,至多只能有2个组合......