Chinaunix

标题: PT_ORIG_EAX(%esp)等价于 11(%esp)? [打印本页]

作者: nwcfafniw    时间: 2013-12-22 15:10
标题: PT_ORIG_EAX(%esp)等价于 11(%esp)?
处理异常的时候,在标号为error_code的代码中,有这样一段代码:

  1. // 在arch/x86/kernel/entry_32.S
  2. movl PT_GS(%esp), %edi          # get the function address
  3. movl PT_ORIG_EAX(%esp), %edx    # get the error code
  4. movl $-1, PT_ORIG_EAX(%esp)     # no syscall to restart
复制代码
我查了下PT_GS和PT_ORIG_EAX的值,发现定义在arch/ia64/ia32/sys_ia32.c中,如下

  1. #define PT_GS   10
  2. #define PT_ORIG_EAX 11
复制代码
这我就不明白了,如果PT_GS(%esp)等价于10(%esp),那就相当于把栈指针向高地址移动10个字节,这是不正确的,因为根据程序原本的目的,应该是40(%esp)才对。
请问各位这是为什么呢?
作者: openspace    时间: 2013-12-22 20:15
LZ应该找错了,一个是ia64,一个是x86




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2