admin管理员组文章数量:1401425
The following code is intended to have an infinite loop without termination and without output. Compiling with MSVC 2022 and GCC 14 and -O2 flag I obtained the same wrong behavior (output is produced).
// main.cpp
#include <test.h>
int main()
{
Test t;
t.test();
return 0;
}
// test.h
#pragma once
class Test
{
public:
void test();
private:
int m_i = 0;
};
// test.cpp
#include "test.h"
#include <iostream>
void Test::test()
{
while (true) {
if (m_i > 100) {
std::cout << "m_i is " << m_i << std::endl;
return;
}
}
}
the output is the following
m_i is 0
substituting the test function with the following
void Test::test()
{
while (true) {
if (int i = m_i; i == 100) {
std::cout << "m_i is " << m_i << std::endl;
std::cout << "i is " << i << std::endl;
return;
}
}
}
the output on GCC is the following
m_i is 0
i is 100
Debugging the code they seems both optimization bugs. Are there any useful references and rules to keep in consideration to avoid similar problems in advance? I encountered this problem debugging a memory corruption substituting and removing code, and I have been mislead for a while.
The following code is intended to have an infinite loop without termination and without output. Compiling with MSVC 2022 and GCC 14 and -O2 flag I obtained the same wrong behavior (output is produced).
// main.cpp
#include <test.h>
int main()
{
Test t;
t.test();
return 0;
}
// test.h
#pragma once
class Test
{
public:
void test();
private:
int m_i = 0;
};
// test.cpp
#include "test.h"
#include <iostream>
void Test::test()
{
while (true) {
if (m_i > 100) {
std::cout << "m_i is " << m_i << std::endl;
return;
}
}
}
the output is the following
m_i is 0
substituting the test function with the following
void Test::test()
{
while (true) {
if (int i = m_i; i == 100) {
std::cout << "m_i is " << m_i << std::endl;
std::cout << "i is " << i << std::endl;
return;
}
}
}
the output on GCC is the following
m_i is 0
i is 100
Debugging the code they seems both optimization bugs. Are there any useful references and rules to keep in consideration to avoid similar problems in advance? I encountered this problem debugging a memory corruption substituting and removing code, and I have been mislead for a while.
Share Improve this question edited Mar 22 at 20:51 JaMiT 17.3k5 gold badges18 silver badges39 bronze badges asked Mar 22 at 16:06 sarisari 611 silver badge4 bronze badges 7 | Show 2 more comments1 Answer
Reset to default 5The C++ standard says a C++ implementation may assume a program does not have any loops that do not either terminate or do “something useful.” Quoting from C++ draft N4849 6.9.2.2 [intro.progress]:
The implementation may assume that any thread will eventually do one of the following:
(1.1) — terminate,
(1.2) — make a call to a library I/O function,
(1.3) — perform an access through a volatile glvalue, or
(1.4) — perform a synchronization operation or an atomic operation.
[Note: This is intended to allow compiler transformations such as removal of empty loops, even when termination cannot be proven. —end note]
So this is not an optimization bug; it is allowed behavior. Essentially, C++ programmers are expected to know about this rule and not write code with an infinite loop that does nothing. The rule allows compilers to apply optimizations to loops that do terminate or do something useful but that the compiler may be unable to analyze fully.
本文标签: gccStrange behavior with C compilers optimizing infinite loopsStack Overflow
版权声明:本文标题:gcc - Strange behavior with C++ compilers optimizing infinite loops? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744309052a2599942.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
m_i
is never changed.while (true)
without side effects results in undefined behavior. – 3CxEZiVlQ Commented Mar 22 at 16:110
. – BoP Commented Mar 22 at 19:07