gcc中__builtin_return_address和__VA_ARGS__

— Built-in Function: void * __builtin_return_address ( unsigned int level)

This function returns the return address of the current function, or of one of its callers. The level argument is number of frames to scan up the call stack. A value of 0 yields the return address of the current function, a value of 1 yields the return address of the caller of the current function, and so forth. When inlining the expected behavior is that the function returns the address of the function that is returned to. To work around this behavior use the noinline function attribute.

The level argument must be a constant integer.

On some machines it may be impossible to determine the return address of any function other than the current one; in such cases, or when the top of the stack has been reached, this function returns 0 or a random value. In addition, __builtin_frame_address may be used to determine if the top of the stack has been reached.

Additional post-processing of the returned value may be needed, see __builtin_extract_return_addr.

Calling this function with a nonzero argument can have unpredictable effects, including crashing the calling program. As a result, calls that are considered unsafe are diagnosed when the-Wframe-address option is in effect. Such calls should only be made in debugging situations.

 
 
初步理解,此内建函数根据参数level返回当前函数的返回地址及当前函数调用者的返回地址,可以一直追溯到整个函数调用栈情况。
 
 
__VA_ARGS__
c99最新引入的可变参数宏,可以解决之前宏定义中没法使用可变参数的问题。
 
#define my_print1(fmt, args...)    printf(fmt, ##args)
#define my_print2(fmt, ...)          printf(fmt, ##__VA_ARGS__)
 
这两个宏定义功能一致,实现稍微有点区别。
  
 

转载于:https://www.cnblogs.com/fly-narrow/p/4704977.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值