阅读:1177回复:5
softice中的错误提示是什么意思?
在98下编译通过并能安装的程序到了2000后做相应的修改后也能编译成功,安装完成后softice出现错误提示:
break duo to page fault(0eh) fault=0000 msr lastexceptionfromip=c01398e2 msr lastexceptiontoip=ff03dcxs 请教:这两句什么意思?如何避免? |
|
最新喜欢:iwub
|
沙发#
发布于:2004-02-16 20:35
我也遇到了同样的问题,是什么错误, 虽然老了点,但依然是个问题
|
|
|
板凳#
发布于:2004-02-17 09:11
我也遇到过,是怎么回事呢?
|
|
地板#
发布于:2004-02-17 15:46
顶一下!
|
|
|
地下室#
发布于: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). |
|
5楼#
发布于:2004-02-18 11:26
转:FAQID1060(2000-07-28) 不太理解 ,能用简短的中文说明一下吗? |
|
|