我想在我的程序中计算内存分配调用次数(malloc,calloc,new ...)。该程序主动使用STL容器。 主要目的是计算所有这些容器内的内存分配。我将使用此信息稍后优化性能。 我的程序是用C ++编写的,可以在Linux下运行。有没有工具可以做到?
答案 0 :(得分:0)
答案 1 :(得分:0)
这是我在Linux的C ++开发环境中掀起的一些东西。 您可能需要将iostream更改为stdio.h并将cstdlib更改为stdlib.h(并且可能需要std以匹配Windows名称空间)以使其在Windows中工作。
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <cstdlib>
static char **ms;
using namespace std;
class frag{
public:
int xyz;
};
int numsegments(char** segs){
return strlen((const char*)segs)/sizeof(char*);
}
void randomfunction1(){
ms[numsegments(ms)]=(char*)malloc(100);
}
void randomfunction2(){
ms[numsegments(ms)]=(char*)calloc(1,100);
}
void randomfunction3(){
ms[numsegments(ms)]=(char*)new frag(); //storing class as flat data in memory
int segct=numsegments(ms); // get segments
frag* init=(frag*)ms[--segct]; // subtract 1 from segment count before reading
init->xyz=1; // set variable in class
}
int main(int argc, char *argv[]){
ms=(char**)calloc(1,1000); //store up to 1000 indexes
printf("Segments used so far: %d\n",numsegments(ms));
randomfunction1();
randomfunction2();
randomfunction3();
int total=numsegments(ms);
printf("Segments used total: %d\n",numsegments(ms));
int lastsegment=total-1;
frag* y=(frag*)ms[lastsegment]; //convert to class
printf("xyz in class = %d\n",y->xyz);
for (int i=0;i<total;i++){free(ms[i]);} //free all segments
free(ms);
return 0;
}
我理解它的复杂性,但这个程序的基本思想是分配一块内存来存储指向内存片段的指针,然后为每个片段分配任何内容,然后使用strlen()快速计算片段。我知道你把它们视为分配,但我把它们称为碎片。
答案 2 :(得分:0)
您可以重载operator new
:
#include <stdlib.h>
int numOfHeapAllocations = 0;
void* operator new(size_t size)
{
numOfHeapAllocations++;
return malloc(size);
}
只需将第一件事放在您的主文件中即可。