繁体   English   中英

C /汇编子程序分段错误

[英]C/Assembly Subprogram Segmentation fault

一旦C主程序进入main函数,尝试运行GDB并不断出现分段错误。

GDB错误:

Breakpoint 1, main () at binom_main.c:7
7   n=10;
(gdb) s
10  0;
(gdb) s
12  +){
(gdb) s

Program received signal SIGSEGV, Segmentation fault.
0x00000000004005c4 in otherwise ()
(gdb)

我这样编译代码:

as binom.s -o binom.o
gcc -S -Og binom_main.c
gcc -c binom_main.s    
gcc binom_main.o binom.o -o runtimes

我试图在这里学习如何更有效地使用GDB,但是像这样的段错误是非常模棱两可的并且是有限的。 为什么在功能开始时就造成此段错误? 我是否正确链接了两个文件?

主要:

#include <stdio.h>

unsigned int result,m,n,i;
unsigned int binom(int,int);
int main(){

n=10;
i=0;


for (i=1; i<2;i++){

result = binom(n,i);

printf("i=%d | %d \n", i, result );

}

return 0;


}

子:

    .text
    .globl  binom

binom: 
    mov     $0x00, %edx     #for difference calculation
    cmp     %edi, %esi          #m=n?
    je      equalorzero         #jump to equalorzero for returning of value 1
    cmp     $0x00, %esi         #m=0?
    je      equalorzero     
    cmp     $0x01, %esi         #m=1?

    mov     %esi,%edx
    sub     %edi, %edx
    cmp     $0x01, %edx         # n-m = 1 ?
    je      oneoronedifference  

    jmp     otherwise

equalorzero:
    add     $1, %eax            #return 1

    call    printf  
    ret 

oneoronedifference:
    add     %edi, %eax          #return n
    ret

otherwise:
    sub     $1, %edi            #binom(n-1,m) 
    call    binom       
    sub     $1, %esi            #binom(n-1,m-1)
    call    binom
    ret

使用gdb调试asm时,请查看反汇编窗口和源代码窗口。 (例如layout asm / layout reg ,然后layout next layout reg ,直到获得所需的窗口组合。)请参阅标签Wiki的底部,以获取更多提示和指向文档的链接。

您可以使用stepisi )来逐步执行指令,而不是通过C语句来进行调查,同时调查由于在返回之前损坏某物而导致的asm外部崩溃。


这看起来像一个错误:

sub     $1, %edi            #binom(n-1,m) 
call    binom
# at this point, %edi no longer holds n-1, and %esi no longer holds m.
# because binom clobbers them.  (This is normal)

# as Jester points out, you also don't save the return value (%eax) from the first call anywhere.
sub     $1, %esi            #binom(n-1,m-1)
call    binom

另一个(次要?)错误是:

cmp     $0x01, %esi         #m=1?
# but then you never read the flags that cmp set

另一个严重的错误:

equalorzero:
    add     $1, %eax            #return 1  # wrong: nothing before this set %eax to anything.
    # mov  $1, %eax             #  You probably want this instead
    ret

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM