From: Marshall Clow Date: Mon, 1 Jul 2019 23:16:46 +0000 (+0000) Subject: Add a private call '__libcpp_is_constant_evaluated' which 'works' for old language... X-Git-Tag: llvmorg-10-init~1516 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=491ddc00ae7041b01ab00be18dbe7c39d09f94a1;p=platform%2Fupstream%2Fllvm.git Add a private call '__libcpp_is_constant_evaluated' which 'works' for old language versions and w/o any compiler support. 'Working', in this case, means that it returns false in those cases. llvm-svn: 364873 --- diff --git a/libcxx/include/type_traits b/libcxx/include/type_traits index 3b09c59..c7e4749 100644 --- a/libcxx/include/type_traits +++ b/libcxx/include/type_traits @@ -3999,13 +3999,18 @@ enum class endian }; #endif -#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED) +#ifndef _LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED +#if _LIBCPP_STD_VER > 17 _LIBCPP_INLINE_VISIBILITY inline constexpr bool is_constant_evaluated() noexcept { return __builtin_is_constant_evaluated(); } #endif +_LIBCPP_CONSTEXPR bool __libcpp_is_constant_evaluated() _NOEXCEPT { return __builtin_is_constant_evaluated(); } +#else +_LIBCPP_CONSTEXPR bool __libcpp_is_constant_evaluated() _NOEXCEPT { return false; } +#endif template using _IsCharLikeType = _And, is_trivial<_CharT> >; diff --git a/libcxx/test/libcxx/type_traits/is_constant_evaluated.pass.cpp b/libcxx/test/libcxx/type_traits/is_constant_evaluated.pass.cpp new file mode 100644 index 0000000..157d913 --- /dev/null +++ b/libcxx/test/libcxx/type_traits/is_constant_evaluated.pass.cpp @@ -0,0 +1,34 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// + +// + +// __libcpp_is_constant_evaluated() + +// returns false when there's no constant evaluation support from the compiler. +// as well as when called not in a constexpr context + +#include +#include + +#include "test_macros.h" + +int main (int, char**) { + ASSERT_SAME_TYPE(decltype(std::__libcpp_is_constant_evaluated()), bool); + ASSERT_NOEXCEPT(std::__libcpp_is_constant_evaluated()); + +#if !defined(_LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED) && !defined(_LIBCPP_CXX03_LANG) + static_assert(std::__libcpp_is_constant_evaluated(), ""); +#endif + + bool p = std::__libcpp_is_constant_evaluated(); + assert(!p); + + return 0; + }