Environment: winCE
Introduction
This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end of program execution it will display in the debug window if there were any memory leaks and how the memory looks so you can identify where your memory leak occurred. It will display in the debug window a message saying no memory leaks detected if there are no memory leaks. In addition it displays the ammount of free store memory that your program uses.
The code detects memory leaks generated with calls to new and delete operators in C++. The code doesn’t detect memory leaks generated with C functions: malloc, calloc, free, but that can be done in the future. Let me know and I will program it.
There are 3 simple steps in order to enable memory leak detection:
- Define _DEBUG
#define _DEBUG
- Include “crtdbg.h”
#include "crtdbg.h"
- Let your first line in the code be:
_CrtSetDbgFlag (ON);
Tips on debugging:
Tip 1:
Although it doesn’t display the line where the memory leak occurred (read Tip 2), the utility display the address in hex, and you can add a small code to the operator new function, just after the malloc
if (retPtr == (void*)0x76DA0)
dumb instruction; <- place a breakpoint on
this one, or just use DebugMsg
so you can detect easily which line of your code called the operator new to allocate memory at the specified address and wasn’t freed.
Tip 2:
Here’s a trick that allow you to get the correct line and filename where the memory leak occurred. Define the following line in every file, or define it in a header file and include it in every file where you want accurate line and filename:
#define new new(_T(__FILE__), __LINE__)
How it works
What the code actually does is override the global operator new that besides allocating memory, it retains the pointer to the allocated memory in a list. The operator delete simply releases memory and deletes the reference to that memory from the list. In the end of the program execution, all the pointers still in the list simply mean memory leaks, and they are displayed in the debug window.
The macro _CrtSetDbgFlag (ON); simply declares an instance of garbageCollector. It has to be the first line of your code, to insure it is the last variable in your program to be destroy, as in its destructor it performs checking of the pointer list and it displays memory leaks. So its destructor must be the last destructor called. Remember this when you have static variables; you must give a global scope to the instance of garbageCollector. You can do that by placing the macro at the global scope. However, the C++ standard does not provide an order of initialization for static variables, which means you cannot assure garbageCollector will be initialized first. Therefore in case of static or global variables, it will report memory leaks for variables initialized after garbageCollector has been initialized.
Comments
Please report any bugs or feedback to Ciprian_Miclaus@yahoo.com.