KungFu
驱动大牛
驱动大牛
  • 注册日期2001-09-27
  • 最后登录2008-04-08
  • 粉丝0
  • 关注0
  • 积分221分
  • 威望24点
  • 贡献值0点
  • 好评度19点
  • 原创分0分
  • 专家分0分
阅读:1142回复:5

softice中的错误提示是什么意思?

楼主#
更多 发布于:2001-10-09 15:37
在98下编译通过并能安装的程序到了2000后做相应的修改后也能编译成功,安装完成后softice出现错误提示:
break duo to page fault(0eh) fault=0000
msr lastexceptionfromip=c01398e2
msr lastexceptiontoip=ff03dcxs
请教:这两句什么意思?如何避免?

最新喜欢:

iwubiwub
我不写驱动好多年
libin2309
驱动大牛
驱动大牛
  • 注册日期2002-11-20
  • 最后登录2005-12-29
  • 粉丝0
  • 关注0
  • 积分13分
  • 威望2点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
沙发#
发布于:2004-02-16 20:35
我也遇到了同样的问题,是什么错误, 虽然老了点,但依然是个问题
我是一只小小鸟,永远也飞也飞不高,但我永远在飞!
shuzhibuaa
驱动牛犊
驱动牛犊
  • 注册日期2004-02-16
  • 最后登录2004-05-26
  • 粉丝0
  • 关注0
  • 积分0分
  • 威望0点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
板凳#
发布于:2004-02-17 09:11
我也遇到过,是怎么回事呢?
libin2309
驱动大牛
驱动大牛
  • 注册日期2002-11-20
  • 最后登录2005-12-29
  • 粉丝0
  • 关注0
  • 积分13分
  • 威望2点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
地板#
发布于:2004-02-17 15:46
顶一下!
我是一只小小鸟,永远也飞也飞不高,但我永远在飞!
changjt
驱动牛犊
驱动牛犊
  • 注册日期2002-12-09
  • 最后登录2010-01-27
  • 粉丝0
  • 关注0
  • 积分1分
  • 威望2点
  • 贡献值0点
  • 好评度1点
  • 原创分0分
  • 专家分0分
地下室#
发布于:2004-02-17 21:50
转:FAQID1060(2000-07-28)
Q: There is a page fault under SoftICE 4.05:
Break due to Page Fault (OEh). Fault=0000
MSR LastExceptionFromIp=BFF28FED
MSR LastExceptionToIp=BFF293DC

Could you explain what that means?  

 
 
A: MSR means model specific register. Look for it on Intel's website. New Intel processors, starting with Pentium Pro have model specific registers, which record some information during a program execution, like information about last branch. Thus, if some exception occurs SI can get some info about last branch instruction.

MSR Exception to (address 1)
MSR Exception from (address 2)

We display the information about last branch instruction. So somewhere you have instruction
address1: jmp address2
and after jumping to the address2 you encounter an exception, at some address2+x. Then the processor jumps to the exception handler. The processor does not update the MSR in this case so the information from MSR does not point to the exception handler, which makes it more useful.

Fault number format:
bits: 3 2 1 0
Bit 0: P

0, the fault was caused by a no present page

1, the fault was caused by a page-level protection violation
Bit 1: W/R

0, the access causing the fault was a read

1, the access causing the fault was a write
Bit 2: U/S

0, the access causing the fault originated when the processor was executing in supervisor mode

1, the access causing the fault originated when the processor was executing in user mode
Bit 3: RSVD

0, The fault was not caused by a reserved bit violation

1, the page fault occurred because a 1 was detected in one of the reserved bit positions of a page table entry or directory entry that was marked present.

Also CR2 register holds the linear address that generated page fault.

So fault 0000 means that your driver(U/S = 0) was trying to read (W/R = 0) to no present page (P = 0).
 
libin2309
驱动大牛
驱动大牛
  • 注册日期2002-11-20
  • 最后登录2005-12-29
  • 粉丝0
  • 关注0
  • 积分13分
  • 威望2点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
5楼#
发布于:2004-02-18 11:26
转:FAQID1060(2000-07-28)
Q: There is a page fault under SoftICE 4.05:
Break due to Page Fault (OEh). Fault=0000
MSR LastExceptionFromIp=BFF28FED
MSR LastExceptionToIp=BFF293DC

Could you explain what that means?  

 
 
A: MSR means model specific register. Look for it on Intel's website. New Intel processors, starting with Pentium Pro have model specific registers, which record some information during a program execution, like information about last branch. Thus, if some exception occurs SI can get some info about last branch instruction.

MSR Exception to (address 1)
MSR Exception from (address 2)

We display the information about last branch instruction. So somewhere you have instruction
address1: jmp address2
and after jumping to the address2 you encounter an exception, at some address2+x. Then the processor jumps to the exception handler. The processor does not update the MSR in this case so the information from MSR does not point to the exception handler, which makes it more useful.

Fault number format:
bits: 3 2 1 0
Bit 0: P

0, the fault was caused by a no present page

1, the fault was caused by a page-level protection violation
Bit 1: W/R

0, the access causing the fault was a read

1, the access causing the fault was a write
Bit 2: U/S

0, the access causing the fault originated when the processor was executing in supervisor mode

1, the access causing the fault originated when the processor was executing in user mode
Bit 3: RSVD

0, The fault was not caused by a reserved bit violation

1, the page fault occurred because a 1 was detected in one of the reserved bit positions of a page table entry or directory entry that was marked present.

Also CR2 register holds the linear address that generated page fault.

So fault 0000 means that your driver(U/S = 0) was trying to read (W/R = 0) to no present page (P = 0).
 
 


不太理解 ,能用简短的中文说明一下吗?
我是一只小小鸟,永远也飞也飞不高,但我永远在飞!
游客

返回顶部