mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00
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:
parent
302ba4c918
commit
dbb9bc8c5c
3
cpp.hint
3
cpp.hint
@ -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()
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user