c++ - 在 GCC 工作正常的情况下使用 Clang 时无限递归模板实例化?

标签 c++ templates gcc clang ternary-operator

以下 C++ 代码的目的是将三元运算符 (?:) 包装在一个单独的函数中,稍后将有助于构建语法树。

在查看真正的 C++ 代码片段之前,让我们快速看一下它在伪代码中的作用:

bool recursive(bool v) {
    return v ? v : recursive(v);
}
int main() {
    bool r = recursive(true)
}

不幸的是,当三元运算符 (?:) 包含在模板函数中时,Clang 会在终止递归时遇到问题:

/****************** DECLARATIONS ******************/
template<typename T>
constexpr T
recursive(T t);

struct IfCase {
    template<typename T>
    constexpr T
    operator()(T t) const;
};

struct ElseCase {
    template<typename T>
    constexpr T
    operator()(T t) const;
};

#if defined(WORKS)
    static constexpr bool
    if_then_else_return(bool b, IfCase const& ic, ElseCase const& ec, bool x);
#else
    template<typename T, typename IfFunctor, typename ElseFunctor>
    static constexpr T
    if_then_else_return(T b, IfFunctor const& ic, ElseFunctor const& ec, T x);
#endif

/****************** DEFINITIONS ******************/
template<typename T>
constexpr T
IfCase::operator()(T t) const {
    return t; 
}

template<typename T>
constexpr T
recursive(T t) {
    return if_then_else_return(t, IfCase{}, ElseCase{}, t);
}

template<typename T>
constexpr T
ElseCase::operator()(T t) const {
    return recursive(t); 
}

#if defined(WORKS)
    constexpr bool
    if_then_else_return(bool b, IfCase const& ic, ElseCase const& ec, bool x) {
        return b ? ic(x) : ec(x);
    }
#else
    template<typename T, typename IfFunctor, typename ElseFunctor>
    constexpr T
    if_then_else_return(T b, IfFunctor const& ic, ElseFunctor const& ec, T x) {
        return b ? ic(x) : ec(x);
    }
#endif


/****************** CALL ******************/

int main() {
    constexpr auto r = recursive(true);
}

构建结果:

GCC (4.9.2) 编译两个变体都没有错误,但 Clang(3.5 到 3.8)失败并显示以下错误消息:

main.cpp:56:14: fatal error: recursive template instantiation exceeded maximum depth of 256
                return b ? ic(x) : ec(x);
                           ^
/*** the next error messages for lines 64, 38 and 56 are repeated several times ***/

main.cpp:56:22: note: in instantiation of function template specialization 'ElseCase::operator()<bool>' requested here
                return b ? ic(x) : ec(x);
                                   ^
main.cpp:38:9: note: in instantiation of function template specialization 'if_then_else_return<bool, IfCase, ElseCase>' requested here
        return if_then_else_return(t, IfCase{}, ElseCase{}, t);
               ^
main.cpp:64:21: note: in instantiation of function template specialization 'recursive<bool>' requested here
        constexpr auto r = recursive(true);
                           ^
1 error generated.

但是为什么?如何重写这段代码才能让 Clang 不再提示?

非常感谢您。

编辑 1:

  • 我缩短了编译器消息,希望能提高它的可读性。如需完整回溯,请查看上面提供的那些 Coliru 链接。

  • 删除 constexpr 说明符将解决此 Clang 错误。但这也会降低功能,因此不是一种选择。

最佳答案

一种解决方法是通过向参与递归的构造的模板参数添加计数器、在递归调用时更新计数器并使用部分特化来终止递归来自己限制递归。

我对您的程序进行了以下更改:

  • IfCaseElseCase(IfCase 仅用于对称)更改为模板类,而不是具有模板成员函数的常规类。这允许部分特化。

  • ElseCaserecursive() 添加了整数计数器模板参数。

  • ElseCase 中调用 recursive() 时增加了计数器。

  • 在不进行递归调用的任意递归深度创建了 ElseCase 的部分特化。应调整最大深度以避免 clang++ 限制。

代码如下:

#include <cassert>

/****************** DECLARATIONS ******************/
template<typename T, int N = 0>
constexpr T
recursive(T t);

template<typename T>
struct IfCase;

template<typename T, int N>
struct ElseCase;

#if defined(WORKS)
    static constexpr bool
    if_then_else_return(bool b, IfCase<bool> const& ic, ElseCase<bool> const& ec, bool x);
#else
    template<typename T, typename IfFunctor, typename ElseFunctor>
    static constexpr T
    if_then_else_return(T b, IfFunctor const& ic, ElseFunctor const& ec, T x);
#endif

/****************** DEFINITIONS ******************/
template<typename T>
struct IfCase {
    constexpr T
    operator()(T t) const {
       return t;
    }
};

template<typename T, int N>
constexpr T
recursive(T t) {
   return if_then_else_return(t, IfCase<T>{}, ElseCase<T, N>{}, t);
}

template<typename T, int N>
struct ElseCase {
    constexpr T
    operator()(T t) const {
       return recursive<T, N + 1>(t);
    }
};

static constexpr int MaxRecursionDepth = 10;

template<typename T>
struct ElseCase<T, MaxRecursionDepth> {
    constexpr T
    operator()(T t) const {
       assert(false); // OK in C++14!
       return t;
    }
};

#if defined(WORKS)
    constexpr bool
    if_then_else_return(bool b, IfCase<bool> const& ic, ElseCase<bool> const& ec, bool x) {
        return b ? ic(x) : ec(x);
    }
#else
    template<typename T, typename IfFunctor, typename ElseFunctor>
    constexpr T
    if_then_else_return(T b, IfFunctor const& ic, ElseFunctor const& ec, T x) {
        return b ? ic(x) : ec(x);
    }
#endif


/****************** CALL ******************/

int main() {
    constexpr auto r = recursive(true);
}

有效 at CoLiRu .


我最初担心如何检测实际的递归深度错误,因为我原来的部分特化类会默默地返回错误的答案。由于您使用的是 -std=c++14assertions in constexpr functions are valid ,这对我来说是个新闻。我已经更新了代码以使用它。

关于c++ - 在 GCC 工作正常的情况下使用 Clang 时无限递归模板实例化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37931284/

相关文章:

c++ -/usr/include/x86_64-linux-gnu/bits/string_fortified.h :106:10: error: ‘__builtin_strncpy’

c++ - 来自 boost::lexical_cast 的奇怪异常与 boost::filesystem

c++ - 使用 STL 容器初始化 Lemon Graph Library 中的图形

django - 如何实时重新加载Django模板?

java - 需要更好的模板语言

c++ - 'auto ... arg' 的参数包形式在 lambda 中启用但在函数中没有启用?

linux - 说服 gcc 忽略系统库以支持本地安装的库

c++ - 使用 makefile 将静态库与 OTL 链接时 undefined reference

c++ - 将字符串从一个 C++ 程序发送到另一个程序并等待响应

c++ - 使用 boost 图形库的模板化 typedef soup