您好我学校的每个机构,我都必须在ASM [intel] [NASM]中执行自己的strdup功能。

我有一个奇怪的问题...

在我的代码中,如果我call _malloc
我的代码段错误出现此错误:

Program received signal SIGSEGV, Segmentation fault.
0x00007fff849612da in stack_not_16_byte_aligned_error () from /usr/lib/system/libdyld.dylib

我不明白为什么,因为在.text部分中,我说了extern _malloc
有人有一个想法为什么我会犯这个错误? :)

这是我的代码:
section .text
     global _ft_strdup
     extern _strlen
     extern _malloc
     ;  extern _ft_memcpy

_ft_strdup:
     call _strlen           ;rax = len of str
     mov r8, rdi            ;r8 = str = src
     inc rax                ;rax++
     ;  mov r9, rax         ;len of dest with '\0'
     mov rdi, rax           ;to send the len for malloc
     call _malloc           ;rax = ptr of dest
     ;  cmp rax, 0          ;malloc failled
     ;  jle _error_malloc
     ;  mov rdi, rax        ;malloc param 1 of ft_memcpy
     ;  mov rsi, r8         ;str in param 2 of ft_memcpy
     ;  mov rdx, r9         ;len of str with '\0' param 3 of ft_memcpy
     ;  call _ft_memcpy     ;call ft_memcpy
     ret
_error_malloc:
     xor rax, rax           ;return NULL
     ret

所有以ft_开头的函数都与libc Thx全部相同

最佳答案

此错误信息表明您使用对齐方式不足的堆栈调用了malloc。用于amd64的SysV-ABI要求在函数调用时将堆栈对齐为16个字节。

在您自己的代码中,可以通过确保始终将偶数个quadwords推入堆栈来确保这一点,并记住在输入时,由于返回地址已经在堆栈上,因此堆栈未对齐8个字节。

没有看到您的源代码,很难提供更具体的帮助。

关于macos - 我在ASM中的部署,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45477778/

10-09 13:52