Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Side by Side Diff: base/numerics/safe_conversions_impl.h

Issue 1338553003: Fix float to int conversion in base/numerics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment nits Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/numerics/safe_numerics_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_NUMERICS_SAFE_CONVERSIONS_IMPL_H_ 5 #ifndef BASE_NUMERICS_SAFE_CONVERSIONS_IMPL_H_
6 #define BASE_NUMERICS_SAFE_CONVERSIONS_IMPL_H_ 6 #define BASE_NUMERICS_SAFE_CONVERSIONS_IMPL_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/template_util.h" 10 #include "base/template_util.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 101
102 // This function creates a RangeConstraint from an upper and lower bound 102 // This function creates a RangeConstraint from an upper and lower bound
103 // check by taking advantage of the fact that only NaN can be out of range in 103 // check by taking advantage of the fact that only NaN can be out of range in
104 // both directions at once. 104 // both directions at once.
105 inline RangeConstraint GetRangeConstraint(bool is_in_upper_bound, 105 inline RangeConstraint GetRangeConstraint(bool is_in_upper_bound,
106 bool is_in_lower_bound) { 106 bool is_in_lower_bound) {
107 return GetRangeConstraint((is_in_upper_bound ? 0 : RANGE_OVERFLOW) | 107 return GetRangeConstraint((is_in_upper_bound ? 0 : RANGE_OVERFLOW) |
108 (is_in_lower_bound ? 0 : RANGE_UNDERFLOW)); 108 (is_in_lower_bound ? 0 : RANGE_UNDERFLOW));
109 } 109 }
110 110
111 // The following helper template addresses a corner case in range checks for
112 // conversion from a floating-point type to an integral type of smaller range
113 // but larger precision (e.g. float -> unsigned). The problem is as follows:
114 // 1. Integral maximum is always one less than a power of two, so it must be
115 // truncated to fit the mantissa of the floating point. The direction of
116 // rounding is implementation defined, but by default it's always IEEE
117 // floats, which round to nearest and thus result in a value of larger
118 // magnitude than the integral value.
119 // Example: float f = UINT_MAX; // f is 4294967296f but UINT_MAX
120 // // is 4294967295u.
121 // 2. If the floating point value is equal to the promoted integral maximum
122 // value, a range check will erroneously pass.
123 // Example: (4294967296f <= 4294967295u) // This is true due to a precision
124 // // loss in rounding up to float.
125 // 3. When the floating point value is then converted to an integral, the
126 // resulting value is out of range for the target integral type and
127 // thus is implementation defined.
128 // Example: unsigned u = (float)INT_MAX; // u will typically overflow to 0.
129 // To fix this bug we manually truncate the maximum value when the destination
130 // type is an integral of larger precision than the source floating-point type,
131 // such that the resulting maximum is represented exactly as a floating point.
132 template <typename Dst, typename Src>
133 struct NarrowingRange {
134 typedef typename std::numeric_limits<Src> SrcLimits;
135 typedef typename std::numeric_limits<Dst> DstLimits;
136
137 static Dst max() {
138 // The following logic avoids warnings where the max function is
139 // instantiated with invalid values for a bit shift (even though
140 // such a function can never be called).
141 static const int shift =
142 (MaxExponent<Src>::value > MaxExponent<Dst>::value &&
143 SrcLimits::digits < DstLimits::digits && SrcLimits::is_iec559 &&
144 !DstLimits::is_iec559)
145 ? (DstLimits::digits - SrcLimits::digits)
brucedawson 2015/09/12 01:28:43 Clever. 31 - 24 gives the magic. Or 32-24 for unsi
146 : 0;
147 return DstLimits::max() - static_cast<Dst>((UINTMAX_C(1) << shift) - 1);
brucedawson 2015/09/12 01:28:43 Maybe another comment explaining why this doesn't
148 }
149
150 static Dst min() {
151 return std::numeric_limits<Dst>::is_iec559 ? -DstLimits::max()
152 : DstLimits::min();
153 }
154 };
155
111 template < 156 template <
112 typename Dst, 157 typename Dst,
113 typename Src, 158 typename Src,
114 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed 159 IntegerRepresentation DstSign = std::numeric_limits<Dst>::is_signed
115 ? INTEGER_REPRESENTATION_SIGNED 160 ? INTEGER_REPRESENTATION_SIGNED
116 : INTEGER_REPRESENTATION_UNSIGNED, 161 : INTEGER_REPRESENTATION_UNSIGNED,
117 IntegerRepresentation SrcSign = std::numeric_limits<Src>::is_signed 162 IntegerRepresentation SrcSign = std::numeric_limits<Src>::is_signed
118 ? INTEGER_REPRESENTATION_SIGNED 163 ? INTEGER_REPRESENTATION_SIGNED
119 : INTEGER_REPRESENTATION_UNSIGNED, 164 : INTEGER_REPRESENTATION_UNSIGNED,
120 NumericRangeRepresentation DstRange = 165 NumericRangeRepresentation DstRange =
(...skipping 19 matching lines...) Expand all
140 185
141 // Signed to signed narrowing: Both the upper and lower boundaries may be 186 // Signed to signed narrowing: Both the upper and lower boundaries may be
142 // exceeded. 187 // exceeded.
143 template <typename Dst, typename Src> 188 template <typename Dst, typename Src>
144 struct DstRangeRelationToSrcRangeImpl<Dst, 189 struct DstRangeRelationToSrcRangeImpl<Dst,
145 Src, 190 Src,
146 INTEGER_REPRESENTATION_SIGNED, 191 INTEGER_REPRESENTATION_SIGNED,
147 INTEGER_REPRESENTATION_SIGNED, 192 INTEGER_REPRESENTATION_SIGNED,
148 NUMERIC_RANGE_NOT_CONTAINED> { 193 NUMERIC_RANGE_NOT_CONTAINED> {
149 static RangeConstraint Check(Src value) { 194 static RangeConstraint Check(Src value) {
150 return std::numeric_limits<Dst>::is_iec559 195 return GetRangeConstraint((value <= NarrowingRange<Dst, Src>::max()),
151 ? GetRangeConstraint((value < std::numeric_limits<Dst>::max()), 196 (value >= NarrowingRange<Dst, Src>::min()));
152 (value > -std::numeric_limits<Dst>::max()))
153 : GetRangeConstraint((value < std::numeric_limits<Dst>::max()),
154 (value > std::numeric_limits<Dst>::min()));
155 } 197 }
156 }; 198 };
157 199
158 // Unsigned to unsigned narrowing: Only the upper boundary can be exceeded. 200 // Unsigned to unsigned narrowing: Only the upper boundary can be exceeded.
159 template <typename Dst, typename Src> 201 template <typename Dst, typename Src>
160 struct DstRangeRelationToSrcRangeImpl<Dst, 202 struct DstRangeRelationToSrcRangeImpl<Dst,
161 Src, 203 Src,
162 INTEGER_REPRESENTATION_UNSIGNED, 204 INTEGER_REPRESENTATION_UNSIGNED,
163 INTEGER_REPRESENTATION_UNSIGNED, 205 INTEGER_REPRESENTATION_UNSIGNED,
164 NUMERIC_RANGE_NOT_CONTAINED> { 206 NUMERIC_RANGE_NOT_CONTAINED> {
165 static RangeConstraint Check(Src value) { 207 static RangeConstraint Check(Src value) {
166 return GetRangeConstraint(value < std::numeric_limits<Dst>::max(), true); 208 return GetRangeConstraint(value <= NarrowingRange<Dst, Src>::max(), true);
167 } 209 }
168 }; 210 };
169 211
170 // Unsigned to signed: The upper boundary may be exceeded. 212 // Unsigned to signed: The upper boundary may be exceeded.
171 template <typename Dst, typename Src> 213 template <typename Dst, typename Src>
172 struct DstRangeRelationToSrcRangeImpl<Dst, 214 struct DstRangeRelationToSrcRangeImpl<Dst,
173 Src, 215 Src,
174 INTEGER_REPRESENTATION_SIGNED, 216 INTEGER_REPRESENTATION_SIGNED,
175 INTEGER_REPRESENTATION_UNSIGNED, 217 INTEGER_REPRESENTATION_UNSIGNED,
176 NUMERIC_RANGE_NOT_CONTAINED> { 218 NUMERIC_RANGE_NOT_CONTAINED> {
177 static RangeConstraint Check(Src value) { 219 static RangeConstraint Check(Src value) {
178 return sizeof(Dst) > sizeof(Src) 220 return sizeof(Dst) > sizeof(Src)
179 ? RANGE_VALID 221 ? RANGE_VALID
180 : GetRangeConstraint( 222 : GetRangeConstraint(
181 value < static_cast<Src>(std::numeric_limits<Dst>::max()), 223 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
182 true); 224 true);
183 } 225 }
184 }; 226 };
185 227
186 // Signed to unsigned: The upper boundary may be exceeded for a narrower Dst, 228 // Signed to unsigned: The upper boundary may be exceeded for a narrower Dst,
187 // and any negative value exceeds the lower boundary. 229 // and any negative value exceeds the lower boundary.
188 template <typename Dst, typename Src> 230 template <typename Dst, typename Src>
189 struct DstRangeRelationToSrcRangeImpl<Dst, 231 struct DstRangeRelationToSrcRangeImpl<Dst,
190 Src, 232 Src,
191 INTEGER_REPRESENTATION_UNSIGNED, 233 INTEGER_REPRESENTATION_UNSIGNED,
192 INTEGER_REPRESENTATION_SIGNED, 234 INTEGER_REPRESENTATION_SIGNED,
193 NUMERIC_RANGE_NOT_CONTAINED> { 235 NUMERIC_RANGE_NOT_CONTAINED> {
194 static RangeConstraint Check(Src value) { 236 static RangeConstraint Check(Src value) {
195 return (MaxExponent<Dst>::value >= MaxExponent<Src>::value) 237 return (MaxExponent<Dst>::value >= MaxExponent<Src>::value)
196 ? GetRangeConstraint(true, value >= static_cast<Src>(0)) 238 ? GetRangeConstraint(true, value >= static_cast<Src>(0))
197 : GetRangeConstraint( 239 : GetRangeConstraint(
198 value < static_cast<Src>(std::numeric_limits<Dst>::max()), 240 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
199 value >= static_cast<Src>(0)); 241 value >= static_cast<Src>(0));
200 } 242 }
201 }; 243 };
202 244
203 template <typename Dst, typename Src> 245 template <typename Dst, typename Src>
204 inline RangeConstraint DstRangeRelationToSrcRange(Src value) { 246 inline RangeConstraint DstRangeRelationToSrcRange(Src value) {
205 static_assert(std::numeric_limits<Src>::is_specialized, 247 static_assert(std::numeric_limits<Src>::is_specialized,
206 "Argument must be numeric."); 248 "Argument must be numeric.");
207 static_assert(std::numeric_limits<Dst>::is_specialized, 249 static_assert(std::numeric_limits<Dst>::is_specialized,
208 "Result must be numeric."); 250 "Result must be numeric.");
209 return DstRangeRelationToSrcRangeImpl<Dst, Src>::Check(value); 251 return DstRangeRelationToSrcRangeImpl<Dst, Src>::Check(value);
210 } 252 }
211 253
212 } // namespace internal 254 } // namespace internal
213 } // namespace base 255 } // namespace base
214 256
215 #endif // BASE_NUMERICS_SAFE_CONVERSIONS_IMPL_H_ 257 #endif // BASE_NUMERICS_SAFE_CONVERSIONS_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | base/numerics/safe_numerics_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698