mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
6418b5f4de
* Added c++17 test configurations for clang5.0 and clang6.0 * Fix #739 correct cppcorecheck warnings for clang-cl * Add clang-cl configurations * Corrections Appveyor; Temporarily disable msvc compilation for faster testing (#741) * Add path to clang-cl.exe (#741) * Escape backslash in path (#741) * Update vcpkg (#741) * Check vcpkg version; try without building vcpkg; use latest clang-cl from path (#741) * Fix blocks in ps script (#741) * Try accessing APPVEYOR_BUILD_FOLDER variable (#471) * Update span size() bug confirmation test for GCC 6.5 (#741) * MSVC flags to Clang-cl; disable c++98-compat and undefined macro warnings (#741) * Suppress clang warning on tests (missing-prototypes) (#741) * Fix clang warning -Wnewline-eof (#741) * Fix clang warning -Wdouble-promotion (#741) * Set linker explicitly * Clean condition statement * For Clang, fallback to the AppVeyor installed version of CMake * Fix clang warning -Wmissing-variable-declarations * Fallback to the MSVC linker until vcpkg has been updated * Revert "Fallback to the MSVC linker until vcpkg has been updated" This reverts commit7263f3289e
. * Fix clang warning -Wunused-member-function * Fix clang warning -Wmissing-noreturn * Fix clang warning -Winvalid-noreturn on Windows * Add macro block end comment on large #if blocks * Workaround: fallback to mscv link.exe * Workaround: get msvc paths into PowerShell through intermediate file * Workaround: fix, remove "PATH=" from text * Workaround: try with full-path; and return user PATH * Workaround: fix, escape backslashes * Revert all since "Workaround: fallback to mscv link.exe" did not work on AppVeyor This reverts the commits:bda3d6a428
97062933ac
0f4fb04bac
1b0c19afd1
a5739ea5f0
* Suppress output of git pull; remove vcpkg from cache * Re-enable AppVeyor builds for all platforms * Correct typo Co-Authored-By: Farwaykorse <Farwaykorse@users.noreply.github.com> * Add Clang-cl 7.0.0 to the supported platforms * Revert "Fix clang warning -Wunused-member-function" This reverts commit6fe1a42035
. * Fix or locally suppress clang warning -Wunused-member-function * format touched code and correct comment * git pull --quiet * fix logic error in workaround * fix missing bracket * Suppress output of mkdir * Replace MSBuild with Ninja * Suppress output of 7z * Add architecture flags for Clang * Drop workaround for lld-link * 7-zip Overwrite and Alternative output suppression without suppressing errors Replaces3c1c0794dd
* AppVeyor setup and CMake before build * reorder compiler configuration * remove unnecessary * remove -fno-strict-aliasing * remove -Wsign-conversion, since before v4.0 part of -Wconversion * -Wctor-dtor-privacy is GCC only * remove -Woverloaded-virtual part of -Wmost, part of -Wall * add -Wmissing-noreturn * remove the pragmas for -Wunused-member-function * Re-add MSBuild generator on AppVeyor * Print CMake commands * Add MSBuild toolset selection * Separate Architecture setting * clang-cl: add -Weverything * clang-cl -Wno-c++98-compat * clang-cl -Wno-c++98-compat-pedantic * clang-cl -Wno-missing-prototypes * clang-cl C++14 -Wno-unused-member-function * clang-cl -Wundef __GNUC__ * clang++: add -Weverything * clang++ -Wno-c++98-compat * clang++ -Wno-c++98-compat-pedantic * clang++ -Wno-missing-prototypes * clang++ -Wno-weak-vtables * clang++ C++14 -Wno-unused-member-function * clang++ fix -Wundef _MSC_VER * clang++ -Wno-padded * clang++ solve -Wdeprecated * Add AppleClang compiler target Since CMake v3.0 use of Clang for both is deprecated * clang++ v5.0 C++17 -Wno-undefined-func-template * Add VS2015 + LLVM/clang-cl to AppVeyor * Do not disable constexpr when compiling with clang-cl on Windows * Clean-up clang-only warnings (now under -Weverything) * Revert "Fix clang warning -Winvalid-noreturn on Windows" This reverts commit2238c4760e
. * Suppress -Winvalid-noreturn for the MS STL noexception workaround * CMake: put preprocessor definition in target_compile_definitions * Solve compiler warning C4668: __GNUC__ not defined
204 lines
6.1 KiB
Plaintext
204 lines
6.1 KiB
Plaintext
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
//
|
|
// This code is licensed under the MIT License (MIT).
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef GSL_BYTE_H
|
|
#define GSL_BYTE_H
|
|
|
|
//
|
|
// make suppress attributes work for some compilers
|
|
// Hopefully temporary until suppression standardization occurs
|
|
//
|
|
#if defined(__clang__)
|
|
#define GSL_SUPPRESS(x) [[gsl::suppress("x")]]
|
|
#else
|
|
#if defined(_MSC_VER)
|
|
#define GSL_SUPPRESS(x) [[gsl::suppress(x)]]
|
|
#else
|
|
#define GSL_SUPPRESS(x)
|
|
#endif // _MSC_VER
|
|
#endif // __clang__
|
|
|
|
#include <type_traits>
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push)
|
|
|
|
// Turn MSVC /analyze rules that generate too much noise. TODO: fix in the tool.
|
|
#pragma warning(disable : 26493) // don't use c-style casts // TODO: MSVC suppression in templates does not always work
|
|
|
|
#ifndef GSL_USE_STD_BYTE
|
|
// this tests if we are under MSVC and the standard lib has std::byte and it is enabled
|
|
#if defined(_HAS_STD_BYTE) && _HAS_STD_BYTE
|
|
|
|
#define GSL_USE_STD_BYTE 1
|
|
|
|
#else // defined(_HAS_STD_BYTE) && _HAS_STD_BYTE
|
|
|
|
#define GSL_USE_STD_BYTE 0
|
|
|
|
#endif // defined(_HAS_STD_BYTE) && _HAS_STD_BYTE
|
|
#endif // GSL_USE_STD_BYTE
|
|
|
|
#else // _MSC_VER
|
|
|
|
#ifndef GSL_USE_STD_BYTE
|
|
// this tests if we are under GCC or Clang with enough -std:c++1z power to get us std::byte
|
|
// also check if libc++ version is sufficient (> 5.0) or libstc++ actually contains std::byte
|
|
#if defined(__cplusplus) && (__cplusplus >= 201703L) && \
|
|
(defined(__cpp_lib_byte) && (__cpp_lib_byte >= 201603) || \
|
|
defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION >= 5000))
|
|
|
|
#define GSL_USE_STD_BYTE 1
|
|
#include <cstddef>
|
|
|
|
#else // defined(__cplusplus) && (__cplusplus >= 201703L) &&
|
|
// (defined(__cpp_lib_byte) && (__cpp_lib_byte >= 201603) ||
|
|
// defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION >= 5000))
|
|
|
|
#define GSL_USE_STD_BYTE 0
|
|
|
|
#endif //defined(__cplusplus) && (__cplusplus >= 201703L) &&
|
|
// (defined(__cpp_lib_byte) && (__cpp_lib_byte >= 201603) ||
|
|
// defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION >= 5000))
|
|
#endif // GSL_USE_STD_BYTE
|
|
|
|
#endif // _MSC_VER
|
|
|
|
// Use __may_alias__ attribute on gcc and clang
|
|
#if defined __clang__ || (defined(__GNUC__) && __GNUC__ > 5)
|
|
#define byte_may_alias __attribute__((__may_alias__))
|
|
#else // defined __clang__ || defined __GNUC__
|
|
#define byte_may_alias
|
|
#endif // defined __clang__ || defined __GNUC__
|
|
|
|
namespace gsl
|
|
{
|
|
#if GSL_USE_STD_BYTE
|
|
|
|
using std::byte;
|
|
using std::to_integer;
|
|
|
|
#else // GSL_USE_STD_BYTE
|
|
|
|
// This is a simple definition for now that allows
|
|
// use of byte within span<> to be standards-compliant
|
|
enum class byte_may_alias byte : unsigned char
|
|
{
|
|
};
|
|
|
|
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
|
constexpr byte& operator<<=(byte& b, IntegerType shift) noexcept
|
|
{
|
|
return b = byte(static_cast<unsigned char>(b) << shift);
|
|
}
|
|
|
|
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
|
constexpr byte operator<<(byte b, IntegerType shift) noexcept
|
|
{
|
|
return byte(static_cast<unsigned char>(b) << shift);
|
|
}
|
|
|
|
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
|
constexpr byte& operator>>=(byte& b, IntegerType shift) noexcept
|
|
{
|
|
return b = byte(static_cast<unsigned char>(b) >> shift);
|
|
}
|
|
|
|
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
|
constexpr byte operator>>(byte b, IntegerType shift) noexcept
|
|
{
|
|
return byte(static_cast<unsigned char>(b) >> shift);
|
|
}
|
|
|
|
constexpr byte& operator|=(byte& l, byte r) noexcept
|
|
{
|
|
return l = byte(static_cast<unsigned char>(l) | static_cast<unsigned char>(r));
|
|
}
|
|
|
|
constexpr byte operator|(byte l, byte r) noexcept
|
|
{
|
|
return byte(static_cast<unsigned char>(l) | static_cast<unsigned char>(r));
|
|
}
|
|
|
|
constexpr byte& operator&=(byte& l, byte r) noexcept
|
|
{
|
|
return l = byte(static_cast<unsigned char>(l) & static_cast<unsigned char>(r));
|
|
}
|
|
|
|
constexpr byte operator&(byte l, byte r) noexcept
|
|
{
|
|
return byte(static_cast<unsigned char>(l) & static_cast<unsigned char>(r));
|
|
}
|
|
|
|
constexpr byte& operator^=(byte& l, byte r) noexcept
|
|
{
|
|
return l = byte(static_cast<unsigned char>(l) ^ static_cast<unsigned char>(r));
|
|
}
|
|
|
|
constexpr byte operator^(byte l, byte r) noexcept
|
|
{
|
|
return byte(static_cast<unsigned char>(l) ^ static_cast<unsigned char>(r));
|
|
}
|
|
|
|
constexpr byte operator~(byte b) noexcept { return byte(~static_cast<unsigned char>(b)); }
|
|
|
|
template <class IntegerType, class = std::enable_if_t<std::is_integral<IntegerType>::value>>
|
|
constexpr IntegerType to_integer(byte b) noexcept
|
|
{
|
|
return static_cast<IntegerType>(b);
|
|
}
|
|
|
|
#endif // GSL_USE_STD_BYTE
|
|
|
|
template <bool E, typename T>
|
|
constexpr byte to_byte_impl(T t) noexcept
|
|
{
|
|
static_assert(
|
|
E, "gsl::to_byte(t) must be provided an unsigned char, otherwise data loss may occur. "
|
|
"If you are calling to_byte with an integer contant use: gsl::to_byte<t>() version.");
|
|
return static_cast<byte>(t);
|
|
}
|
|
template <>
|
|
// NOTE: need suppression since c++14 does not allow "return {t}"
|
|
// GSL_SUPPRESS(type.4) // NO-FORMAT: attribute // TODO: suppression does not work
|
|
constexpr byte to_byte_impl<true, unsigned char>(unsigned char t) noexcept
|
|
{
|
|
return byte(t);
|
|
}
|
|
|
|
template <typename T>
|
|
constexpr byte to_byte(T t) noexcept
|
|
{
|
|
return to_byte_impl<std::is_same<T, unsigned char>::value, T>(t);
|
|
}
|
|
|
|
template <int I>
|
|
constexpr byte to_byte() noexcept
|
|
{
|
|
static_assert(I >= 0 && I <= 255,
|
|
"gsl::byte only has 8 bits of storage, values must be in range 0-255");
|
|
return static_cast<byte>(I);
|
|
}
|
|
|
|
} // namespace gsl
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif // _MSC_VER
|
|
|
|
#endif // GSL_BYTE_H
|