zoukankan      html  css  js  c++  java
  • A Reusable Aspect for Memory Profiling

    例子:

    malPro.acc文件:

    #include <stdlib.h>
    size_t totalMemoryAllocated;
    int totalAllocationFuncCalled;
    int totalFreeFuncCalled;

    void initProfiler() {
    totalMemoryAllocated = 0;
    totalAllocationFuncCalled = 0;
    totalFreeFuncCalled = 0;
    }

    void printProfiler() {
    printf("total memory allocated = %d bytes ", totalMemoryAllocated );
    printf("total memory allocation function called = %d ", totalAllocationFuncCalled);
    printf("total memory free function called = %d ", totalFreeFuncCalled);
    }

    before(): execution(int main()) {
    initProfiler();
    }
    after(): execution(int main()) {
    printProfiler();
    }

    before(size_t s): call($ malloc(...)) && args(s) {
    totalMemoryAllocated += s;
    totalAllocationFuncCalled ++;
    }
    before(size_t n, size_t s): call($ calloc(...)) && args(n, s) {
    totalMemoryAllocated += n * s;
    totalAllocationFuncCalled ++;
    }

    before(size_t s): call($ realloc(...)) && args(void *, s) {
    totalMemoryAllocated += s;
    totalAllocationFuncCalled ++;
    }


    before() : call(void free(void *)) {
    totalFreeFuncCalled++;
    }

    mal.c文件:

    #include <stdio.h>
    #include <malloc.h>
    void t1()
    {
    int *x ;
    printf(" core code:hehe ! ");
    x = (int *)malloc(sizeof(int) * 4);
    printf(" core code:hehe ! ! ");
    }
    int main()
    {
    t1();
    int *x ;
    printf(" core code:hehe ! ! ");
    x = (int *)malloc(sizeof(int) * 4);
    printf(" core code:hehe ! ! ");
    return 0;
    }

  • 相关阅读:
    16 js动态添加样式
    15 document对象
    89 多线程(十...)——线程池
    14 window对象
    13 js事件2——选择合适的事件
    12 js事件
    11 js的常用类和方法
    10 js自定义对象
    09 js自定义类与prototype关键字
    88 maven配置库,dom4j
  • 原文地址:https://www.cnblogs.com/xiaohuihui123/p/4565443.html
Copyright © 2011-2022 走看看