防止 C++11 删除无限循环 [英] Prevent C++11 removal of endless loops

查看:27
本文介绍了防止 C++11 删除无限循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

As discussed in this question, C++11 optimizes endless loops away.

However, in embedded devices which have a single purpose, endless loops make sense and are actually quite often used. Even a completely empty while(1); is useful for a watchdog-assisted reset. Terminating but empty loops can also be useful in embedded development.

Is there an elegant way to specifically tell the compiler to not remove empty or endless loops, without disabling optimization altogether?

解决方案

One of the requirements for a loop to be removed (as mentioned in that question) is that it

  • does not access or modify volatile objects

So,

void wait_forever(void)
{
    volatile int i = 1;
    while (i) ;
}

should do the trick, although I would certainly verify this by looking at the disassembly of a program produced with your particular toolchain.

A function like this would be a good candidate for GCC's noreturn attribute as well.

void wait_forever(void) __attribute__ ((noreturn));

void wait_forever(void)
{
    volatile int i = 1;
    while (i) ;
}

int main(void)
{
    if (something_bad_happened)
        wait_forever();
}

这篇关于防止 C++11 删除无限循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆