- 论坛徽章:
- 0
|
这东西在C语言中是语言的组成部分,不是BUG
因为编译器对待
while(k != 2)
{
...
}
时,会根据{}里面的内容来编译while (k != 2)
还是看看代码
volatile.c:
int k = 1;
extern void fun();
int test()
{
while (k != 2) {
fun();
}
}
.file "volatile.c"
.text
.p2align 4,,15
.globl test
.type test, @function
test:
pushl %ebp
movl %esp, %ebp
subl $8, %esp
cmpl $2, k
je .L5
.p2align 4,,7
.L6:
call fun
cmpl $2, k
jne .L6
.L5:
leave
.p2align 4,,2
ret
.size test, .-test
.globl k
.data
.align 4
.type k, @object
.size k, 4
k:
.long 1
.ident "GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7)"
.section .note.GNU-stack,"",@progbits
#cc -O2 -S volatile
#cat volatile.s
.file "volatile.c"
.text
.p2align 4,,15
.globl test
.type test, @function
test:
movl k, %eax
pushl %ebp
movl %esp, %ebp
.p2align 4,,7
.L3:
cmpl $2, %eax/////////
jne .L3
popl %ebp
ret
.size test, .-test
.globl k
.data
.align 4
.type k, @object
.size k, 4
k:
.long 1
.ident "GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7)"
.section .note.GNU-stack,"",@progbits
#cat volatile_2.c
int k = 1;
extern void fun();
int test()
{
while (k != 2) {
fun();
}
}
#cc -O2 -S volatile_2.c
#cat volatile_2.s
.file "volatile.c"
.text
.p2align 4,,15
.globl test
.type test, @function
test:
pushl %ebp
movl %esp, %ebp
subl $8, %esp
cmpl $2, k
je .L5
.p2align 4,,7
.L6:
call fun
cmpl $2, k///////////
jne .L6
.L5:
leave
.p2align 4,,2
ret
.size test, .-test
.globl k
.data
.align 4
.type k, @object
.size k, 4
k:
.long 1
.ident "GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7)"
.section .note.GNU-stack,"",@progbits
可以看出,根据{}内容得到不同结果,至于什么时候生成什么结果,就是C标准里面规定的,可以参考一下
不过可以如果{}里面调用了一个可能会修改k的函数(比如fun,无论是否修改,编译的时候不知道,编译器只能假设会修改), 那么k将不能被优化 |
|