- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 this answer ,它应该打印所有函数名称:
[root@ test]# cat hw.c
#include <stdio.h>
int func(void)
{
return 1;
}
int main(void)
{
func();
printf("%d",6);
return 6;
}
[root@ test]# gcc -Wall hw.c -o hw -finstrument-functions
[root@ test]# ./hw
6
[root@ test]# gcc --version
gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48)
Copyright (C) 2006 Free Software Foundation, Inc.
最佳答案
这是来自 gcc 手册:
-finstrument-functions
Generate instrumentation calls for entry and exit to functions. Just after func- tion entry and just before function exit, the following profiling functions will be called with the address of the current function and its call site. (On some platforms, __builtin_return_address does not work beyond the current func- tion, so the call site information may not be available to the profiling functions otherwise.)
void __cyg_profile_func_enter (void *this_fn, void *call_site);
void __cyg_profile_func_exit (void *this_fn, void *call_site);
#include <stdio.h>
void __cyg_profile_func_enter (void *this_fn, void *call_site) {
printf( "entering %p\n", this_fn );
}
void __cyg_profile_func_exit (void *this_fn, void *call_site) {
printf( "leaving %p\n", this_fn );
}
关于gcc - 为什么 `-finstrument-functions` 对我不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6176284/
根据 this answer ,它应该打印所有函数名称: [root@ test]# cat hw.c #include int func(void) { return 1; } int ma
我正在尝试跟踪内核函数,并且我正在使用 -finstrument-functions 来执行此操作,但我收到如下 undefined reference 错误: arch/arm/kernel/elf
我正在尝试记录应用程序在崩溃前发出的调用,包括 libc 调用。我在 gcc 中使用了 -finstrument-functions 支持和我自己的库,但我无法使用此工具构建 glibc。 我在 li
最近我在 Ubuntu 上使用 g++ 共享对象 (.so) 文件测试 -finstrument-functions。我发现了一个奇怪的行为,即 -finstrument-functions 似乎只有
尝试使用 finstrument-functions 进行编译并排除具有多个模板参数的模板函数,使用\方法转义逗号(如 exclude-file-list here 中所述)无法正确禁用检测传递的函数
有没有办法在gcc的-finstrument-functions选项中获取当前函数的行号,比如gcc的__LINE__ 最佳答案 不,您只能在预处理时访问 __LINE__ 并且 __cyg_prof
我正在尝试使用 __cyg_profile_func_*与 -finstrument-functions在函数运行之前和之后进行特定检查(例如,检查 Mach 端口泄漏等)。这是在 OS X 上。 代
假设我有一个类似的功能: template void mysort( It begin, It end, Cmp cmp ) { std::sort( begin, end, cmp ); }
我是一名优秀的程序员,十分优秀!