Mirror of the gdb mailing list
 help / color / mirror / Atom feed
From: "Marc Khouzam" <marc.khouzam@ericsson.com>
To: <gdb@sourceware.org>
Subject: Weird reverse problems
Date: Wed, 21 Jan 2009 18:52:00 -0000	[thread overview]
Message-ID: <6D19CA8D71C89C43A057926FE0D4ADAA06CB132B@ecamlmw720.eamcs.ericsson.se> (raw)

Hi,

so I'm trying Reverse Debugging by having applied teawater's patches
on top of HEAD which contains Michael S reverse infrastructure.

I ran into some bizarre behavior when reverse stepping.
I found that with (I'm guessing) library functions, a reverse next
will skip a line.  If you look at the simple session I ran below
(a bit long, but very simple) you can see that on the reverse, 
every two printf gets skipped.
Also, on a reverse step, multiple sleep() can be skipped.

Weird no?

I tried to look at the code, but performing steps gets pretty
low level, so I gave up.

Thanks

Marc

GNU gdb (GDB) 6.8.50.20090113-cvs
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show
copying"
and "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
(gdb) l
1       #include <stdio.h>
2       #include <unistd.h>
3
4       int foo(int i) {
5           return i;
6       }
7       int main()
8       {
9           sleep(0);//1
10          sleep(0);//2
(gdb) 
11          sleep(0);//3
12          sleep(0);//4
13          printf("A\n");
14          printf("B\n");
15          printf("C\n");
16          printf("D\n");
17          int a = 0;
18          a++;
19          printf("E\n");
20          printf("F\n");
(gdb) 
21          printf("G\n");
22          printf("H\n");
23          return a;
24      }
(gdb) b main
Breakpoint 1 at 0x80484bd: file a.cc, line 9.
(gdb) r
Starting program: /local/home/lmckhou/testing/a.out 

Breakpoint 1, main () at a.cc:9
9           sleep(0);//1
(gdb) record
(gdb) b 24
Breakpoint 2 at 0x804855b: file a.cc, line 24.
(gdb) c
Continuing.
A
B
C
D
E
F
G
H

Breakpoint 2, main () at a.cc:24
24      }
(gdb) rn
23          return a;
(gdb) rn
21          printf("G\n");    <--- Missed a printf here!
(gdb) rn
19          printf("E\n");    <--- Missed a printf here!
(gdb) rn
18          a++;
(gdb) rn
17          int a = 0;
(gdb) rn
15          printf("C\n");    <--- Missed a printf here!
(gdb) rn
13          printf("A\n");    <--- Missed a printf here!
(gdb) rn
11          sleep(0);//3    <--- Missed a sleep here!
(gdb) rn

No more reverse-execution history.
main () at a.cc:9
9           sleep(0);//1
(gdb) n
10          sleep(0);//2
(gdb) n
11          sleep(0);//3
(gdb) n
12          sleep(0);//4
(gdb) n
13          printf("A\n");
(gdb) rs
12          sleep(0);//4
(gdb) rs
11          sleep(0);//3
(gdb) rs
10          sleep(0);//2
(gdb) n
11          sleep(0);//3
(gdb) n
12          sleep(0);//4
(gdb) n
13          printf("A\n");
(gdb) n
14          printf("B\n");
(gdb) n
15          printf("C\n");
(gdb) rs
14          printf("B\n");
(gdb) 

No more reverse-execution history.
main () at a.cc:9
9           sleep(0);//1       <--- Woah, missed a bunch of stuff on the
reverse step!




             reply	other threads:[~2009-01-21 18:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-21 18:52 Marc Khouzam [this message]
2009-01-22  6:06 ` teawater
2009-01-22  9:02   ` teawater

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6D19CA8D71C89C43A057926FE0D4ADAA06CB132B@ecamlmw720.eamcs.ericsson.se \
    --to=marc.khouzam@ericsson.com \
    --cc=gdb@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox