- 论坛徽章:
- 0
|
关于字符串的一个疑问
学习C++从C语言开始,学习C语言要从汇编开始.
作个测试,c语言代码产生的汇编.
- char str1[] = "This is just a sample";
- int main()
- {
- char* str2 = "This is another sample";
- char str3[] = "This is the third example";
- return (0);
- }
复制代码
编译器产生汇编代码.
- .file "readonly.c"
- .globl str1 ;全局变量str初始化
- .data
- .type str1, @object
- .size str1, 22
- str1:
- .string "This is just a sample"
- .section .rodata ;;表示这以后的部分是只读数据
- .LC0:
- .string "This is another sample";str2所指向的
- .LC1:
- .string "This is the third example";;str3
- .text
- .globl main
- .type main, @function
- main:
- pushl %ebp
- movl %esp, %ebp
- pushl %edi
- pushl %esi ;main函数的参数的入栈
- subl $32, %esp
- andl $-16, %esp
- movl $0, %eax
- addl $15, %eax
- addl $15, %eax
- shrl $4, %eax
- sall $4, %eax
- subl %eax, %esp ;上面一堆通过调整栈顶指针来为局部变量分配存储空间.
- movl $.LC0, -12(%ebp) ;初始化str2
- leal -38(%ebp), %edi ;只要装入只读存储区的有效地址就可以了
- movl $.LC1, %esi ;;从这里开始初始化数组str3
- cld
- movl $26, %ecx
- rep
- movsb ;通过字节传送初始化str3
- movl $0, %eax
- leal -8(%ebp), %esp
- popl %esi
- popl %edi
- leave
- ret
- .size main, .-main
- .ident "GCC: (GNU) 4.0.1 20050729 (Red Hat 4.0.1-6)"
- .section .note.GNU-stack,"",@progbits
复制代码 |
|