Error Raised When Attempting to Assign Value At Index of Array With x86 Assembly GNU GAS

倾然丶 夕夏残阳落幕 提交于 2020-01-15 03:46:33

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!