- 论坛徽章:
- 0
|
原帖由 Fixend 于 2008-12-13 19:10 发表 ![]()
简单一点说, “abc”是const char *型的,数据放在只读的内存区。
而char[]在栈,可写。
我为刚才的发帖感到脸红~~,你是对的,
char str1[]="abcd";
char str2[]="efgh";
*str1=*str2;
|
的汇编代码是: .file "2x.c"
.section .rodata
.LC0:
.string "abcd"
.LC1:
.string "efgh"
.text
.globl main
.type main, @function
main:
leal 4(%esp), %ecx
andl $-16, %esp
pushl -4(%ecx)
pushl %ebp
movl %esp, %ebp
pushl %ecx
subl $16, %esp
#put .LC0 in -9(%ebp) to -5(%ebp)
movl .LC0, %eax
movl %eax, -9(%ebp)
movzbl .LC0+4, %eax
movb %al, -5(%ebp)
#put .LC1 in -14(%ebp) to -10(%ebp)
movl .LC1, %eax
movl %eax, -14(%ebp)
movzbl .LC1+4, %eax
movb %al, -10(%ebp)
#*str1 = *str2
#not arrange address ,but arrange the first char;
movzbl -14(%ebp), %eax
movb %al, -9(%ebp)
# all done
addl $16, %esp
popl %ecx
popl %ebp
leal -4(%ecx), %esp
ret
.size main, .-main
.ident "GCC: (GNU) 4.2.3 (Debian 4.2.3-5)"
.section .note.GNU-stack,"",@progbits
|
char *str1="abcd";
char *str2="efgh";
*str1=*str2;
|
的汇编代码如下:
.file "3x.c"
.section .rodata
.LC0:
.string "abcd"
.LC1:
.string "efgh"
.text
.globl main
.type main, @function
main:
leal 4(%esp), %ecx
andl $-16, %esp
pushl -4(%ecx)
pushl %ebp
movl %esp, %ebp
pushl %ecx
subl $16, %esp
movl $.LC0, -12(%ebp)
movl $.LC1, -8(%ebp)
movl -8(%ebp), %eax
movzbl (%eax), %edx
movl -12(%ebp), %eax
movb %dl, (%eax)
addl $16, %esp
popl %ecx
popl %ebp
leal -4(%ecx), %esp
ret
.size main, .-main
.ident "GCC: (GNU) 4.2.3 (Debian 4.2.3-5)"
.section .note.GNU-stack,"",@progbits
|
声明为指针的时候,在栈上保存的是str的存储地址,而str是声明在.rodata区的,
所以最后
movl -12(%ebp), %eax
movb %dl, (%eax)
相当于尝试把str2的首字符写入 .rodata区,所以就SIGSEGV了,
而声明为char []的时候,其实就是把字符在栈上操作,因此能正常执行,
虽然这种操作没啥意义~~ |
评分
-
查看全部评分
|