Chinaunix首页 | 论坛 | 博客
  • 博客访问: 301039
  • 博文数量: 47
  • 博客积分: 1411
  • 博客等级: 上尉
  • 技术积分: 500
  • 用 户 组: 普通用户
  • 注册时间: 2006-02-23 09:10
文章分类

全部博文(47)

文章存档

2009年(3)

2008年(4)

2007年(14)

2006年(26)

我的朋友

分类: LINUX

2008-07-23 16:46:21

GCC 里经常碰到的option: -fomit-frame-pointer,意思是:
Don’t keep the frame pointer in a register for functions that don’t need one.  This avoids the instructions to save, set up and restore frame pointers; it also makes an extra register available in many functions.  It also makes debugging impossible on some machines.
其实就是在x86编译的时候忽略EBP, 在arm编译时忽略r11。这两个东东其实就是栈基地址。

kernel默认都是忽略fp,可以通过kernel debug选项开启。但是sched.c默认是用-fno-omit-frame-pointer 编译的,主要是由于/proc//wchan需要做栈回溯。
讨论见:
内核分析见:http://weichong78.blogspot.com/2006/10/wchan-waiting-channel.html

阅读(3318) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~