Add a noinline helper method to throw jpegls_error objects

The normal code path of the check_jpegls_errc  is to not throw. Use a helper function to move the exceptional path out of this function.
This commit is contained in:
Victor Derks 2019-11-28 23:35:39 +01:00
parent 302ba4c918
commit dbb9bc8c5c
2 changed files with 30 additions and 6 deletions

View File

@ -14,6 +14,7 @@
#define CHARLS_DEPRECATED [[deprecated]]
#define CHARLS_FINAL final
#define CHARLS_NOEXCEPT noexcept
#define CHARLS_NO_INLINE
#define FORCE_INLINE
#define MSVC_WARNING_SUPPRESS(x)
#define MSVC_WARNING_UNSUPPRESS()
#define MSVC_WARNING_UNSUPPRESS()

View File

@ -37,21 +37,44 @@ CHARLS_NO_DISCARD inline std::error_code make_error_code(jpegls_errc error_value
class jpegls_error final : public std::system_error
{
public:
explicit jpegls_error(std::error_code ec)
: system_error{ec}
explicit jpegls_error(std::error_code ec) :
system_error{ec}
{
}
explicit jpegls_error(jpegls_errc error_value)
: system_error{error_value}
explicit jpegls_error(jpegls_errc error_value) :
system_error{error_value}
{
}
};
namespace impl {
#if defined(_MSC_VER)
#define CHARLS_NO_INLINE __declspec(noinline)
#elif defined(__GNUC__)
#define CHARLS_NO_INLINE __attribute__((noinline))
#elif defined(__clang__)
#define CHARLS_NO_INLINE __attribute__((noinline))
#else
#define CHARLS_NO_INLINE
#endif
[[noreturn]] inline CHARLS_NO_INLINE void throw_jpegls_error(const std::error_code ec)
{
throw jpegls_error(ec);
}
#undef CHARLS_NO_INLINE
} // namespace impl
inline void check_jpegls_errc(const std::error_code ec)
{
if (ec)
throw jpegls_error(ec);
{
impl::throw_jpegls_error(ec); // not inlined by design, as this code path is the exceptional case.
}
}
} // namespace charls