我正在尝试通过在特殊部分(__dlog
)中存储字符串来将元数据添加到ELF可执行文件中。当前的方法使用(滥用?)内联汇编来存储字符串,并且几乎按照需要工作。
#include <stdio.h>
#include <stdlib.h>
#define DLOG(proto...) \
__asm__(".pushsection __dlog, \"S\", @note\n\t" \
".asciz \"" __FILE__ ":function_name_here:" #proto "\"\n\t" \
".popsection\n\t" )
int
foo(int bar)
{
int baz = bar / 2;
DLOG(int baz);
return baz;
}
int
main(int argc, char *argv[])
{
foo(argc);
return EXIT_SUCCESS;
}
但理想情况下,宏应该通过利用__func__
标识符自动将函数名称作为字符串的一部分包含在内。最终结果应该是字符串
file.c:foo:int baz\0
在名为__dlog
的部分中。但由于__func__
不是字符串文字,因此gcc会抱怨此代码
".asciz \"" __FILE__ ":" __func__ ":" #proto "\"\n\t"
是否有将__func__
的内容添加到字符串中?如果解决方案不需要自定义构建选项或后处理步骤,则奖励积分。编译器是gcc 4.4和4.5。
答案 0 :(得分:3)
编辑:这似乎有用,它没有给出一个完全没有错误的名称,但函数名称是
#define DLOG( proto...) \
__asm__(".pushsection __dlog, \"S\", @note\n\t" \
".asciz \"" __FILE__ ":%0:" #proto "\"\n\t" \
".popsection\n\t" \
: \
: "s" ( __func__ ) )
int main(int argc, char*argv[]) {
DLOG(int argc, char*argv[]);
return 0;
}
extern "C" void test(int bar) {
DLOG(bar);
}
g ++ - 4.4 test.cpp&amp;&amp; xxd a.out |少-p test.cpp
0001020: 7465 7374 2e63 7070 3a24 5f5a 5a34 6d61 test.cpp:$_ZZ4ma
0001030: 696e 4538 5f5f 6675 6e63 5f5f 3a69 6e74 inE8__func__:int
0001040: 2061 7267 632c 2063 6861 722a 6172 6776 argc, char*argv
0001050: 5b5d 0074 6573 742e 6370 703a 245f 5a5a [].test.cpp:$_ZZ
0001060: 3474 6573 7445 385f 5f66 756e 635f 5f3a 4testE8__func__:
0001070: 6261 7200 4743 433a 2028 5562 756e 7475 bar.GCC: (Ubuntu
原始答案:
在使用c模式的gcc-3.3中,__func__
被视为const char []
。如果是c ++模式,则在gcc&gt;中3.3,__func__
始终是变量。
我猜你可以在c-mode中使用旧版本的gcc来实现这一目标。
上的最后一段