__attribute__系列之cleanup

Posted suonikeyinsu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了__attribute__系列之cleanup相关的知识,希望对你有一定的参考价值。

cleanup属性:当变量离开它的作用域时,设置的cleanup_function函数将被调用。

cleanup (cleanup_function)

The cleanup attribute runs a function when the variable goes out of scope. This attribute can only be applied to auto function scope variablesit may not be applied to parameters or variables with static storage durationThe function must take one parameter, a pointer to a type compatible with the variable. The return value of the function (if any) is ignored.

If -fexceptions is enabled, then cleanup_function will be run during the stack unwinding that happens during the processing of the exception. Note that the cleanupattribute does not allow the exception to be caught, only to perform an action. It is undefined what happens if cleanup_function does not return normally.

#include <stdio.h>
#include <stdlib.h>

#define local_type  __attribute__ ((cleanup(my_free)))

static void my_free(void* pmem)//the type of paramter must be a void pointer
{
      printf("pmem=%p...\n", pmem);
      printf("&pmem=%p...\n", &pmem);
      void** ppmem = (void**) pmem;
      printf("*ppmem=%p...\n", *ppmem);
      free(*ppmem);
}

#if 0
//warning: passing argument 1 of ‘my_free’ from incompatible pointer type
static void my_free(void** ppmem)
{
      printf("ppmem=%p...\n", ppmem);
      printf("*ppmem=%p...\n", *ppmem);
}
#endif

int foo(void)
{
    local_type int* p = (int*) malloc(sizeof(int));
    printf("do something, p=%p\n", p);

    return 0;
}

int main(int argc, char** argv)
{

    foo();
    // when return, the memory block pointed by p is freed automatically
    printf("11111111\n");

    return 0;
}

利用cleanup属性来实现智能指针:

 1 #include <stdlib.h>
 2 #include <stdio.h>
 3 
 4 struct shared_ptr_s
 5 {
 6     //    struct impl_t* inst;
 7     int *use_cnt;
 8 };
 9 
10 typedef struct shared_ptr_s shared_ptr_t;           // unadorned type
11 #define shared_ptr struct shared_ptr_s __attribute__((cleanup(free_shared)))
12 
13 #define SHARED_PTR_GET_ADD_REF(sp_in, sp_name) ++(*sp_in.use_cnt); 14                         printf("add use_cnt = %d, sp_in=%p\n", *sp_in.use_cnt, sp_in); 15                         shared_ptr sp_name = sp_in; 16                         printf("&sp_name=%p, sp_name:%p\n", &sp_name, sp_name);
17 
18 void free_shared(struct shared_ptr_s* ptr)
19 {
20     printf("ptr:%p, usr_cnt:%p\n", ptr, ptr->use_cnt);
21     if(!ptr) return;
22     printf("del use_cnt = %d\n", *ptr->use_cnt - 1); 
23     if(0 == --(*ptr->use_cnt)) {
24         //dtor(ptr->inst);
25         printf("freeing %p\n", (void *)ptr->use_cnt);
26         free(ptr->use_cnt);
27     }
28     //ptr->inst = 0;
29     ptr->use_cnt = 0;
30 }
31 
32 void func(shared_ptr_t sp)
33 {
34     SHARED_PTR_GET_ADD_REF(sp, sp_loc);
35     printf("111111111\n");
36     return;
37 }
38 
39 int main(void)
40 {
41     shared_ptr_t sp = {         // original type does not use __attribute__(cleanup)
42         //.inst = ctor(), 
43         .use_cnt = malloc(sizeof(int)) 
44     };
45     printf("use_cnt content addr:%p, &use_cnt=%p, &sp=%p,sp=%p\n", sp.use_cnt, &sp.use_cnt, &sp,sp);
46     SHARED_PTR_GET_ADD_REF(sp, sp_loc);
47 
48     printf("222222222222\n");
49     func(sp_loc);
50     printf("333333333\n");
51 
52     return 0;
53 }

运行结果:

use_cnt content addr:0x9ee7008, &use_cnt=0xbfa11dac, &sp=0xbfa11dac,sp=0x9ee7008
add use_cnt = 1, sp_in=0x9ee7008
&sp_name=0xbfa11da8, sp_name:0x9ee7008
222222222222
add use_cnt = 2, sp_in=0x9ee7008
&sp_name=0xbfa11d74, sp_name:0x9ee7008
111111111
ptr:0xbfa11d74, usr_cnt:0x9ee7008
del use_cnt = 1
333333333
ptr:0xbfa11da8, usr_cnt:0x9ee7008
del use_cnt = 0
freeing 0x9ee7008

以上是关于__attribute__系列之cleanup的主要内容,如果未能解决你的问题,请参考以下文章

黑魔法__attribute__((cleanup))

黑魔法__attribute__((cleanup))

gcc 预编译器指令 __attribute__ ((__cleanup__)) vs ((cleanup)) (带 vs 不带下划线?)

Objective-C 源码初探 __attribute__

__attribute__系列之介绍篇

__attribute__系列之aligned