问题
I am using x86
GNU assembly with GCC and am attempting to implement the Assembly equivalent of the following c/c++
:
int x[10];
x[0] = 5;
However, when I attempt to run (with command ./a.out
) my Assembly code below (after first compiling with the gcc filename.s
), the error Segmentation fault: 11
is printed to the console:
.data
x:.fill 10
index:.int 0
.text
.globl _main
_main:
pushq %rbp
movq %rsp, %rbp
subq $16, %rsp
lea x(%rip), %rdi
mov index(%rip), %rsi;
movl $5, %eax;
movl %eax, (%rdi, %rsi, 4);
leave
ret
In order to declare the array, I followed the instructions found here: Declaring Arrays In x86 Assembly.
Does anyone know why this behavior is happening? I am running this code on Mac OSX with the gcc
compiler using GNU GAS
syntax.
回答1:
As pointed out by @MichaelPetch, the byte size must be including with the .fill
statement:
x:.fill 10, 4
来源:https://stackoverflow.com/questions/51255771/error-raised-when-attempting-to-assign-value-at-index-of-array-with-x86-assembly