CNL  2.0.2 (development)
Compositional Numeric Library
undefined.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_OVERFLOW_UNDEFINED_H)
8 #define CNL_IMPL_OVERFLOW_UNDEFINED_H
9 
10 #include "../custom_operator/homogeneous_operator_tag_base.h"
11 #include "../polarity.h"
12 #include "../unreachable.h"
13 #include "is_overflow_tag.h"
14 #include "is_tag.h"
15 #include "overflow_operator.h"
16 
18 namespace cnl {
32  : _impl::homogeneous_deduction_tag_base
33  , _impl::homogeneous_operator_tag_base {
34  };
35 
36  namespace _impl {
37  template<>
38  struct is_overflow_tag<undefined_overflow_tag> : std::true_type {
39  };
40 
41  template<typename Operator>
42  struct overflow_operator<Operator, undefined_overflow_tag, polarity::positive> {
43  template<typename Destination, typename Source>
44  [[nodiscard]] constexpr auto operator()(Source const&) const
45  {
46  return unreachable<Destination>("positive overflow");
47  }
48 
49  template<class... Operands>
50  [[nodiscard]] constexpr auto operator()(
51  Operands const&...) const
52  {
53  return unreachable<op_result<Operator, Operands...>>("positive overflow");
54  }
55  };
56 
57  template<typename Operator>
58  struct overflow_operator<Operator, undefined_overflow_tag, polarity::negative> {
59  template<typename Destination, typename Source>
60  [[nodiscard]] constexpr auto operator()(Source const&) const
61  {
62  return unreachable<Destination>("negative overflow");
63  }
64 
65  template<class... Operands>
66  [[nodiscard]] constexpr auto operator()(
67  Operands const&...) const
68  {
69  return unreachable<op_result<Operator, Operands...>>("negative overflow");
70  }
71  };
72  }
73 }
74 
75 #endif // CNL_IMPL_OVERFLOW_UNDEFINED_H
std::true_type
cnl::undefined_overflow_tag
tag to specify undefined-behavior-on-overflow behavior in arithemtic operations
Definition: undefined.h:31
cnl
compositional numeric library
Definition: abort.h:15