Emacs - GDB跟踪权限,无需单步执行所有文件

时间:2016-11-12 07:12:16

标签: c debugging exception gdb pintos

我正在研究Pintos OS项目。我收到这条消息:

Page fault at 0xbfffefe0: not present error writing page in user context.

Pintos OS项目的问题在于它不会简单地告诉导致异常的行和方法。

我知道如何使用断点/观察点等但有没有任何方法可以直接进入它而无需逐行遍历整个流程和所有操作系统文件,这样我就可以跳入导致异常并在那里放置断点的行?我查看了GDB命令,但没有找到任何内容。

当我调试这个项目时,我必须逐步完成整个程序,直到找到非常耗时的错误/异常。可能有更快的方法来做到这一点。

感谢。 整个痕迹:

nestilll@vdebian:~/Class/pintos/proj-3-bhling-nestilll-nsren/src/vm/build$ pintos -v -k -T 60 --qemu --gdb  --filesys-size=2 -p tests/vm/pt-grow-pusha -a pt-grow-pusha --swap-size=4 -- -q  -f run pt-grow-pusha
Use of literal control characters in variable names is deprecated at /home/nestilll/Class/pintos/src/utils/pintos line 909.
Prototype mismatch: sub main::SIGVTALRM () vs none at /home/nestilll/Class/pintos/src/utils/pintos line 933.
Constant subroutine SIGVTALRM redefined at /home/nestilll/Class/pintos/src/utils/pintos line 925.
warning: disabling timeout with --gdb
Copying tests/vm/pt-grow-pusha to scratch partition...
qemu -hda /tmp/N2JbACdqyV.dsk -m 4 -net none -nographic -s -S
PiLo hda1
Loading............
Kernel command line: -q -f extract run pt-grow-pusha
Pintos booting with 4,088 kB RAM...
382 pages available in kernel pool.
382 pages available in user pool.
Calibrating timer...  419,020,800 loops/s.
hda: 13,104 sectors (6 MB), model "QM00001", serial "QEMU HARDDISK"
hda1: 205 sectors (102 kB), Pintos OS kernel (20)
hda2: 4,096 sectors (2 MB), Pintos file system (21)
hda3: 98 sectors (49 kB), Pintos scratch (22)
hda4: 8,192 sectors (4 MB), Pintos swap (23)
filesys: using hda2
scratch: using hda3
swap: using hda4
Formatting file system...done.
Boot complete.
Extracting ustar archive from scratch device into file system...
Putting 'pt-grow-pusha' into the file system...
Erasing ustar archive...
Executing 'pt-grow-pusha':
(pt-grow-pusha) begin
Page fault at 0xbfffefe0: not present error writing page in user context.
pt-grow-pusha: dying due to interrupt 0x0e (#PF Page-Fault Exception).
Interrupt 0x0e (#PF Page-Fault Exception) at eip=0x804809c
 cr2=bfffefe0 error=00000006
 eax=bfffff8c ebx=00000000 ecx=0000000e edx=00000027
 esi=00000000 edi=00000000 esp=bffff000 ebp=bfffffa8
 cs=001b ds=0023 es=0023 ss=0023
pt-grow-pusha: exit(-1)
Execution of 'pt-grow-pusha' complete.
Timer: 71 ticks
Thread: 0 idle ticks, 63 kernel ticks, 8 user ticks
hda2 (filesys): 62 reads, 200 writes
hda3 (scratch): 97 reads, 2 writes
hda4 (swap): 0 reads, 0 writes
Console: 1359 characters output
Keyboard: 0 keys pressed
Exception: 1 page faults
Powering off...

2 个答案:

答案 0 :(得分:1)

让GDB调试器在所需位置运行并停止:

gdb filename< - 启动调试会话 br main< - 在main()函数的第一行设置断点 r< - 运行直到达到该断点 br filename.c:linenumber< - 在所需的代码行设置另一个断点 c< - 继续直到第二个断点被阻塞

调试器将停在文件中的所需位置,如果它实际到达那里,

答案 1 :(得分:0)

  

当我调试这个项目时,我必须逐步完成整个程序   直到我发现导致错误/异常的原因非常耗时。   可能有更快的方法来做到这一点。

通常你要做的就是在错误发生之前设置一个断点。然后你的程序将全速运行,无需你的干预,直到达到那一点。

这里有几个皱纹。

首先,有时很难知道断点的位置。在这种情况下,我想我会查找正在打印消息的代码,然后从那里向后工作。有时您必须在故障点停止,检查堆栈,进一步设置新的断点,然后重新运行程序。

然后有设置断点的机制。一种简单的方法是按功能名称分解,例如break my_function。另一种方法是使用文件名和行号,如break my_file.c:73

最后,有时在看到故障之前可以多次击中断点。您可以使用忽略计数(请参阅help ignore)或条件断点(如break my_function if variable = 27)来限制停靠次数。