为什么没有gdb" u"命令退出循环?

时间:2016-09-13 11:21:58

标签: c++ loops gdb exit

我有一个非常简单的主要功能,里面有一个for循环,如下所示:

#include<stdio.h> 
int main() 
{ 
   for(int i=0;i<30;++i) 
     printf("%d\n",i); 
   return 0; 
} 

我试着编译它:

gcc 4.c -g 

然后我用gdb调试它:

$ gdb a.out 
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.04)... 
Reading symbols from a.out...done. 
(gdb) list 
1    #include<stdio.h> 
2    int main() 
3    { 
4      for(int i=0;i<30;++i) 
5        printf("%d\n",i); 
6      return 0; 
7    } 
(gdb) b 5 
Breakpoint 1 at 0x400537: file 4.c, line 5. 
(gdb) b 6 
Breakpoint 2 at 0x400555: file 4.c, line 6. 
(gdb) r 
Starting program: /home/a/cpp/a.out  

Breakpoint 1, main () at 4.c:5 
5        printf("%d\n",i); 
(gdb) p i 
$1 = 0 
(gdb) u 
0 
4      for(int i=0;i<30;++i) 
(gdb) u //not exiting for loop?

Breakpoint 1, main () at 4.c:5 
5        printf("%d\n",i); 
(gdb)  
1 
4      for(int i=0;i<30;++i) 
(gdb) u 

似乎&#34; u&#34;命令没有帮助执行整个for循环并进入下一个断点,但是像&#34; n&#34;命令。

为什么呢?我的描述有什么误解吗? 感谢。

1 个答案:

答案 0 :(得分:3)

为了理解循环结构,gdb似乎必须经历一次循环。

(gdb) list
1   #include<stdio.h> 
2   int main() 
3   { 
4      for(int i=0;i<5;++i) 
5      {
6        printf("%d\n",i); 
7      }
8      return 0; 
9   } 
10  
(gdb) b main
Breakpoint 1 at 0x400535: file junk.cpp, line 4.
(gdb) b 8
Breakpoint 2 at 0x40055c: file junk.cpp, line 8.
(gdb) r
Starting program: /tmp/local/matcher_server/bin/a.out 

Breakpoint 1, main () at junk.cpp:4
4      for(int i=0;i<30;++i) 
(gdb) n
6        printf("%d\n",i); 
(gdb) n
0
4      for(int i=0;i<30;++i) 
(gdb) u
1
2
3
4

Breakpoint 2, main () at junk.cpp:8
8      return 0; 

要理解原因,我们需要查看main

的汇编程序
(gdb) disass
Dump of assembler code for function main():
   0x000000000040052d <+0>: push   %rbp
   0x000000000040052e <+1>: mov    %rsp,%rbp
   0x0000000000400531 <+4>: sub    $0x10,%rsp
   0x0000000000400535 <+8>: movl   $0x0,-0x4(%rbp)
   0x000000000040053c <+15>:    jmp    0x400556 <main()+41>
   0x000000000040053e <+17>:    mov    -0x4(%rbp),%eax
   0x0000000000400541 <+20>:    mov    %eax,%esi
   0x0000000000400543 <+22>:    mov    $0x4005f4,%edi
   0x0000000000400548 <+27>:    mov    $0x0,%eax
   0x000000000040054d <+32>:    callq  0x400410 <printf@plt>
=> 0x0000000000400552 <+37>:    addl   $0x1,-0x4(%rbp)
   0x0000000000400556 <+41>:    cmpl   $0x1d,-0x4(%rbp)
   0x000000000040055a <+45>:    jle    0x40053e <main()+17>
   0x000000000040055c <+47>:    mov    $0x0,%eax
   0x0000000000400561 <+52>:    leaveq 
   0x0000000000400562 <+53>:    retq   
End of assembler dump.

以及dwarfdump

中的行详细信息
.debug_line: line number info for a single cu
Source lines (from CU-DIE at .debug_info offset 0x0000000b):
<pc>        [row,col] NS BB ET PE EB IS= DI= uri: "filepath"
NS new statement, BB new basic block, ET end of text sequence
PE prologue end, EB epilogue begin
IA=val ISA number, DI=val discriminator value
0x0040052d  [   3, 0] NS uri: "/tmp/local/matcher_server/bin/junk.cpp"
0x00400535  [   4, 0] NS
0x0040053e  [   6, 0] NS DI=0x2
0x00400552  [   4, 0] NS DI=0x2
0x00400556  [   4, 0] DI=0x1
0x0040055c  [   8, 0] NS
0x00400561  [   9, 0] NS
0x00400563  [   9, 0] NS ET

[3,0]列是行号和列号。正如我们所看到的,循环导致行号是非顺序的,3,4,6,4。

我怀疑第一次该节目点击第6行并且&#39; u&#39;给出命令gdb对DWARF符号中的循环感到困惑。在第二个循环中,然而它正确。也许是一个小小的错误或一个关于“你好”的神器。命令已实现。

请注意,在&#39; u&#39;期间,gdb仍然会遇到断点。命令。在您的示例中,您需要删除printf上的断点。