gdb 노트

1985 단어 cgdb어 셈 블 리
더 읽 기
하면, 만약, 만약...
Could not find debuginfo pkg for dependency package glib
Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.7.el6_0.5.x86_64
필요했어

    CentOS 6.1:
1 su    root 
2    /etc/yum.repos.d/   
3 vim CentOS-Debuginfo.repo     , [debug]  enabled=0   enabled=1    insert  ,   :wq    
4      debuginfo-install glibc-2.12-1.7……


레지스터         info
bt full                backtrace
p $eax                 print
print 는 다양한 형식, p / x 16 진법, p / o 8 진법, p / s 문자 가 있 습 니 다.
x / 형식 주소
x $pc       pc 는 프로그램 포인터 로 eip 라 고도 합 니 다.
x/i $pc  어 셈 블 리 명령 ★ ★ ★ ★ ★ ★ ★ ★
disas $pc              disassemble 어 셈 블 리 명령

(gdb) i reg
eax            0xfffffdfe       -514
ecx            0x8      8
edx            0xb74c0ff4       -1219751948
ebx            0xbfe34850       -1075623856
esp            0xbfe347e0       0xbfe347e0
ebp            0x85f1968        0x85f1968
esi            0x1      1
edi            0x85f08a8        140445864
eip            0xb7721424       0xb7721424 <__kernel_vsyscall>
eflags         0x200246 [ PF ZF IF ID ]
cs             0x73     115
ss             0x7b     123
ds             0x7b     123
es             0x7b     123
fs             0x0      0
gs             0x33     51
(gdb) p $eax
$1 = -514
(gdb) p/x $eax
$2 = 0xfffffdfe
(gdb) p/d $eax
$3 = -514
(gdb) p/u $eax
$4 = 4294966782
(gdb) p/o $eax
$5 = 037777776776
(gdb) p/t $eax
$6 = 11111111111111111111110111111110
(gdb) p/c $eax
$7 = -2 '\376'
(gdb) p/f $eax
$8 = -nan(0x7ffdfe)
(gdb) p/s $eax
$9 = -514
(gdb) p/i $eax
Format letter "i" is meaningless in "print" command.
(gdb) 

좋은 웹페이지 즐겨찾기