-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsized_int.h
112 lines (98 loc) · 5.3 KB
/
sized_int.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
* sized_int.h
*
* Copyright © 2018 Oliver Adams
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the “Software”), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* 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 SIZED_INT_H
#define SIZED_INT_H
#include <type_traits>
template<typename T, unsigned int length>
class sized_int
{
protected:
static_assert(std::is_unsigned<T>::value, "T must be an unsigned integral type");
typedef sized_int<T, length> type;
typedef T value_type;
static constexpr T ones = -1;
static constexpr T mask = ones >> (std::numeric_limits<T>::digits - length);
public:
sized_int() : data_(0) {}
sized_int(T value) : data_(value & mask) {}
type &operator=(const type &value) {data_ = value.data_; return *this;}
template<typename V, unsigned int len>
type &operator=(const sized_int<V, len> &value) {data_ = static_cast<T>(value.value()) & mask; return *this;}
type &operator=(T value) {data_ = value & mask; return *this;}
template<typename V>
type &operator+=(const sized_int<V, length> &value) {data_ = (data_ + static_cast<T>(value.value())) & mask; return *this;}
template<typename V>
type &operator-=(const sized_int<V, length> &value) {data_ = (data_ - static_cast<T>(value.value())) & mask; return *this;}
template<typename V>
type &operator*=(const sized_int<V, length> &value) {data_ = (data_ * static_cast<T>(value.value())) & mask; return *this;}
template<typename V>
type &operator/=(const sized_int<V, length> &value) {data_ = (data_ / static_cast<T>(value.value())) & mask; return *this;}
template<typename V>
type &operator%=(const sized_int<V, length> &value) {data_ = (data_ % static_cast<T>(value.value())) & mask; return *this;}
template<typename V>
type &operator|=(const sized_int<V, length> &value) {data_ |= static_cast<T>(value.value()); return *this;}
template<typename V>
type &operator&=(const sized_int<V, length> &value) {data_ &= static_cast<T>(value.value()); return *this;}
template<typename V>
type &operator^=(const sized_int<V, length> &value) {data_ ^= static_cast<T>(value.value()); return *this;}
type &operator<<=(unsigned int shift) {data_ = (data_ << shift) & mask; return *this;}
type &operator>>=(unsigned int shift) {data_ = (data_ >> shift) & mask; return *this;}
type &operator+=(T value) {data_ = (data_ + (value & mask)) & mask; return *this;}
type &operator-=(T value) {data_ = (data_ - (value & mask)) & mask; return *this;}
type &operator*=(T value) {data_ = (data_ * (value & mask)) & mask; return *this;}
type &operator/=(T value) {data_ = (data_ / (value & mask)) & mask; return *this;}
type &operator%=(T value) {data_ = (data_ % (value & mask)) & mask; return *this;}
type &operator|=(T value) {data_ = (data_ | value) & mask; return *this;}
type &operator&=(T value) {data_ = (data_ & value) & mask; return *this;}
type &operator^=(T value) {data_ = (data_ ^ value) & mask; return *this;}
template<typename V>
type operator+(const sized_int<V, length> &value) {return type(*this) += value;}
template<typename V>
type operator-(const sized_int<V, length> &value) {return type(*this) -= value;}
template<typename V>
type operator*(const sized_int<V, length> &value) {return type(*this) *= value;}
template<typename V>
type operator/(const sized_int<V, length> &value) {return type(*this) /= value;}
template<typename V>
type operator%(const sized_int<V, length> &value) {return type(*this) %= value;}
template<typename V>
type operator|(const sized_int<V, length> &value) {return type(*this) |= value;}
template<typename V>
type operator&(const sized_int<V, length> &value) {return type(*this) &= value;}
template<typename V>
type operator^(const sized_int<V, length> &value) {return type(*this) ^= value;}
type operator<<(unsigned int shift) {return type(*this) <<= shift;}
type operator>>(unsigned int shift) {return type(*this) >>= shift;}
type &operator++() {++data_; return *this;}
type operator++(int) {type t(*this); ++data_; return t;}
type &operator--() {--data_; return *this;}
type operator--(int) {type t(*this); --data_; return t;}
static constexpr T min() {return 0;}
static constexpr T max() {return mask;}
explicit operator T() const {return data_;}
T value() const {return data_;}
protected:
T data_;
};
#endif // SIZED_INT_H