blob: 716cb87debeeb55f0309c6046ca7b1d15eca1bcb (
plain)
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
113
114
115
116
117
118
119
120
121
122
123
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef vm_Uint8Clamped_h
#define vm_Uint8Clamped_h
#include <stdint.h>
#include "jstypes.h"
namespace js {
extern uint32_t JS_FASTCALL ClampDoubleToUint8(const double x);
struct uint8_clamped {
uint8_t val;
uint8_clamped() = default;
uint8_clamped(const uint8_clamped& other) = default;
// invoke our assignment helpers for constructor conversion
explicit uint8_clamped(uint8_t x) { *this = x; }
explicit uint8_clamped(uint16_t x) { *this = x; }
explicit uint8_clamped(uint32_t x) { *this = x; }
explicit uint8_clamped(uint64_t x) { *this = x; }
explicit uint8_clamped(int8_t x) { *this = x; }
explicit uint8_clamped(int16_t x) { *this = x; }
explicit uint8_clamped(int32_t x) { *this = x; }
explicit uint8_clamped(int64_t x) { *this = x; }
explicit uint8_clamped(double x) { *this = x; }
uint8_clamped& operator=(const uint8_clamped& x) = default;
uint8_clamped& operator=(uint8_t x) {
val = x;
return *this;
}
uint8_clamped& operator=(uint16_t x) {
val = (x > 255) ? 255 : uint8_t(x);
return *this;
}
uint8_clamped& operator=(uint32_t x) {
val = (x > 255) ? 255 : uint8_t(x);
return *this;
}
uint8_clamped& operator=(uint64_t x) {
val = (x > 255) ? 255 : uint8_t(x);
return *this;
}
uint8_clamped& operator=(int8_t x) {
val = (x >= 0) ? uint8_t(x) : 0;
return *this;
}
uint8_clamped& operator=(int16_t x) {
val = (x >= 0) ? ((x < 255) ? uint8_t(x) : 255) : 0;
return *this;
}
uint8_clamped& operator=(int32_t x) {
val = (x >= 0) ? ((x < 255) ? uint8_t(x) : 255) : 0;
return *this;
}
uint8_clamped& operator=(int64_t x) {
val = (x >= 0) ? ((x < 255) ? uint8_t(x) : 255) : 0;
return *this;
}
uint8_clamped& operator=(const double x) {
val = uint8_t(ClampDoubleToUint8(x));
return *this;
}
operator uint8_t() const { return val; }
void staticAsserts() {
static_assert(sizeof(uint8_clamped) == 1,
"uint8_clamped must be layout-compatible with uint8_t");
}
};
/* Note that we can't use std::numeric_limits here due to uint8_clamped. */
template <typename T>
inline constexpr bool TypeIsFloatingPoint() {
return false;
}
template <>
inline constexpr bool TypeIsFloatingPoint<float>() {
return true;
}
template <>
inline constexpr bool TypeIsFloatingPoint<double>() {
return true;
}
template <typename T>
inline constexpr bool TypeIsUnsigned() {
return false;
}
template <>
inline constexpr bool TypeIsUnsigned<uint8_t>() {
return true;
}
template <>
inline constexpr bool TypeIsUnsigned<uint16_t>() {
return true;
}
template <>
inline constexpr bool TypeIsUnsigned<uint32_t>() {
return true;
}
} // namespace js
#endif // vm_Uint8Clamped_h
|