c++ - "constexpr if"vs "if"优化 - 为什么需要 "constexpr"?

标签 c++ constexpr c++17 if-constexpr

C++1z 将引入“constexpr if”——一个 if 将根据条件删除其中一个分支。似乎合理且有用。

但是,是不是不能没有 constexpr 关键字呢?我认为在编译期间,编译器应该知道在编译期间是否知道条件。如果是,即使是最基本的优化级别也应该删除不必要的分支。

例如(见神 bolt :https://godbolt.org/g/IpY5y5):

int test() {
    const bool condition = true;
    if (condition) {
      return 0;
    } else {
      // optimized out even without "constexpr if"
      return 1;
    }
}

Godbolt explorer 显示,即使是带有 -O0 的 gcc-4.4.7 也没有编译“return 1”,所以它实现了 constexpr if 所 promise 的。显然,当条件是 constexpr 函数的结果时,这样的旧编译器将无法这样做,但事实仍然存在:现代编译器知道条件是否为 constexpr,不需要我明确地告诉它。

所以问题是:

为什么“constexpr if”中需要“constexpr”?

最佳答案

这很容易通过一个例子来解释。考虑

struct Cat { void meow() { } };
struct Dog { void bark() { } };

template <typename T>
void pet(T x)
{
    if(std::is_same<T, Cat>{}){ x.meow(); }
    else if(std::is_same<T, Dog>{}){ x.bark(); }
}

调用

pet(Cat{});
pet(Dog{});

会触发编译错误(wandbox example) ,因为 if 语句的两个分支都必须格式正确。

prog.cc:10:40: error: no member named 'bark' in 'Cat'
    else if(std::is_same<T, Dog>{}){ x.bark(); }
                                     ~ ^
prog.cc:15:5: note: in instantiation of function template specialization 'pet<Cat>' requested here
    pet(Cat{});
    ^
prog.cc:9:35: error: no member named 'meow' in 'Dog'
    if(std::is_same<T, Cat>{}){ x.meow(); }
                                ~ ^
prog.cc:16:5: note: in instantiation of function template specialization 'pet<Dog>' requested here
    pet(Dog{});
    ^

更改 pet 以使用 if constexpr

template <typename T>
void pet(T x)
{
    if constexpr(std::is_same<T, Cat>{}){ x.meow(); }
    else if constexpr(std::is_same<T, Dog>{}){ x.bark(); }
}

只要求分支是可解析的——只有匹配条件的分支才需要格式正确(wandbox example) .

片段

pet(Cat{});
pet(Dog{});

将按预期编译和工作。

关于c++ - "constexpr if"vs "if"优化 - 为什么需要 "constexpr"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40972666/

相关文章:

c++ - 同时迭代两个或多个容器的最佳方法是什么

c++ - readdir 在挂载的 cifs 目录上花费很长时间

c++ - const 指针作为参数传递给 constexpr 函数

C++ 等价于 Java Map getOrDefault?

c++ - 将成对的参数包解压缩为数组和元组

c++ - 在 C++ 中,seekg 似乎包含 cr 字符,但 read() 会删除它们

c++ - 如何从 recv winsock 函数接收二进制数据

c++ - 将set函数(setter)标记为constexpr的目的是什么?

c++ - C++ 中具有 std::vector 数据成员的 constexpr 成员函数

c++ - MSVC:具有模板化转换运算符和多重继承的错误