gpt4 book ai didi

gcc - 如何将 __func__ 与内联汇编一起使用

转载 作者:行者123 更新时间:2023-12-04 13:43:51 26 4
gpt4 key购买 nike

我正在尝试通过将字符串存储在特殊部分 (__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。

最佳答案

编辑:这似乎可行,它没有给出一个完全未损坏的名称,但函数名称在那里

#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 测试.cpp && xxd a.out | less -p 测试.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 > 3.3 中,__func__ 始终是一个变量。

我想您可以在 c 模式下使用旧版本的 gcc 来完成此操作。

参见 http://gcc.gnu.org/onlinedocs/gcc/Function-Names.html 的最后一段

关于gcc - 如何将 __func__ 与内联汇编一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4881535/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com