Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* What about add a interface to output the assembly codes follow   inferior execution
@ 2009-03-03  3:11 teawater
  2009-03-03 16:42 ` Doug Evans
  0 siblings, 1 reply; 19+ messages in thread
From: teawater @ 2009-03-03  3:11 UTC (permalink / raw)
  To: gdb ml

Hi guys,

I am not sure gdb have a interface to output assembly codes except
"disassemble".
Maybe gdb can support a interface can output assembly codes of next
part of code.

For example:
#If exec-disassemble set to auto, just output assembly codes if there
is not line message.
#It will be the default value.
(gdb) set exec-disassemble auto
(gdb) si
0x080483ee	24		b = printf ("a = %d b = %d c = %d\n", a, b, c);
(gdb) si
0x080482d8 in printf@plt ()
Current language:  auto; currently asm
0x080482d8 <printf@plt+0>:	jmp    *0x8049670
(gdb) si
0x080482de in printf@plt ()
0x080482de <printf@plt+6>:	push   $0x10

#If exec-disassemble set to on, gdb will always output assembly codes.
(gdb) set exec-disassemble on
(gdb) n
26		printf ("a = %d b = %d c = %d\n", a, b, c);
 80483fe:	8b 15 84 96 04 08    	mov    0x8049684,%edx
 8048404:	8b 45 f4             	mov    -0xc(%ebp),%eax
 8048407:	89 44 24 0c          	mov    %eax,0xc(%esp)
 804840b:	8b 45 f8             	mov    -0x8(%ebp),%eax
 804840e:	89 44 24 08          	mov    %eax,0x8(%esp)
 8048412:	89 54 24 04          	mov    %edx,0x4(%esp)
 8048416:	c7 04 24 58 85 04 08 	movl   $0x8048558,(%esp)
 804841d:	e8 b6 fe ff ff       	call   80482d8 <printf@plt>

#If exec-disassemble set to off, gdb will work like before.
(gdb) set exec-disassemble off


What do you think about it?


Thanks,
Hui


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2009-03-05  2:42 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-03  3:11 What about add a interface to output the assembly codes follow inferior execution teawater
2009-03-03 16:42 ` Doug Evans
2009-03-03 17:04   ` Daniel Jacobowitz
2009-03-04  2:29     ` teawater
2009-03-04  4:09       ` Eli Zaretskii
2009-03-04  5:30         ` teawater
2009-03-04 17:15           ` Doug Evans
2009-03-04 19:09             ` Eli Zaretskii
2009-03-04 19:20               ` Pedro Alves
2009-03-04 22:10                 ` Eli Zaretskii
2009-03-04 19:24               ` Doug Evans
2009-03-04 19:26               ` Daniel Jacobowitz
2009-03-04 19:32                 ` Pedro Alves
2009-03-04 21:25                   ` Doug Evans
2009-03-04 22:14                     ` Eli Zaretskii
2009-03-04 22:20                       ` Pedro Alves
2009-03-04 22:31                       ` Doug Evans
2009-03-04 23:41                 ` Tom Tromey
2009-03-05  2:42                   ` teawater

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox