grpc 1.26.0 → 1.27.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1654 -1519
  3. data/etc/roots.pem +44 -0
  4. data/include/grpc/grpc_security.h +37 -15
  5. data/include/grpc/grpc_security_constants.h +27 -0
  6. data/include/grpc/impl/codegen/grpc_types.h +14 -0
  7. data/include/grpc/impl/codegen/port_platform.h +1 -1
  8. data/src/core/ext/filters/client_channel/client_channel.cc +0 -20
  9. data/src/core/ext/filters/client_channel/http_proxy.cc +4 -4
  10. data/src/core/ext/filters/client_channel/lb_policy.cc +4 -3
  11. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +191 -201
  12. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
  14. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +3 -2
  15. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +88 -121
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +28 -57
  17. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +0 -7
  18. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +8 -9
  19. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +53 -34
  20. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +18 -5
  21. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +24 -19
  22. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +2 -1
  23. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +4 -2
  24. data/src/core/ext/filters/client_channel/server_address.cc +6 -9
  25. data/src/core/ext/filters/client_channel/server_address.h +3 -10
  26. data/src/core/ext/filters/client_channel/xds/xds_api.cc +394 -150
  27. data/src/core/ext/filters/client_channel/xds/xds_api.h +75 -35
  28. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +59 -22
  29. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +13 -9
  30. data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +8 -6
  31. data/src/core/ext/filters/client_channel/xds/xds_client.cc +456 -175
  32. data/src/core/ext/filters/client_channel/xds/xds_client.h +33 -21
  33. data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +5 -8
  34. data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +18 -24
  35. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +2 -2
  36. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +13 -5
  37. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +34 -0
  38. data/src/core/lib/channel/channelz.h +11 -1
  39. data/src/core/lib/gpr/time_precise.cc +1 -1
  40. data/src/core/lib/gprpp/optional.h +26 -0
  41. data/src/core/lib/gprpp/string_view.h +14 -10
  42. data/src/core/lib/iomgr/executor.cc +1 -1
  43. data/src/core/lib/iomgr/fork_posix.cc +4 -0
  44. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
  45. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
  46. data/src/core/lib/iomgr/socket_utils_common_posix.cc +14 -0
  47. data/src/core/lib/iomgr/socket_utils_posix.h +12 -0
  48. data/src/core/lib/iomgr/tcp_custom.h +3 -0
  49. data/src/core/lib/iomgr/tcp_posix.cc +607 -56
  50. data/src/core/lib/iomgr/tcp_server_custom.cc +15 -2
  51. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +8 -0
  52. data/src/core/lib/json/json.h +11 -1
  53. data/src/core/lib/json/json_reader.cc +206 -28
  54. data/src/core/lib/json/json_writer.cc +111 -24
  55. data/src/core/lib/security/credentials/composite/composite_credentials.cc +7 -0
  56. data/src/core/lib/security/credentials/composite/composite_credentials.h +5 -1
  57. data/src/core/lib/security/credentials/credentials.h +10 -1
  58. data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -1
  59. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +1 -1
  60. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -4
  61. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -1
  62. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +20 -0
  63. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +8 -0
  64. data/src/core/lib/security/credentials/tls/{spiffe_credentials.cc → tls_credentials.cc} +23 -24
  65. data/src/core/lib/security/credentials/tls/{spiffe_credentials.h → tls_credentials.h} +9 -9
  66. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +13 -0
  67. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +22 -2
  68. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +2 -2
  69. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +2 -2
  70. data/src/core/lib/security/security_connector/local/local_security_connector.cc +30 -3
  71. data/src/core/lib/security/security_connector/ssl_utils.cc +45 -3
  72. data/src/core/lib/security/security_connector/ssl_utils.h +12 -0
  73. data/src/core/lib/security/security_connector/tls/{spiffe_security_connector.cc → tls_security_connector.cc} +82 -69
  74. data/src/core/lib/security/security_connector/tls/{spiffe_security_connector.h → tls_security_connector.h} +17 -18
  75. data/src/core/lib/security/transport/client_auth_filter.cc +33 -0
  76. data/src/core/lib/surface/completion_queue.cc +22 -1
  77. data/src/core/lib/surface/version.cc +1 -1
  78. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +11 -1
  79. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
  80. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +3 -3
  81. data/src/core/tsi/fake_transport_security.cc +7 -3
  82. data/src/core/tsi/fake_transport_security.h +2 -0
  83. data/src/core/tsi/ssl_transport_security.cc +144 -8
  84. data/src/core/tsi/ssl_transport_security.h +15 -1
  85. data/src/core/tsi/transport_security.cc +13 -0
  86. data/src/core/tsi/transport_security_grpc.cc +2 -2
  87. data/src/core/tsi/transport_security_grpc.h +2 -2
  88. data/src/core/tsi/transport_security_interface.h +12 -0
  89. data/src/ruby/bin/math_pb.rb +5 -5
  90. data/src/ruby/ext/grpc/rb_call_credentials.c +4 -1
  91. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  92. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +4 -1
  93. data/src/ruby/lib/grpc/version.rb +1 -1
  94. data/src/ruby/pb/grpc/health/v1/health_pb.rb +3 -3
  95. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -1
  96. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +23 -13
  97. data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
  98. data/third_party/abseil-cpp/absl/base/attributes.h +609 -0
  99. data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
  100. data/third_party/abseil-cpp/absl/base/casts.h +184 -0
  101. data/third_party/abseil-cpp/absl/base/config.h +622 -0
  102. data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
  103. data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
  104. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
  105. data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +179 -0
  106. data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
  107. data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
  108. data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
  109. data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
  110. data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
  111. data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
  112. data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
  113. data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
  114. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
  115. data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
  116. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +237 -0
  117. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +179 -0
  118. data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
  119. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
  120. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
  121. data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
  122. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +67 -0
  123. data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
  124. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
  125. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
  126. data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
  127. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +414 -0
  128. data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
  129. data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
  130. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +140 -0
  131. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +250 -0
  132. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
  133. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
  134. data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
  135. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
  136. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +103 -0
  137. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
  138. data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
  139. data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
  140. data/third_party/abseil-cpp/absl/base/macros.h +220 -0
  141. data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
  142. data/third_party/abseil-cpp/absl/base/options.h +214 -0
  143. data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
  144. data/third_party/abseil-cpp/absl/base/port.h +26 -0
  145. data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
  146. data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
  147. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
  148. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
  149. data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
  150. data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
  151. data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
  152. data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
  153. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
  154. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
  155. data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
  156. data/third_party/abseil-cpp/absl/strings/ascii.h +241 -0
  157. data/third_party/abseil-cpp/absl/strings/charconv.cc +985 -0
  158. data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
  159. data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
  160. data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
  161. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
  162. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
  163. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +421 -0
  164. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
  165. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
  166. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
  167. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
  168. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
  169. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
  170. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
  171. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
  172. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
  173. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
  174. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
  175. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
  176. data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
  177. data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
  178. data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
  179. data/third_party/abseil-cpp/absl/strings/match.h +90 -0
  180. data/third_party/abseil-cpp/absl/strings/numbers.cc +916 -0
  181. data/third_party/abseil-cpp/absl/strings/numbers.h +263 -0
  182. data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
  183. data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
  184. data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
  185. data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
  186. data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
  187. data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
  188. data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
  189. data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
  190. data/third_party/abseil-cpp/absl/strings/string_view.h +615 -0
  191. data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
  192. data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
  193. data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
  194. data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
  195. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
  196. data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
  197. data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
  198. data/third_party/abseil-cpp/absl/types/optional.h +776 -0
  199. data/third_party/abseil-cpp/absl/types/span.h +713 -0
  200. data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
  201. data/third_party/upb/upb/decode.c +4 -0
  202. data/third_party/upb/upb/port.c +0 -1
  203. data/third_party/upb/upb/port_def.inc +1 -3
  204. data/third_party/upb/upb/table.c +2 -1
  205. metadata +147 -43
  206. data/src/core/lib/json/json_common.h +0 -34
  207. data/src/core/lib/json/json_reader.h +0 -146
  208. data/src/core/lib/json/json_string.cc +0 -367
  209. data/src/core/lib/json/json_writer.h +0 -84
@@ -0,0 +1,200 @@
1
+ // Copyright 2017 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #include "absl/strings/ascii.h"
16
+
17
+ namespace absl {
18
+ ABSL_NAMESPACE_BEGIN
19
+ namespace ascii_internal {
20
+
21
+ // # Table generated by this Python code (bit 0x02 is currently unused):
22
+ // TODO(mbar) Move Python code for generation of table to BUILD and link here.
23
+
24
+ // NOTE: The kAsciiPropertyBits table used within this code was generated by
25
+ // Python code of the following form. (Bit 0x02 is currently unused and
26
+ // available.)
27
+ //
28
+ // def Hex2(n):
29
+ // return '0x' + hex(n/16)[2:] + hex(n%16)[2:]
30
+ // def IsPunct(ch):
31
+ // return (ord(ch) >= 32 and ord(ch) < 127 and
32
+ // not ch.isspace() and not ch.isalnum())
33
+ // def IsBlank(ch):
34
+ // return ch in ' \t'
35
+ // def IsCntrl(ch):
36
+ // return ord(ch) < 32 or ord(ch) == 127
37
+ // def IsXDigit(ch):
38
+ // return ch.isdigit() or ch.lower() in 'abcdef'
39
+ // for i in range(128):
40
+ // ch = chr(i)
41
+ // mask = ((ch.isalpha() and 0x01 or 0) |
42
+ // (ch.isalnum() and 0x04 or 0) |
43
+ // (ch.isspace() and 0x08 or 0) |
44
+ // (IsPunct(ch) and 0x10 or 0) |
45
+ // (IsBlank(ch) and 0x20 or 0) |
46
+ // (IsCntrl(ch) and 0x40 or 0) |
47
+ // (IsXDigit(ch) and 0x80 or 0))
48
+ // print Hex2(mask) + ',',
49
+ // if i % 16 == 7:
50
+ // print ' //', Hex2(i & 0x78)
51
+ // elif i % 16 == 15:
52
+ // print
53
+
54
+ // clang-format off
55
+ // Array of bitfields holding character information. Each bit value corresponds
56
+ // to a particular character feature. For readability, and because the value
57
+ // of these bits is tightly coupled to this implementation, the individual bits
58
+ // are not named. Note that bitfields for all characters above ASCII 127 are
59
+ // zero-initialized.
60
+ const unsigned char kPropertyBits[256] = {
61
+ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, // 0x00
62
+ 0x40, 0x68, 0x48, 0x48, 0x48, 0x48, 0x40, 0x40,
63
+ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, // 0x10
64
+ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
65
+ 0x28, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, // 0x20
66
+ 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
67
+ 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, // 0x30
68
+ 0x84, 0x84, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
69
+ 0x10, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x05, // 0x40
70
+ 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
71
+ 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, // 0x50
72
+ 0x05, 0x05, 0x05, 0x10, 0x10, 0x10, 0x10, 0x10,
73
+ 0x10, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x05, // 0x60
74
+ 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
75
+ 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, // 0x70
76
+ 0x05, 0x05, 0x05, 0x10, 0x10, 0x10, 0x10, 0x40,
77
+ };
78
+
79
+ // Array of characters for the ascii_tolower() function. For values 'A'
80
+ // through 'Z', return the lower-case character; otherwise, return the
81
+ // identity of the passed character.
82
+ const char kToLower[256] = {
83
+ '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
84
+ '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f',
85
+ '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17',
86
+ '\x18', '\x19', '\x1a', '\x1b', '\x1c', '\x1d', '\x1e', '\x1f',
87
+ '\x20', '\x21', '\x22', '\x23', '\x24', '\x25', '\x26', '\x27',
88
+ '\x28', '\x29', '\x2a', '\x2b', '\x2c', '\x2d', '\x2e', '\x2f',
89
+ '\x30', '\x31', '\x32', '\x33', '\x34', '\x35', '\x36', '\x37',
90
+ '\x38', '\x39', '\x3a', '\x3b', '\x3c', '\x3d', '\x3e', '\x3f',
91
+ '\x40', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
92
+ 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
93
+ 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
94
+ 'x', 'y', 'z', '\x5b', '\x5c', '\x5d', '\x5e', '\x5f',
95
+ '\x60', '\x61', '\x62', '\x63', '\x64', '\x65', '\x66', '\x67',
96
+ '\x68', '\x69', '\x6a', '\x6b', '\x6c', '\x6d', '\x6e', '\x6f',
97
+ '\x70', '\x71', '\x72', '\x73', '\x74', '\x75', '\x76', '\x77',
98
+ '\x78', '\x79', '\x7a', '\x7b', '\x7c', '\x7d', '\x7e', '\x7f',
99
+ '\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
100
+ '\x88', '\x89', '\x8a', '\x8b', '\x8c', '\x8d', '\x8e', '\x8f',
101
+ '\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
102
+ '\x98', '\x99', '\x9a', '\x9b', '\x9c', '\x9d', '\x9e', '\x9f',
103
+ '\xa0', '\xa1', '\xa2', '\xa3', '\xa4', '\xa5', '\xa6', '\xa7',
104
+ '\xa8', '\xa9', '\xaa', '\xab', '\xac', '\xad', '\xae', '\xaf',
105
+ '\xb0', '\xb1', '\xb2', '\xb3', '\xb4', '\xb5', '\xb6', '\xb7',
106
+ '\xb8', '\xb9', '\xba', '\xbb', '\xbc', '\xbd', '\xbe', '\xbf',
107
+ '\xc0', '\xc1', '\xc2', '\xc3', '\xc4', '\xc5', '\xc6', '\xc7',
108
+ '\xc8', '\xc9', '\xca', '\xcb', '\xcc', '\xcd', '\xce', '\xcf',
109
+ '\xd0', '\xd1', '\xd2', '\xd3', '\xd4', '\xd5', '\xd6', '\xd7',
110
+ '\xd8', '\xd9', '\xda', '\xdb', '\xdc', '\xdd', '\xde', '\xdf',
111
+ '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7',
112
+ '\xe8', '\xe9', '\xea', '\xeb', '\xec', '\xed', '\xee', '\xef',
113
+ '\xf0', '\xf1', '\xf2', '\xf3', '\xf4', '\xf5', '\xf6', '\xf7',
114
+ '\xf8', '\xf9', '\xfa', '\xfb', '\xfc', '\xfd', '\xfe', '\xff',
115
+ };
116
+
117
+ // Array of characters for the ascii_toupper() function. For values 'a'
118
+ // through 'z', return the upper-case character; otherwise, return the
119
+ // identity of the passed character.
120
+ const char kToUpper[256] = {
121
+ '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
122
+ '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f',
123
+ '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17',
124
+ '\x18', '\x19', '\x1a', '\x1b', '\x1c', '\x1d', '\x1e', '\x1f',
125
+ '\x20', '\x21', '\x22', '\x23', '\x24', '\x25', '\x26', '\x27',
126
+ '\x28', '\x29', '\x2a', '\x2b', '\x2c', '\x2d', '\x2e', '\x2f',
127
+ '\x30', '\x31', '\x32', '\x33', '\x34', '\x35', '\x36', '\x37',
128
+ '\x38', '\x39', '\x3a', '\x3b', '\x3c', '\x3d', '\x3e', '\x3f',
129
+ '\x40', '\x41', '\x42', '\x43', '\x44', '\x45', '\x46', '\x47',
130
+ '\x48', '\x49', '\x4a', '\x4b', '\x4c', '\x4d', '\x4e', '\x4f',
131
+ '\x50', '\x51', '\x52', '\x53', '\x54', '\x55', '\x56', '\x57',
132
+ '\x58', '\x59', '\x5a', '\x5b', '\x5c', '\x5d', '\x5e', '\x5f',
133
+ '\x60', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
134
+ 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
135
+ 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
136
+ 'X', 'Y', 'Z', '\x7b', '\x7c', '\x7d', '\x7e', '\x7f',
137
+ '\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
138
+ '\x88', '\x89', '\x8a', '\x8b', '\x8c', '\x8d', '\x8e', '\x8f',
139
+ '\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
140
+ '\x98', '\x99', '\x9a', '\x9b', '\x9c', '\x9d', '\x9e', '\x9f',
141
+ '\xa0', '\xa1', '\xa2', '\xa3', '\xa4', '\xa5', '\xa6', '\xa7',
142
+ '\xa8', '\xa9', '\xaa', '\xab', '\xac', '\xad', '\xae', '\xaf',
143
+ '\xb0', '\xb1', '\xb2', '\xb3', '\xb4', '\xb5', '\xb6', '\xb7',
144
+ '\xb8', '\xb9', '\xba', '\xbb', '\xbc', '\xbd', '\xbe', '\xbf',
145
+ '\xc0', '\xc1', '\xc2', '\xc3', '\xc4', '\xc5', '\xc6', '\xc7',
146
+ '\xc8', '\xc9', '\xca', '\xcb', '\xcc', '\xcd', '\xce', '\xcf',
147
+ '\xd0', '\xd1', '\xd2', '\xd3', '\xd4', '\xd5', '\xd6', '\xd7',
148
+ '\xd8', '\xd9', '\xda', '\xdb', '\xdc', '\xdd', '\xde', '\xdf',
149
+ '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7',
150
+ '\xe8', '\xe9', '\xea', '\xeb', '\xec', '\xed', '\xee', '\xef',
151
+ '\xf0', '\xf1', '\xf2', '\xf3', '\xf4', '\xf5', '\xf6', '\xf7',
152
+ '\xf8', '\xf9', '\xfa', '\xfb', '\xfc', '\xfd', '\xfe', '\xff',
153
+ };
154
+ // clang-format on
155
+
156
+ } // namespace ascii_internal
157
+
158
+ void AsciiStrToLower(std::string* s) {
159
+ for (auto& ch : *s) {
160
+ ch = absl::ascii_tolower(ch);
161
+ }
162
+ }
163
+
164
+ void AsciiStrToUpper(std::string* s) {
165
+ for (auto& ch : *s) {
166
+ ch = absl::ascii_toupper(ch);
167
+ }
168
+ }
169
+
170
+ void RemoveExtraAsciiWhitespace(std::string* str) {
171
+ auto stripped = StripAsciiWhitespace(*str);
172
+
173
+ if (stripped.empty()) {
174
+ str->clear();
175
+ return;
176
+ }
177
+
178
+ auto input_it = stripped.begin();
179
+ auto input_end = stripped.end();
180
+ auto output_it = &(*str)[0];
181
+ bool is_ws = false;
182
+
183
+ for (; input_it < input_end; ++input_it) {
184
+ if (is_ws) {
185
+ // Consecutive whitespace? Keep only the last.
186
+ is_ws = absl::ascii_isspace(*input_it);
187
+ if (is_ws) --output_it;
188
+ } else {
189
+ is_ws = absl::ascii_isspace(*input_it);
190
+ }
191
+
192
+ *output_it = *input_it;
193
+ ++output_it;
194
+ }
195
+
196
+ str->erase(output_it - &(*str)[0]);
197
+ }
198
+
199
+ ABSL_NAMESPACE_END
200
+ } // namespace absl
@@ -0,0 +1,241 @@
1
+ //
2
+ // Copyright 2017 The Abseil Authors.
3
+ //
4
+ // Licensed under the Apache License, Version 2.0 (the "License");
5
+ // you may not use this file except in compliance with the License.
6
+ // You may obtain a copy of the License at
7
+ //
8
+ // https://www.apache.org/licenses/LICENSE-2.0
9
+ //
10
+ // Unless required by applicable law or agreed to in writing, software
11
+ // distributed under the License is distributed on an "AS IS" BASIS,
12
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ // See the License for the specific language governing permissions and
14
+ // limitations under the License.
15
+ //
16
+ // -----------------------------------------------------------------------------
17
+ // File: ascii.h
18
+ // -----------------------------------------------------------------------------
19
+ //
20
+ // This package contains functions operating on characters and strings
21
+ // restricted to standard ASCII. These include character classification
22
+ // functions analogous to those found in the ANSI C Standard Library <ctype.h>
23
+ // header file.
24
+ //
25
+ // C++ implementations provide <ctype.h> functionality based on their
26
+ // C environment locale. In general, reliance on such a locale is not ideal, as
27
+ // the locale standard is problematic (and may not return invariant information
28
+ // for the same character set, for example). These `ascii_*()` functions are
29
+ // hard-wired for standard ASCII, much faster, and guaranteed to behave
30
+ // consistently. They will never be overloaded, nor will their function
31
+ // signature change.
32
+ //
33
+ // `ascii_isalnum()`, `ascii_isalpha()`, `ascii_isascii()`, `ascii_isblank()`,
34
+ // `ascii_iscntrl()`, `ascii_isdigit()`, `ascii_isgraph()`, `ascii_islower()`,
35
+ // `ascii_isprint()`, `ascii_ispunct()`, `ascii_isspace()`, `ascii_isupper()`,
36
+ // `ascii_isxdigit()`
37
+ // Analogous to the <ctype.h> functions with similar names, these
38
+ // functions take an unsigned char and return a bool, based on whether the
39
+ // character matches the condition specified.
40
+ //
41
+ // If the input character has a numerical value greater than 127, these
42
+ // functions return `false`.
43
+ //
44
+ // `ascii_tolower()`, `ascii_toupper()`
45
+ // Analogous to the <ctype.h> functions with similar names, these functions
46
+ // take an unsigned char and return a char.
47
+ //
48
+ // If the input character is not an ASCII {lower,upper}-case letter (including
49
+ // numerical values greater than 127) then the functions return the same value
50
+ // as the input character.
51
+
52
+ #ifndef ABSL_STRINGS_ASCII_H_
53
+ #define ABSL_STRINGS_ASCII_H_
54
+
55
+ #include <algorithm>
56
+ #include <string>
57
+
58
+ #include "absl/base/attributes.h"
59
+ #include "absl/strings/string_view.h"
60
+
61
+ namespace absl {
62
+ ABSL_NAMESPACE_BEGIN
63
+ namespace ascii_internal {
64
+
65
+ // Declaration for an array of bitfields holding character information.
66
+ extern const unsigned char kPropertyBits[256];
67
+
68
+ // Declaration for the array of characters to upper-case characters.
69
+ extern const char kToUpper[256];
70
+
71
+ // Declaration for the array of characters to lower-case characters.
72
+ extern const char kToLower[256];
73
+
74
+ } // namespace ascii_internal
75
+
76
+ // ascii_isalpha()
77
+ //
78
+ // Determines whether the given character is an alphabetic character.
79
+ inline bool ascii_isalpha(unsigned char c) {
80
+ return (ascii_internal::kPropertyBits[c] & 0x01) != 0;
81
+ }
82
+
83
+ // ascii_isalnum()
84
+ //
85
+ // Determines whether the given character is an alphanumeric character.
86
+ inline bool ascii_isalnum(unsigned char c) {
87
+ return (ascii_internal::kPropertyBits[c] & 0x04) != 0;
88
+ }
89
+
90
+ // ascii_isspace()
91
+ //
92
+ // Determines whether the given character is a whitespace character (space,
93
+ // tab, vertical tab, formfeed, linefeed, or carriage return).
94
+ inline bool ascii_isspace(unsigned char c) {
95
+ return (ascii_internal::kPropertyBits[c] & 0x08) != 0;
96
+ }
97
+
98
+ // ascii_ispunct()
99
+ //
100
+ // Determines whether the given character is a punctuation character.
101
+ inline bool ascii_ispunct(unsigned char c) {
102
+ return (ascii_internal::kPropertyBits[c] & 0x10) != 0;
103
+ }
104
+
105
+ // ascii_isblank()
106
+ //
107
+ // Determines whether the given character is a blank character (tab or space).
108
+ inline bool ascii_isblank(unsigned char c) {
109
+ return (ascii_internal::kPropertyBits[c] & 0x20) != 0;
110
+ }
111
+
112
+ // ascii_iscntrl()
113
+ //
114
+ // Determines whether the given character is a control character.
115
+ inline bool ascii_iscntrl(unsigned char c) {
116
+ return (ascii_internal::kPropertyBits[c] & 0x40) != 0;
117
+ }
118
+
119
+ // ascii_isxdigit()
120
+ //
121
+ // Determines whether the given character can be represented as a hexadecimal
122
+ // digit character (i.e. {0-9} or {A-F}).
123
+ inline bool ascii_isxdigit(unsigned char c) {
124
+ return (ascii_internal::kPropertyBits[c] & 0x80) != 0;
125
+ }
126
+
127
+ // ascii_isdigit()
128
+ //
129
+ // Determines whether the given character can be represented as a decimal
130
+ // digit character (i.e. {0-9}).
131
+ inline bool ascii_isdigit(unsigned char c) { return c >= '0' && c <= '9'; }
132
+
133
+ // ascii_isprint()
134
+ //
135
+ // Determines whether the given character is printable, including whitespace.
136
+ inline bool ascii_isprint(unsigned char c) { return c >= 32 && c < 127; }
137
+
138
+ // ascii_isgraph()
139
+ //
140
+ // Determines whether the given character has a graphical representation.
141
+ inline bool ascii_isgraph(unsigned char c) { return c > 32 && c < 127; }
142
+
143
+ // ascii_isupper()
144
+ //
145
+ // Determines whether the given character is uppercase.
146
+ inline bool ascii_isupper(unsigned char c) { return c >= 'A' && c <= 'Z'; }
147
+
148
+ // ascii_islower()
149
+ //
150
+ // Determines whether the given character is lowercase.
151
+ inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; }
152
+
153
+ // ascii_isascii()
154
+ //
155
+ // Determines whether the given character is ASCII.
156
+ inline bool ascii_isascii(unsigned char c) { return c < 128; }
157
+
158
+ // ascii_tolower()
159
+ //
160
+ // Returns an ASCII character, converting to lowercase if uppercase is
161
+ // passed. Note that character values > 127 are simply returned.
162
+ inline char ascii_tolower(unsigned char c) {
163
+ return ascii_internal::kToLower[c];
164
+ }
165
+
166
+ // Converts the characters in `s` to lowercase, changing the contents of `s`.
167
+ void AsciiStrToLower(std::string* s);
168
+
169
+ // Creates a lowercase string from a given absl::string_view.
170
+ ABSL_MUST_USE_RESULT inline std::string AsciiStrToLower(absl::string_view s) {
171
+ std::string result(s);
172
+ absl::AsciiStrToLower(&result);
173
+ return result;
174
+ }
175
+
176
+ // ascii_toupper()
177
+ //
178
+ // Returns the ASCII character, converting to upper-case if lower-case is
179
+ // passed. Note that characters values > 127 are simply returned.
180
+ inline char ascii_toupper(unsigned char c) {
181
+ return ascii_internal::kToUpper[c];
182
+ }
183
+
184
+ // Converts the characters in `s` to uppercase, changing the contents of `s`.
185
+ void AsciiStrToUpper(std::string* s);
186
+
187
+ // Creates an uppercase string from a given absl::string_view.
188
+ ABSL_MUST_USE_RESULT inline std::string AsciiStrToUpper(absl::string_view s) {
189
+ std::string result(s);
190
+ absl::AsciiStrToUpper(&result);
191
+ return result;
192
+ }
193
+
194
+ // Returns absl::string_view with whitespace stripped from the beginning of the
195
+ // given string_view.
196
+ ABSL_MUST_USE_RESULT inline absl::string_view StripLeadingAsciiWhitespace(
197
+ absl::string_view str) {
198
+ auto it = std::find_if_not(str.begin(), str.end(), absl::ascii_isspace);
199
+ return str.substr(it - str.begin());
200
+ }
201
+
202
+ // Strips in place whitespace from the beginning of the given string.
203
+ inline void StripLeadingAsciiWhitespace(std::string* str) {
204
+ auto it = std::find_if_not(str->begin(), str->end(), absl::ascii_isspace);
205
+ str->erase(str->begin(), it);
206
+ }
207
+
208
+ // Returns absl::string_view with whitespace stripped from the end of the given
209
+ // string_view.
210
+ ABSL_MUST_USE_RESULT inline absl::string_view StripTrailingAsciiWhitespace(
211
+ absl::string_view str) {
212
+ auto it = std::find_if_not(str.rbegin(), str.rend(), absl::ascii_isspace);
213
+ return str.substr(0, str.rend() - it);
214
+ }
215
+
216
+ // Strips in place whitespace from the end of the given string
217
+ inline void StripTrailingAsciiWhitespace(std::string* str) {
218
+ auto it = std::find_if_not(str->rbegin(), str->rend(), absl::ascii_isspace);
219
+ str->erase(str->rend() - it);
220
+ }
221
+
222
+ // Returns absl::string_view with whitespace stripped from both ends of the
223
+ // given string_view.
224
+ ABSL_MUST_USE_RESULT inline absl::string_view StripAsciiWhitespace(
225
+ absl::string_view str) {
226
+ return StripTrailingAsciiWhitespace(StripLeadingAsciiWhitespace(str));
227
+ }
228
+
229
+ // Strips in place whitespace from both ends of the given string
230
+ inline void StripAsciiWhitespace(std::string* str) {
231
+ StripTrailingAsciiWhitespace(str);
232
+ StripLeadingAsciiWhitespace(str);
233
+ }
234
+
235
+ // Removes leading, trailing, and consecutive internal whitespace.
236
+ void RemoveExtraAsciiWhitespace(std::string*);
237
+
238
+ ABSL_NAMESPACE_END
239
+ } // namespace absl
240
+
241
+ #endif // ABSL_STRINGS_ASCII_H_
@@ -0,0 +1,985 @@
1
+ // Copyright 2018 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #include "absl/strings/charconv.h"
16
+
17
+ #include <algorithm>
18
+ #include <cassert>
19
+ #include <cmath>
20
+ #include <cstring>
21
+
22
+ #include "absl/base/casts.h"
23
+ #include "absl/base/internal/bits.h"
24
+ #include "absl/numeric/int128.h"
25
+ #include "absl/strings/internal/charconv_bigint.h"
26
+ #include "absl/strings/internal/charconv_parse.h"
27
+
28
+ // The macro ABSL_BIT_PACK_FLOATS is defined on x86-64, where IEEE floating
29
+ // point numbers have the same endianness in memory as a bitfield struct
30
+ // containing the corresponding parts.
31
+ //
32
+ // When set, we replace calls to ldexp() with manual bit packing, which is
33
+ // faster and is unaffected by floating point environment.
34
+ #ifdef ABSL_BIT_PACK_FLOATS
35
+ #error ABSL_BIT_PACK_FLOATS cannot be directly set
36
+ #elif defined(__x86_64__) || defined(_M_X64)
37
+ #define ABSL_BIT_PACK_FLOATS 1
38
+ #endif
39
+
40
+ // A note about subnormals:
41
+ //
42
+ // The code below talks about "normals" and "subnormals". A normal IEEE float
43
+ // has a fixed-width mantissa and power of two exponent. For example, a normal
44
+ // `double` has a 53-bit mantissa. Because the high bit is always 1, it is not
45
+ // stored in the representation. The implicit bit buys an extra bit of
46
+ // resolution in the datatype.
47
+ //
48
+ // The downside of this scheme is that there is a large gap between DBL_MIN and
49
+ // zero. (Large, at least, relative to the different between DBL_MIN and the
50
+ // next representable number). This gap is softened by the "subnormal" numbers,
51
+ // which have the same power-of-two exponent as DBL_MIN, but no implicit 53rd
52
+ // bit. An all-bits-zero exponent in the encoding represents subnormals. (Zero
53
+ // is represented as a subnormal with an all-bits-zero mantissa.)
54
+ //
55
+ // The code below, in calculations, represents the mantissa as a uint64_t. The
56
+ // end result normally has the 53rd bit set. It represents subnormals by using
57
+ // narrower mantissas.
58
+
59
+ namespace absl {
60
+ ABSL_NAMESPACE_BEGIN
61
+ namespace {
62
+
63
+ template <typename FloatType>
64
+ struct FloatTraits;
65
+
66
+ template <>
67
+ struct FloatTraits<double> {
68
+ // The number of mantissa bits in the given float type. This includes the
69
+ // implied high bit.
70
+ static constexpr int kTargetMantissaBits = 53;
71
+
72
+ // The largest supported IEEE exponent, in our integral mantissa
73
+ // representation.
74
+ //
75
+ // If `m` is the largest possible int kTargetMantissaBits bits wide, then
76
+ // m * 2**kMaxExponent is exactly equal to DBL_MAX.
77
+ static constexpr int kMaxExponent = 971;
78
+
79
+ // The smallest supported IEEE normal exponent, in our integral mantissa
80
+ // representation.
81
+ //
82
+ // If `m` is the smallest possible int kTargetMantissaBits bits wide, then
83
+ // m * 2**kMinNormalExponent is exactly equal to DBL_MIN.
84
+ static constexpr int kMinNormalExponent = -1074;
85
+
86
+ static double MakeNan(const char* tagp) {
87
+ // Support nan no matter which namespace it's in. Some platforms
88
+ // incorrectly don't put it in namespace std.
89
+ using namespace std; // NOLINT
90
+ return nan(tagp);
91
+ }
92
+
93
+ // Builds a nonzero floating point number out of the provided parts.
94
+ //
95
+ // This is intended to do the same operation as ldexp(mantissa, exponent),
96
+ // but using purely integer math, to avoid -ffastmath and floating
97
+ // point environment issues. Using type punning is also faster. We fall back
98
+ // to ldexp on a per-platform basis for portability.
99
+ //
100
+ // `exponent` must be between kMinNormalExponent and kMaxExponent.
101
+ //
102
+ // `mantissa` must either be exactly kTargetMantissaBits wide, in which case
103
+ // a normal value is made, or it must be less narrow than that, in which case
104
+ // `exponent` must be exactly kMinNormalExponent, and a subnormal value is
105
+ // made.
106
+ static double Make(uint64_t mantissa, int exponent, bool sign) {
107
+ #ifndef ABSL_BIT_PACK_FLOATS
108
+ // Support ldexp no matter which namespace it's in. Some platforms
109
+ // incorrectly don't put it in namespace std.
110
+ using namespace std; // NOLINT
111
+ return sign ? -ldexp(mantissa, exponent) : ldexp(mantissa, exponent);
112
+ #else
113
+ constexpr uint64_t kMantissaMask =
114
+ (uint64_t(1) << (kTargetMantissaBits - 1)) - 1;
115
+ uint64_t dbl = static_cast<uint64_t>(sign) << 63;
116
+ if (mantissa > kMantissaMask) {
117
+ // Normal value.
118
+ // Adjust by 1023 for the exponent representation bias, and an additional
119
+ // 52 due to the implied decimal point in the IEEE mantissa represenation.
120
+ dbl += uint64_t{exponent + 1023u + kTargetMantissaBits - 1} << 52;
121
+ mantissa &= kMantissaMask;
122
+ } else {
123
+ // subnormal value
124
+ assert(exponent == kMinNormalExponent);
125
+ }
126
+ dbl += mantissa;
127
+ return absl::bit_cast<double>(dbl);
128
+ #endif // ABSL_BIT_PACK_FLOATS
129
+ }
130
+ };
131
+
132
+ // Specialization of floating point traits for the `float` type. See the
133
+ // FloatTraits<double> specialization above for meaning of each of the following
134
+ // members and methods.
135
+ template <>
136
+ struct FloatTraits<float> {
137
+ static constexpr int kTargetMantissaBits = 24;
138
+ static constexpr int kMaxExponent = 104;
139
+ static constexpr int kMinNormalExponent = -149;
140
+ static float MakeNan(const char* tagp) {
141
+ // Support nanf no matter which namespace it's in. Some platforms
142
+ // incorrectly don't put it in namespace std.
143
+ using namespace std; // NOLINT
144
+ return nanf(tagp);
145
+ }
146
+ static float Make(uint32_t mantissa, int exponent, bool sign) {
147
+ #ifndef ABSL_BIT_PACK_FLOATS
148
+ // Support ldexpf no matter which namespace it's in. Some platforms
149
+ // incorrectly don't put it in namespace std.
150
+ using namespace std; // NOLINT
151
+ return sign ? -ldexpf(mantissa, exponent) : ldexpf(mantissa, exponent);
152
+ #else
153
+ constexpr uint32_t kMantissaMask =
154
+ (uint32_t(1) << (kTargetMantissaBits - 1)) - 1;
155
+ uint32_t flt = static_cast<uint32_t>(sign) << 31;
156
+ if (mantissa > kMantissaMask) {
157
+ // Normal value.
158
+ // Adjust by 127 for the exponent representation bias, and an additional
159
+ // 23 due to the implied decimal point in the IEEE mantissa represenation.
160
+ flt += uint32_t{exponent + 127u + kTargetMantissaBits - 1} << 23;
161
+ mantissa &= kMantissaMask;
162
+ } else {
163
+ // subnormal value
164
+ assert(exponent == kMinNormalExponent);
165
+ }
166
+ flt += mantissa;
167
+ return absl::bit_cast<float>(flt);
168
+ #endif // ABSL_BIT_PACK_FLOATS
169
+ }
170
+ };
171
+
172
+ // Decimal-to-binary conversions require coercing powers of 10 into a mantissa
173
+ // and a power of 2. The two helper functions Power10Mantissa(n) and
174
+ // Power10Exponent(n) perform this task. Together, these represent a hand-
175
+ // rolled floating point value which is equal to or just less than 10**n.
176
+ //
177
+ // The return values satisfy two range guarantees:
178
+ //
179
+ // Power10Mantissa(n) * 2**Power10Exponent(n) <= 10**n
180
+ // < (Power10Mantissa(n) + 1) * 2**Power10Exponent(n)
181
+ //
182
+ // 2**63 <= Power10Mantissa(n) < 2**64.
183
+ //
184
+ // Lookups into the power-of-10 table must first check the Power10Overflow() and
185
+ // Power10Underflow() functions, to avoid out-of-bounds table access.
186
+ //
187
+ // Indexes into these tables are biased by -kPower10TableMin, and the table has
188
+ // values in the range [kPower10TableMin, kPower10TableMax].
189
+ extern const uint64_t kPower10MantissaTable[];
190
+ extern const int16_t kPower10ExponentTable[];
191
+
192
+ // The smallest allowed value for use with the Power10Mantissa() and
193
+ // Power10Exponent() functions below. (If a smaller exponent is needed in
194
+ // calculations, the end result is guaranteed to underflow.)
195
+ constexpr int kPower10TableMin = -342;
196
+
197
+ // The largest allowed value for use with the Power10Mantissa() and
198
+ // Power10Exponent() functions below. (If a smaller exponent is needed in
199
+ // calculations, the end result is guaranteed to overflow.)
200
+ constexpr int kPower10TableMax = 308;
201
+
202
+ uint64_t Power10Mantissa(int n) {
203
+ return kPower10MantissaTable[n - kPower10TableMin];
204
+ }
205
+
206
+ int Power10Exponent(int n) {
207
+ return kPower10ExponentTable[n - kPower10TableMin];
208
+ }
209
+
210
+ // Returns true if n is large enough that 10**n always results in an IEEE
211
+ // overflow.
212
+ bool Power10Overflow(int n) { return n > kPower10TableMax; }
213
+
214
+ // Returns true if n is small enough that 10**n times a ParsedFloat mantissa
215
+ // always results in an IEEE underflow.
216
+ bool Power10Underflow(int n) { return n < kPower10TableMin; }
217
+
218
+ // Returns true if Power10Mantissa(n) * 2**Power10Exponent(n) is exactly equal
219
+ // to 10**n numerically. Put another way, this returns true if there is no
220
+ // truncation error in Power10Mantissa(n).
221
+ bool Power10Exact(int n) { return n >= 0 && n <= 27; }
222
+
223
+ // Sentinel exponent values for representing numbers too large or too close to
224
+ // zero to represent in a double.
225
+ constexpr int kOverflow = 99999;
226
+ constexpr int kUnderflow = -99999;
227
+
228
+ // Struct representing the calculated conversion result of a positive (nonzero)
229
+ // floating point number.
230
+ //
231
+ // The calculated number is mantissa * 2**exponent (mantissa is treated as an
232
+ // integer.) `mantissa` is chosen to be the correct width for the IEEE float
233
+ // representation being calculated. (`mantissa` will always have the same bit
234
+ // width for normal values, and narrower bit widths for subnormals.)
235
+ //
236
+ // If the result of conversion was an underflow or overflow, exponent is set
237
+ // to kUnderflow or kOverflow.
238
+ struct CalculatedFloat {
239
+ uint64_t mantissa = 0;
240
+ int exponent = 0;
241
+ };
242
+
243
+ // Returns the bit width of the given uint128. (Equivalently, returns 128
244
+ // minus the number of leading zero bits.)
245
+ int BitWidth(uint128 value) {
246
+ if (Uint128High64(value) == 0) {
247
+ return 64 - base_internal::CountLeadingZeros64(Uint128Low64(value));
248
+ }
249
+ return 128 - base_internal::CountLeadingZeros64(Uint128High64(value));
250
+ }
251
+
252
+ // Calculates how far to the right a mantissa needs to be shifted to create a
253
+ // properly adjusted mantissa for an IEEE floating point number.
254
+ //
255
+ // `mantissa_width` is the bit width of the mantissa to be shifted, and
256
+ // `binary_exponent` is the exponent of the number before the shift.
257
+ //
258
+ // This accounts for subnormal values, and will return a larger-than-normal
259
+ // shift if binary_exponent would otherwise be too low.
260
+ template <typename FloatType>
261
+ int NormalizedShiftSize(int mantissa_width, int binary_exponent) {
262
+ const int normal_shift =
263
+ mantissa_width - FloatTraits<FloatType>::kTargetMantissaBits;
264
+ const int minimum_shift =
265
+ FloatTraits<FloatType>::kMinNormalExponent - binary_exponent;
266
+ return std::max(normal_shift, minimum_shift);
267
+ }
268
+
269
+ // Right shifts a uint128 so that it has the requested bit width. (The
270
+ // resulting value will have 128 - bit_width leading zeroes.) The initial
271
+ // `value` must be wider than the requested bit width.
272
+ //
273
+ // Returns the number of bits shifted.
274
+ int TruncateToBitWidth(int bit_width, uint128* value) {
275
+ const int current_bit_width = BitWidth(*value);
276
+ const int shift = current_bit_width - bit_width;
277
+ *value >>= shift;
278
+ return shift;
279
+ }
280
+
281
+ // Checks if the given ParsedFloat represents one of the edge cases that are
282
+ // not dependent on number base: zero, infinity, or NaN. If so, sets *value
283
+ // the appropriate double, and returns true.
284
+ template <typename FloatType>
285
+ bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative,
286
+ FloatType* value) {
287
+ if (input.type == strings_internal::FloatType::kNan) {
288
+ // A bug in both clang and gcc would cause the compiler to optimize away the
289
+ // buffer we are building below. Declaring the buffer volatile avoids the
290
+ // issue, and has no measurable performance impact in microbenchmarks.
291
+ //
292
+ // https://bugs.llvm.org/show_bug.cgi?id=37778
293
+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86113
294
+ constexpr ptrdiff_t kNanBufferSize = 128;
295
+ volatile char n_char_sequence[kNanBufferSize];
296
+ if (input.subrange_begin == nullptr) {
297
+ n_char_sequence[0] = '\0';
298
+ } else {
299
+ ptrdiff_t nan_size = input.subrange_end - input.subrange_begin;
300
+ nan_size = std::min(nan_size, kNanBufferSize - 1);
301
+ std::copy_n(input.subrange_begin, nan_size, n_char_sequence);
302
+ n_char_sequence[nan_size] = '\0';
303
+ }
304
+ char* nan_argument = const_cast<char*>(n_char_sequence);
305
+ *value = negative ? -FloatTraits<FloatType>::MakeNan(nan_argument)
306
+ : FloatTraits<FloatType>::MakeNan(nan_argument);
307
+ return true;
308
+ }
309
+ if (input.type == strings_internal::FloatType::kInfinity) {
310
+ *value = negative ? -std::numeric_limits<FloatType>::infinity()
311
+ : std::numeric_limits<FloatType>::infinity();
312
+ return true;
313
+ }
314
+ if (input.mantissa == 0) {
315
+ *value = negative ? -0.0 : 0.0;
316
+ return true;
317
+ }
318
+ return false;
319
+ }
320
+
321
+ // Given a CalculatedFloat result of a from_chars conversion, generate the
322
+ // correct output values.
323
+ //
324
+ // CalculatedFloat can represent an underflow or overflow, in which case the
325
+ // error code in *result is set. Otherwise, the calculated floating point
326
+ // number is stored in *value.
327
+ template <typename FloatType>
328
+ void EncodeResult(const CalculatedFloat& calculated, bool negative,
329
+ absl::from_chars_result* result, FloatType* value) {
330
+ if (calculated.exponent == kOverflow) {
331
+ result->ec = std::errc::result_out_of_range;
332
+ *value = negative ? -std::numeric_limits<FloatType>::max()
333
+ : std::numeric_limits<FloatType>::max();
334
+ return;
335
+ } else if (calculated.mantissa == 0 || calculated.exponent == kUnderflow) {
336
+ result->ec = std::errc::result_out_of_range;
337
+ *value = negative ? -0.0 : 0.0;
338
+ return;
339
+ }
340
+ *value = FloatTraits<FloatType>::Make(calculated.mantissa,
341
+ calculated.exponent, negative);
342
+ }
343
+
344
+ // Returns the given uint128 shifted to the right by `shift` bits, and rounds
345
+ // the remaining bits using round_to_nearest logic. The value is returned as a
346
+ // uint64_t, since this is the type used by this library for storing calculated
347
+ // floating point mantissas.
348
+ //
349
+ // It is expected that the width of the input value shifted by `shift` will
350
+ // be the correct bit-width for the target mantissa, which is strictly narrower
351
+ // than a uint64_t.
352
+ //
353
+ // If `input_exact` is false, then a nonzero error epsilon is assumed. For
354
+ // rounding purposes, the true value being rounded is strictly greater than the
355
+ // input value. The error may represent a single lost carry bit.
356
+ //
357
+ // When input_exact, shifted bits of the form 1000000... represent a tie, which
358
+ // is broken by rounding to even -- the rounding direction is chosen so the low
359
+ // bit of the returned value is 0.
360
+ //
361
+ // When !input_exact, shifted bits of the form 10000000... represent a value
362
+ // strictly greater than one half (due to the error epsilon), and so ties are
363
+ // always broken by rounding up.
364
+ //
365
+ // When !input_exact, shifted bits of the form 01111111... are uncertain;
366
+ // the true value may or may not be greater than 10000000..., due to the
367
+ // possible lost carry bit. The correct rounding direction is unknown. In this
368
+ // case, the result is rounded down, and `output_exact` is set to false.
369
+ //
370
+ // Zero and negative values of `shift` are accepted, in which case the word is
371
+ // shifted left, as necessary.
372
+ uint64_t ShiftRightAndRound(uint128 value, int shift, bool input_exact,
373
+ bool* output_exact) {
374
+ if (shift <= 0) {
375
+ *output_exact = input_exact;
376
+ return static_cast<uint64_t>(value << -shift);
377
+ }
378
+ if (shift >= 128) {
379
+ // Exponent is so small that we are shifting away all significant bits.
380
+ // Answer will not be representable, even as a subnormal, so return a zero
381
+ // mantissa (which represents underflow).
382
+ *output_exact = true;
383
+ return 0;
384
+ }
385
+
386
+ *output_exact = true;
387
+ const uint128 shift_mask = (uint128(1) << shift) - 1;
388
+ const uint128 halfway_point = uint128(1) << (shift - 1);
389
+
390
+ const uint128 shifted_bits = value & shift_mask;
391
+ value >>= shift;
392
+ if (shifted_bits > halfway_point) {
393
+ // Shifted bits greater than 10000... require rounding up.
394
+ return static_cast<uint64_t>(value + 1);
395
+ }
396
+ if (shifted_bits == halfway_point) {
397
+ // In exact mode, shifted bits of 10000... mean we're exactly halfway
398
+ // between two numbers, and we must round to even. So only round up if
399
+ // the low bit of `value` is set.
400
+ //
401
+ // In inexact mode, the nonzero error means the actual value is greater
402
+ // than the halfway point and we must alway round up.
403
+ if ((value & 1) == 1 || !input_exact) {
404
+ ++value;
405
+ }
406
+ return static_cast<uint64_t>(value);
407
+ }
408
+ if (!input_exact && shifted_bits == halfway_point - 1) {
409
+ // Rounding direction is unclear, due to error.
410
+ *output_exact = false;
411
+ }
412
+ // Otherwise, round down.
413
+ return static_cast<uint64_t>(value);
414
+ }
415
+
416
+ // Checks if a floating point guess needs to be rounded up, using high precision
417
+ // math.
418
+ //
419
+ // `guess_mantissa` and `guess_exponent` represent a candidate guess for the
420
+ // number represented by `parsed_decimal`.
421
+ //
422
+ // The exact number represented by `parsed_decimal` must lie between the two
423
+ // numbers:
424
+ // A = `guess_mantissa * 2**guess_exponent`
425
+ // B = `(guess_mantissa + 1) * 2**guess_exponent`
426
+ //
427
+ // This function returns false if `A` is the better guess, and true if `B` is
428
+ // the better guess, with rounding ties broken by rounding to even.
429
+ bool MustRoundUp(uint64_t guess_mantissa, int guess_exponent,
430
+ const strings_internal::ParsedFloat& parsed_decimal) {
431
+ // 768 is the number of digits needed in the worst case. We could determine a
432
+ // better limit dynamically based on the value of parsed_decimal.exponent.
433
+ // This would optimize pathological input cases only. (Sane inputs won't have
434
+ // hundreds of digits of mantissa.)
435
+ absl::strings_internal::BigUnsigned<84> exact_mantissa;
436
+ int exact_exponent = exact_mantissa.ReadFloatMantissa(parsed_decimal, 768);
437
+
438
+ // Adjust the `guess` arguments to be halfway between A and B.
439
+ guess_mantissa = guess_mantissa * 2 + 1;
440
+ guess_exponent -= 1;
441
+
442
+ // In our comparison:
443
+ // lhs = exact = exact_mantissa * 10**exact_exponent
444
+ // = exact_mantissa * 5**exact_exponent * 2**exact_exponent
445
+ // rhs = guess = guess_mantissa * 2**guess_exponent
446
+ //
447
+ // Because we are doing integer math, we can't directly deal with negative
448
+ // exponents. We instead move these to the other side of the inequality.
449
+ absl::strings_internal::BigUnsigned<84>& lhs = exact_mantissa;
450
+ int comparison;
451
+ if (exact_exponent >= 0) {
452
+ lhs.MultiplyByFiveToTheNth(exact_exponent);
453
+ absl::strings_internal::BigUnsigned<84> rhs(guess_mantissa);
454
+ // There are powers of 2 on both sides of the inequality; reduce this to
455
+ // a single bit-shift.
456
+ if (exact_exponent > guess_exponent) {
457
+ lhs.ShiftLeft(exact_exponent - guess_exponent);
458
+ } else {
459
+ rhs.ShiftLeft(guess_exponent - exact_exponent);
460
+ }
461
+ comparison = Compare(lhs, rhs);
462
+ } else {
463
+ // Move the power of 5 to the other side of the equation, giving us:
464
+ // lhs = exact_mantissa * 2**exact_exponent
465
+ // rhs = guess_mantissa * 5**(-exact_exponent) * 2**guess_exponent
466
+ absl::strings_internal::BigUnsigned<84> rhs =
467
+ absl::strings_internal::BigUnsigned<84>::FiveToTheNth(-exact_exponent);
468
+ rhs.MultiplyBy(guess_mantissa);
469
+ if (exact_exponent > guess_exponent) {
470
+ lhs.ShiftLeft(exact_exponent - guess_exponent);
471
+ } else {
472
+ rhs.ShiftLeft(guess_exponent - exact_exponent);
473
+ }
474
+ comparison = Compare(lhs, rhs);
475
+ }
476
+ if (comparison < 0) {
477
+ return false;
478
+ } else if (comparison > 0) {
479
+ return true;
480
+ } else {
481
+ // When lhs == rhs, the decimal input is exactly between A and B.
482
+ // Round towards even -- round up only if the low bit of the initial
483
+ // `guess_mantissa` was a 1. We shifted guess_mantissa left 1 bit at
484
+ // the beginning of this function, so test the 2nd bit here.
485
+ return (guess_mantissa & 2) == 2;
486
+ }
487
+ }
488
+
489
+ // Constructs a CalculatedFloat from a given mantissa and exponent, but
490
+ // with the following normalizations applied:
491
+ //
492
+ // If rounding has caused mantissa to increase just past the allowed bit
493
+ // width, shift and adjust exponent.
494
+ //
495
+ // If exponent is too high, sets kOverflow.
496
+ //
497
+ // If mantissa is zero (representing a non-zero value not representable, even
498
+ // as a subnormal), sets kUnderflow.
499
+ template <typename FloatType>
500
+ CalculatedFloat CalculatedFloatFromRawValues(uint64_t mantissa, int exponent) {
501
+ CalculatedFloat result;
502
+ if (mantissa == uint64_t(1) << FloatTraits<FloatType>::kTargetMantissaBits) {
503
+ mantissa >>= 1;
504
+ exponent += 1;
505
+ }
506
+ if (exponent > FloatTraits<FloatType>::kMaxExponent) {
507
+ result.exponent = kOverflow;
508
+ } else if (mantissa == 0) {
509
+ result.exponent = kUnderflow;
510
+ } else {
511
+ result.exponent = exponent;
512
+ result.mantissa = mantissa;
513
+ }
514
+ return result;
515
+ }
516
+
517
+ template <typename FloatType>
518
+ CalculatedFloat CalculateFromParsedHexadecimal(
519
+ const strings_internal::ParsedFloat& parsed_hex) {
520
+ uint64_t mantissa = parsed_hex.mantissa;
521
+ int exponent = parsed_hex.exponent;
522
+ int mantissa_width = 64 - base_internal::CountLeadingZeros64(mantissa);
523
+ const int shift = NormalizedShiftSize<FloatType>(mantissa_width, exponent);
524
+ bool result_exact;
525
+ exponent += shift;
526
+ mantissa = ShiftRightAndRound(mantissa, shift,
527
+ /* input exact= */ true, &result_exact);
528
+ // ParseFloat handles rounding in the hexadecimal case, so we don't have to
529
+ // check `result_exact` here.
530
+ return CalculatedFloatFromRawValues<FloatType>(mantissa, exponent);
531
+ }
532
+
533
+ template <typename FloatType>
534
+ CalculatedFloat CalculateFromParsedDecimal(
535
+ const strings_internal::ParsedFloat& parsed_decimal) {
536
+ CalculatedFloat result;
537
+
538
+ // Large or small enough decimal exponents will always result in overflow
539
+ // or underflow.
540
+ if (Power10Underflow(parsed_decimal.exponent)) {
541
+ result.exponent = kUnderflow;
542
+ return result;
543
+ } else if (Power10Overflow(parsed_decimal.exponent)) {
544
+ result.exponent = kOverflow;
545
+ return result;
546
+ }
547
+
548
+ // Otherwise convert our power of 10 into a power of 2 times an integer
549
+ // mantissa, and multiply this by our parsed decimal mantissa.
550
+ uint128 wide_binary_mantissa = parsed_decimal.mantissa;
551
+ wide_binary_mantissa *= Power10Mantissa(parsed_decimal.exponent);
552
+ int binary_exponent = Power10Exponent(parsed_decimal.exponent);
553
+
554
+ // Discard bits that are inaccurate due to truncation error. The magic
555
+ // `mantissa_width` constants below are justified in
556
+ // https://abseil.io/about/design/charconv. They represent the number of bits
557
+ // in `wide_binary_mantissa` that are guaranteed to be unaffected by error
558
+ // propagation.
559
+ bool mantissa_exact;
560
+ int mantissa_width;
561
+ if (parsed_decimal.subrange_begin) {
562
+ // Truncated mantissa
563
+ mantissa_width = 58;
564
+ mantissa_exact = false;
565
+ binary_exponent +=
566
+ TruncateToBitWidth(mantissa_width, &wide_binary_mantissa);
567
+ } else if (!Power10Exact(parsed_decimal.exponent)) {
568
+ // Exact mantissa, truncated power of ten
569
+ mantissa_width = 63;
570
+ mantissa_exact = false;
571
+ binary_exponent +=
572
+ TruncateToBitWidth(mantissa_width, &wide_binary_mantissa);
573
+ } else {
574
+ // Product is exact
575
+ mantissa_width = BitWidth(wide_binary_mantissa);
576
+ mantissa_exact = true;
577
+ }
578
+
579
+ // Shift into an FloatType-sized mantissa, and round to nearest.
580
+ const int shift =
581
+ NormalizedShiftSize<FloatType>(mantissa_width, binary_exponent);
582
+ bool result_exact;
583
+ binary_exponent += shift;
584
+ uint64_t binary_mantissa = ShiftRightAndRound(wide_binary_mantissa, shift,
585
+ mantissa_exact, &result_exact);
586
+ if (!result_exact) {
587
+ // We could not determine the rounding direction using int128 math. Use
588
+ // full resolution math instead.
589
+ if (MustRoundUp(binary_mantissa, binary_exponent, parsed_decimal)) {
590
+ binary_mantissa += 1;
591
+ }
592
+ }
593
+
594
+ return CalculatedFloatFromRawValues<FloatType>(binary_mantissa,
595
+ binary_exponent);
596
+ }
597
+
598
+ template <typename FloatType>
599
+ from_chars_result FromCharsImpl(const char* first, const char* last,
600
+ FloatType& value, chars_format fmt_flags) {
601
+ from_chars_result result;
602
+ result.ptr = first; // overwritten on successful parse
603
+ result.ec = std::errc();
604
+
605
+ bool negative = false;
606
+ if (first != last && *first == '-') {
607
+ ++first;
608
+ negative = true;
609
+ }
610
+ // If the `hex` flag is *not* set, then we will accept a 0x prefix and try
611
+ // to parse a hexadecimal float.
612
+ if ((fmt_flags & chars_format::hex) == chars_format{} && last - first >= 2 &&
613
+ *first == '0' && (first[1] == 'x' || first[1] == 'X')) {
614
+ const char* hex_first = first + 2;
615
+ strings_internal::ParsedFloat hex_parse =
616
+ strings_internal::ParseFloat<16>(hex_first, last, fmt_flags);
617
+ if (hex_parse.end == nullptr ||
618
+ hex_parse.type != strings_internal::FloatType::kNumber) {
619
+ // Either we failed to parse a hex float after the "0x", or we read
620
+ // "0xinf" or "0xnan" which we don't want to match.
621
+ //
622
+ // However, a std::string that begins with "0x" also begins with "0", which
623
+ // is normally a valid match for the number zero. So we want these
624
+ // strings to match zero unless fmt_flags is `scientific`. (This flag
625
+ // means an exponent is required, which the std::string "0" does not have.)
626
+ if (fmt_flags == chars_format::scientific) {
627
+ result.ec = std::errc::invalid_argument;
628
+ } else {
629
+ result.ptr = first + 1;
630
+ value = negative ? -0.0 : 0.0;
631
+ }
632
+ return result;
633
+ }
634
+ // We matched a value.
635
+ result.ptr = hex_parse.end;
636
+ if (HandleEdgeCase(hex_parse, negative, &value)) {
637
+ return result;
638
+ }
639
+ CalculatedFloat calculated =
640
+ CalculateFromParsedHexadecimal<FloatType>(hex_parse);
641
+ EncodeResult(calculated, negative, &result, &value);
642
+ return result;
643
+ }
644
+ // Otherwise, we choose the number base based on the flags.
645
+ if ((fmt_flags & chars_format::hex) == chars_format::hex) {
646
+ strings_internal::ParsedFloat hex_parse =
647
+ strings_internal::ParseFloat<16>(first, last, fmt_flags);
648
+ if (hex_parse.end == nullptr) {
649
+ result.ec = std::errc::invalid_argument;
650
+ return result;
651
+ }
652
+ result.ptr = hex_parse.end;
653
+ if (HandleEdgeCase(hex_parse, negative, &value)) {
654
+ return result;
655
+ }
656
+ CalculatedFloat calculated =
657
+ CalculateFromParsedHexadecimal<FloatType>(hex_parse);
658
+ EncodeResult(calculated, negative, &result, &value);
659
+ return result;
660
+ } else {
661
+ strings_internal::ParsedFloat decimal_parse =
662
+ strings_internal::ParseFloat<10>(first, last, fmt_flags);
663
+ if (decimal_parse.end == nullptr) {
664
+ result.ec = std::errc::invalid_argument;
665
+ return result;
666
+ }
667
+ result.ptr = decimal_parse.end;
668
+ if (HandleEdgeCase(decimal_parse, negative, &value)) {
669
+ return result;
670
+ }
671
+ CalculatedFloat calculated =
672
+ CalculateFromParsedDecimal<FloatType>(decimal_parse);
673
+ EncodeResult(calculated, negative, &result, &value);
674
+ return result;
675
+ }
676
+ return result;
677
+ }
678
+ } // namespace
679
+
680
+ from_chars_result from_chars(const char* first, const char* last, double& value,
681
+ chars_format fmt) {
682
+ return FromCharsImpl(first, last, value, fmt);
683
+ }
684
+
685
+ from_chars_result from_chars(const char* first, const char* last, float& value,
686
+ chars_format fmt) {
687
+ return FromCharsImpl(first, last, value, fmt);
688
+ }
689
+
690
+ namespace {
691
+
692
+ // Table of powers of 10, from kPower10TableMin to kPower10TableMax.
693
+ //
694
+ // kPower10MantissaTable[i - kPower10TableMin] stores the 64-bit mantissa (high
695
+ // bit always on), and kPower10ExponentTable[i - kPower10TableMin] stores the
696
+ // power-of-two exponent. For a given number i, this gives the unique mantissa
697
+ // and exponent such that mantissa * 2**exponent <= 10**i < (mantissa + 1) *
698
+ // 2**exponent.
699
+
700
+ const uint64_t kPower10MantissaTable[] = {
701
+ 0xeef453d6923bd65aU, 0x9558b4661b6565f8U, 0xbaaee17fa23ebf76U,
702
+ 0xe95a99df8ace6f53U, 0x91d8a02bb6c10594U, 0xb64ec836a47146f9U,
703
+ 0xe3e27a444d8d98b7U, 0x8e6d8c6ab0787f72U, 0xb208ef855c969f4fU,
704
+ 0xde8b2b66b3bc4723U, 0x8b16fb203055ac76U, 0xaddcb9e83c6b1793U,
705
+ 0xd953e8624b85dd78U, 0x87d4713d6f33aa6bU, 0xa9c98d8ccb009506U,
706
+ 0xd43bf0effdc0ba48U, 0x84a57695fe98746dU, 0xa5ced43b7e3e9188U,
707
+ 0xcf42894a5dce35eaU, 0x818995ce7aa0e1b2U, 0xa1ebfb4219491a1fU,
708
+ 0xca66fa129f9b60a6U, 0xfd00b897478238d0U, 0x9e20735e8cb16382U,
709
+ 0xc5a890362fddbc62U, 0xf712b443bbd52b7bU, 0x9a6bb0aa55653b2dU,
710
+ 0xc1069cd4eabe89f8U, 0xf148440a256e2c76U, 0x96cd2a865764dbcaU,
711
+ 0xbc807527ed3e12bcU, 0xeba09271e88d976bU, 0x93445b8731587ea3U,
712
+ 0xb8157268fdae9e4cU, 0xe61acf033d1a45dfU, 0x8fd0c16206306babU,
713
+ 0xb3c4f1ba87bc8696U, 0xe0b62e2929aba83cU, 0x8c71dcd9ba0b4925U,
714
+ 0xaf8e5410288e1b6fU, 0xdb71e91432b1a24aU, 0x892731ac9faf056eU,
715
+ 0xab70fe17c79ac6caU, 0xd64d3d9db981787dU, 0x85f0468293f0eb4eU,
716
+ 0xa76c582338ed2621U, 0xd1476e2c07286faaU, 0x82cca4db847945caU,
717
+ 0xa37fce126597973cU, 0xcc5fc196fefd7d0cU, 0xff77b1fcbebcdc4fU,
718
+ 0x9faacf3df73609b1U, 0xc795830d75038c1dU, 0xf97ae3d0d2446f25U,
719
+ 0x9becce62836ac577U, 0xc2e801fb244576d5U, 0xf3a20279ed56d48aU,
720
+ 0x9845418c345644d6U, 0xbe5691ef416bd60cU, 0xedec366b11c6cb8fU,
721
+ 0x94b3a202eb1c3f39U, 0xb9e08a83a5e34f07U, 0xe858ad248f5c22c9U,
722
+ 0x91376c36d99995beU, 0xb58547448ffffb2dU, 0xe2e69915b3fff9f9U,
723
+ 0x8dd01fad907ffc3bU, 0xb1442798f49ffb4aU, 0xdd95317f31c7fa1dU,
724
+ 0x8a7d3eef7f1cfc52U, 0xad1c8eab5ee43b66U, 0xd863b256369d4a40U,
725
+ 0x873e4f75e2224e68U, 0xa90de3535aaae202U, 0xd3515c2831559a83U,
726
+ 0x8412d9991ed58091U, 0xa5178fff668ae0b6U, 0xce5d73ff402d98e3U,
727
+ 0x80fa687f881c7f8eU, 0xa139029f6a239f72U, 0xc987434744ac874eU,
728
+ 0xfbe9141915d7a922U, 0x9d71ac8fada6c9b5U, 0xc4ce17b399107c22U,
729
+ 0xf6019da07f549b2bU, 0x99c102844f94e0fbU, 0xc0314325637a1939U,
730
+ 0xf03d93eebc589f88U, 0x96267c7535b763b5U, 0xbbb01b9283253ca2U,
731
+ 0xea9c227723ee8bcbU, 0x92a1958a7675175fU, 0xb749faed14125d36U,
732
+ 0xe51c79a85916f484U, 0x8f31cc0937ae58d2U, 0xb2fe3f0b8599ef07U,
733
+ 0xdfbdcece67006ac9U, 0x8bd6a141006042bdU, 0xaecc49914078536dU,
734
+ 0xda7f5bf590966848U, 0x888f99797a5e012dU, 0xaab37fd7d8f58178U,
735
+ 0xd5605fcdcf32e1d6U, 0x855c3be0a17fcd26U, 0xa6b34ad8c9dfc06fU,
736
+ 0xd0601d8efc57b08bU, 0x823c12795db6ce57U, 0xa2cb1717b52481edU,
737
+ 0xcb7ddcdda26da268U, 0xfe5d54150b090b02U, 0x9efa548d26e5a6e1U,
738
+ 0xc6b8e9b0709f109aU, 0xf867241c8cc6d4c0U, 0x9b407691d7fc44f8U,
739
+ 0xc21094364dfb5636U, 0xf294b943e17a2bc4U, 0x979cf3ca6cec5b5aU,
740
+ 0xbd8430bd08277231U, 0xece53cec4a314ebdU, 0x940f4613ae5ed136U,
741
+ 0xb913179899f68584U, 0xe757dd7ec07426e5U, 0x9096ea6f3848984fU,
742
+ 0xb4bca50b065abe63U, 0xe1ebce4dc7f16dfbU, 0x8d3360f09cf6e4bdU,
743
+ 0xb080392cc4349decU, 0xdca04777f541c567U, 0x89e42caaf9491b60U,
744
+ 0xac5d37d5b79b6239U, 0xd77485cb25823ac7U, 0x86a8d39ef77164bcU,
745
+ 0xa8530886b54dbdebU, 0xd267caa862a12d66U, 0x8380dea93da4bc60U,
746
+ 0xa46116538d0deb78U, 0xcd795be870516656U, 0x806bd9714632dff6U,
747
+ 0xa086cfcd97bf97f3U, 0xc8a883c0fdaf7df0U, 0xfad2a4b13d1b5d6cU,
748
+ 0x9cc3a6eec6311a63U, 0xc3f490aa77bd60fcU, 0xf4f1b4d515acb93bU,
749
+ 0x991711052d8bf3c5U, 0xbf5cd54678eef0b6U, 0xef340a98172aace4U,
750
+ 0x9580869f0e7aac0eU, 0xbae0a846d2195712U, 0xe998d258869facd7U,
751
+ 0x91ff83775423cc06U, 0xb67f6455292cbf08U, 0xe41f3d6a7377eecaU,
752
+ 0x8e938662882af53eU, 0xb23867fb2a35b28dU, 0xdec681f9f4c31f31U,
753
+ 0x8b3c113c38f9f37eU, 0xae0b158b4738705eU, 0xd98ddaee19068c76U,
754
+ 0x87f8a8d4cfa417c9U, 0xa9f6d30a038d1dbcU, 0xd47487cc8470652bU,
755
+ 0x84c8d4dfd2c63f3bU, 0xa5fb0a17c777cf09U, 0xcf79cc9db955c2ccU,
756
+ 0x81ac1fe293d599bfU, 0xa21727db38cb002fU, 0xca9cf1d206fdc03bU,
757
+ 0xfd442e4688bd304aU, 0x9e4a9cec15763e2eU, 0xc5dd44271ad3cdbaU,
758
+ 0xf7549530e188c128U, 0x9a94dd3e8cf578b9U, 0xc13a148e3032d6e7U,
759
+ 0xf18899b1bc3f8ca1U, 0x96f5600f15a7b7e5U, 0xbcb2b812db11a5deU,
760
+ 0xebdf661791d60f56U, 0x936b9fcebb25c995U, 0xb84687c269ef3bfbU,
761
+ 0xe65829b3046b0afaU, 0x8ff71a0fe2c2e6dcU, 0xb3f4e093db73a093U,
762
+ 0xe0f218b8d25088b8U, 0x8c974f7383725573U, 0xafbd2350644eeacfU,
763
+ 0xdbac6c247d62a583U, 0x894bc396ce5da772U, 0xab9eb47c81f5114fU,
764
+ 0xd686619ba27255a2U, 0x8613fd0145877585U, 0xa798fc4196e952e7U,
765
+ 0xd17f3b51fca3a7a0U, 0x82ef85133de648c4U, 0xa3ab66580d5fdaf5U,
766
+ 0xcc963fee10b7d1b3U, 0xffbbcfe994e5c61fU, 0x9fd561f1fd0f9bd3U,
767
+ 0xc7caba6e7c5382c8U, 0xf9bd690a1b68637bU, 0x9c1661a651213e2dU,
768
+ 0xc31bfa0fe5698db8U, 0xf3e2f893dec3f126U, 0x986ddb5c6b3a76b7U,
769
+ 0xbe89523386091465U, 0xee2ba6c0678b597fU, 0x94db483840b717efU,
770
+ 0xba121a4650e4ddebU, 0xe896a0d7e51e1566U, 0x915e2486ef32cd60U,
771
+ 0xb5b5ada8aaff80b8U, 0xe3231912d5bf60e6U, 0x8df5efabc5979c8fU,
772
+ 0xb1736b96b6fd83b3U, 0xddd0467c64bce4a0U, 0x8aa22c0dbef60ee4U,
773
+ 0xad4ab7112eb3929dU, 0xd89d64d57a607744U, 0x87625f056c7c4a8bU,
774
+ 0xa93af6c6c79b5d2dU, 0xd389b47879823479U, 0x843610cb4bf160cbU,
775
+ 0xa54394fe1eedb8feU, 0xce947a3da6a9273eU, 0x811ccc668829b887U,
776
+ 0xa163ff802a3426a8U, 0xc9bcff6034c13052U, 0xfc2c3f3841f17c67U,
777
+ 0x9d9ba7832936edc0U, 0xc5029163f384a931U, 0xf64335bcf065d37dU,
778
+ 0x99ea0196163fa42eU, 0xc06481fb9bcf8d39U, 0xf07da27a82c37088U,
779
+ 0x964e858c91ba2655U, 0xbbe226efb628afeaU, 0xeadab0aba3b2dbe5U,
780
+ 0x92c8ae6b464fc96fU, 0xb77ada0617e3bbcbU, 0xe55990879ddcaabdU,
781
+ 0x8f57fa54c2a9eab6U, 0xb32df8e9f3546564U, 0xdff9772470297ebdU,
782
+ 0x8bfbea76c619ef36U, 0xaefae51477a06b03U, 0xdab99e59958885c4U,
783
+ 0x88b402f7fd75539bU, 0xaae103b5fcd2a881U, 0xd59944a37c0752a2U,
784
+ 0x857fcae62d8493a5U, 0xa6dfbd9fb8e5b88eU, 0xd097ad07a71f26b2U,
785
+ 0x825ecc24c873782fU, 0xa2f67f2dfa90563bU, 0xcbb41ef979346bcaU,
786
+ 0xfea126b7d78186bcU, 0x9f24b832e6b0f436U, 0xc6ede63fa05d3143U,
787
+ 0xf8a95fcf88747d94U, 0x9b69dbe1b548ce7cU, 0xc24452da229b021bU,
788
+ 0xf2d56790ab41c2a2U, 0x97c560ba6b0919a5U, 0xbdb6b8e905cb600fU,
789
+ 0xed246723473e3813U, 0x9436c0760c86e30bU, 0xb94470938fa89bceU,
790
+ 0xe7958cb87392c2c2U, 0x90bd77f3483bb9b9U, 0xb4ecd5f01a4aa828U,
791
+ 0xe2280b6c20dd5232U, 0x8d590723948a535fU, 0xb0af48ec79ace837U,
792
+ 0xdcdb1b2798182244U, 0x8a08f0f8bf0f156bU, 0xac8b2d36eed2dac5U,
793
+ 0xd7adf884aa879177U, 0x86ccbb52ea94baeaU, 0xa87fea27a539e9a5U,
794
+ 0xd29fe4b18e88640eU, 0x83a3eeeef9153e89U, 0xa48ceaaab75a8e2bU,
795
+ 0xcdb02555653131b6U, 0x808e17555f3ebf11U, 0xa0b19d2ab70e6ed6U,
796
+ 0xc8de047564d20a8bU, 0xfb158592be068d2eU, 0x9ced737bb6c4183dU,
797
+ 0xc428d05aa4751e4cU, 0xf53304714d9265dfU, 0x993fe2c6d07b7fabU,
798
+ 0xbf8fdb78849a5f96U, 0xef73d256a5c0f77cU, 0x95a8637627989aadU,
799
+ 0xbb127c53b17ec159U, 0xe9d71b689dde71afU, 0x9226712162ab070dU,
800
+ 0xb6b00d69bb55c8d1U, 0xe45c10c42a2b3b05U, 0x8eb98a7a9a5b04e3U,
801
+ 0xb267ed1940f1c61cU, 0xdf01e85f912e37a3U, 0x8b61313bbabce2c6U,
802
+ 0xae397d8aa96c1b77U, 0xd9c7dced53c72255U, 0x881cea14545c7575U,
803
+ 0xaa242499697392d2U, 0xd4ad2dbfc3d07787U, 0x84ec3c97da624ab4U,
804
+ 0xa6274bbdd0fadd61U, 0xcfb11ead453994baU, 0x81ceb32c4b43fcf4U,
805
+ 0xa2425ff75e14fc31U, 0xcad2f7f5359a3b3eU, 0xfd87b5f28300ca0dU,
806
+ 0x9e74d1b791e07e48U, 0xc612062576589ddaU, 0xf79687aed3eec551U,
807
+ 0x9abe14cd44753b52U, 0xc16d9a0095928a27U, 0xf1c90080baf72cb1U,
808
+ 0x971da05074da7beeU, 0xbce5086492111aeaU, 0xec1e4a7db69561a5U,
809
+ 0x9392ee8e921d5d07U, 0xb877aa3236a4b449U, 0xe69594bec44de15bU,
810
+ 0x901d7cf73ab0acd9U, 0xb424dc35095cd80fU, 0xe12e13424bb40e13U,
811
+ 0x8cbccc096f5088cbU, 0xafebff0bcb24aafeU, 0xdbe6fecebdedd5beU,
812
+ 0x89705f4136b4a597U, 0xabcc77118461cefcU, 0xd6bf94d5e57a42bcU,
813
+ 0x8637bd05af6c69b5U, 0xa7c5ac471b478423U, 0xd1b71758e219652bU,
814
+ 0x83126e978d4fdf3bU, 0xa3d70a3d70a3d70aU, 0xccccccccccccccccU,
815
+ 0x8000000000000000U, 0xa000000000000000U, 0xc800000000000000U,
816
+ 0xfa00000000000000U, 0x9c40000000000000U, 0xc350000000000000U,
817
+ 0xf424000000000000U, 0x9896800000000000U, 0xbebc200000000000U,
818
+ 0xee6b280000000000U, 0x9502f90000000000U, 0xba43b74000000000U,
819
+ 0xe8d4a51000000000U, 0x9184e72a00000000U, 0xb5e620f480000000U,
820
+ 0xe35fa931a0000000U, 0x8e1bc9bf04000000U, 0xb1a2bc2ec5000000U,
821
+ 0xde0b6b3a76400000U, 0x8ac7230489e80000U, 0xad78ebc5ac620000U,
822
+ 0xd8d726b7177a8000U, 0x878678326eac9000U, 0xa968163f0a57b400U,
823
+ 0xd3c21bcecceda100U, 0x84595161401484a0U, 0xa56fa5b99019a5c8U,
824
+ 0xcecb8f27f4200f3aU, 0x813f3978f8940984U, 0xa18f07d736b90be5U,
825
+ 0xc9f2c9cd04674edeU, 0xfc6f7c4045812296U, 0x9dc5ada82b70b59dU,
826
+ 0xc5371912364ce305U, 0xf684df56c3e01bc6U, 0x9a130b963a6c115cU,
827
+ 0xc097ce7bc90715b3U, 0xf0bdc21abb48db20U, 0x96769950b50d88f4U,
828
+ 0xbc143fa4e250eb31U, 0xeb194f8e1ae525fdU, 0x92efd1b8d0cf37beU,
829
+ 0xb7abc627050305adU, 0xe596b7b0c643c719U, 0x8f7e32ce7bea5c6fU,
830
+ 0xb35dbf821ae4f38bU, 0xe0352f62a19e306eU, 0x8c213d9da502de45U,
831
+ 0xaf298d050e4395d6U, 0xdaf3f04651d47b4cU, 0x88d8762bf324cd0fU,
832
+ 0xab0e93b6efee0053U, 0xd5d238a4abe98068U, 0x85a36366eb71f041U,
833
+ 0xa70c3c40a64e6c51U, 0xd0cf4b50cfe20765U, 0x82818f1281ed449fU,
834
+ 0xa321f2d7226895c7U, 0xcbea6f8ceb02bb39U, 0xfee50b7025c36a08U,
835
+ 0x9f4f2726179a2245U, 0xc722f0ef9d80aad6U, 0xf8ebad2b84e0d58bU,
836
+ 0x9b934c3b330c8577U, 0xc2781f49ffcfa6d5U, 0xf316271c7fc3908aU,
837
+ 0x97edd871cfda3a56U, 0xbde94e8e43d0c8ecU, 0xed63a231d4c4fb27U,
838
+ 0x945e455f24fb1cf8U, 0xb975d6b6ee39e436U, 0xe7d34c64a9c85d44U,
839
+ 0x90e40fbeea1d3a4aU, 0xb51d13aea4a488ddU, 0xe264589a4dcdab14U,
840
+ 0x8d7eb76070a08aecU, 0xb0de65388cc8ada8U, 0xdd15fe86affad912U,
841
+ 0x8a2dbf142dfcc7abU, 0xacb92ed9397bf996U, 0xd7e77a8f87daf7fbU,
842
+ 0x86f0ac99b4e8dafdU, 0xa8acd7c0222311bcU, 0xd2d80db02aabd62bU,
843
+ 0x83c7088e1aab65dbU, 0xa4b8cab1a1563f52U, 0xcde6fd5e09abcf26U,
844
+ 0x80b05e5ac60b6178U, 0xa0dc75f1778e39d6U, 0xc913936dd571c84cU,
845
+ 0xfb5878494ace3a5fU, 0x9d174b2dcec0e47bU, 0xc45d1df942711d9aU,
846
+ 0xf5746577930d6500U, 0x9968bf6abbe85f20U, 0xbfc2ef456ae276e8U,
847
+ 0xefb3ab16c59b14a2U, 0x95d04aee3b80ece5U, 0xbb445da9ca61281fU,
848
+ 0xea1575143cf97226U, 0x924d692ca61be758U, 0xb6e0c377cfa2e12eU,
849
+ 0xe498f455c38b997aU, 0x8edf98b59a373fecU, 0xb2977ee300c50fe7U,
850
+ 0xdf3d5e9bc0f653e1U, 0x8b865b215899f46cU, 0xae67f1e9aec07187U,
851
+ 0xda01ee641a708de9U, 0x884134fe908658b2U, 0xaa51823e34a7eedeU,
852
+ 0xd4e5e2cdc1d1ea96U, 0x850fadc09923329eU, 0xa6539930bf6bff45U,
853
+ 0xcfe87f7cef46ff16U, 0x81f14fae158c5f6eU, 0xa26da3999aef7749U,
854
+ 0xcb090c8001ab551cU, 0xfdcb4fa002162a63U, 0x9e9f11c4014dda7eU,
855
+ 0xc646d63501a1511dU, 0xf7d88bc24209a565U, 0x9ae757596946075fU,
856
+ 0xc1a12d2fc3978937U, 0xf209787bb47d6b84U, 0x9745eb4d50ce6332U,
857
+ 0xbd176620a501fbffU, 0xec5d3fa8ce427affU, 0x93ba47c980e98cdfU,
858
+ 0xb8a8d9bbe123f017U, 0xe6d3102ad96cec1dU, 0x9043ea1ac7e41392U,
859
+ 0xb454e4a179dd1877U, 0xe16a1dc9d8545e94U, 0x8ce2529e2734bb1dU,
860
+ 0xb01ae745b101e9e4U, 0xdc21a1171d42645dU, 0x899504ae72497ebaU,
861
+ 0xabfa45da0edbde69U, 0xd6f8d7509292d603U, 0x865b86925b9bc5c2U,
862
+ 0xa7f26836f282b732U, 0xd1ef0244af2364ffU, 0x8335616aed761f1fU,
863
+ 0xa402b9c5a8d3a6e7U, 0xcd036837130890a1U, 0x802221226be55a64U,
864
+ 0xa02aa96b06deb0fdU, 0xc83553c5c8965d3dU, 0xfa42a8b73abbf48cU,
865
+ 0x9c69a97284b578d7U, 0xc38413cf25e2d70dU, 0xf46518c2ef5b8cd1U,
866
+ 0x98bf2f79d5993802U, 0xbeeefb584aff8603U, 0xeeaaba2e5dbf6784U,
867
+ 0x952ab45cfa97a0b2U, 0xba756174393d88dfU, 0xe912b9d1478ceb17U,
868
+ 0x91abb422ccb812eeU, 0xb616a12b7fe617aaU, 0xe39c49765fdf9d94U,
869
+ 0x8e41ade9fbebc27dU, 0xb1d219647ae6b31cU, 0xde469fbd99a05fe3U,
870
+ 0x8aec23d680043beeU, 0xada72ccc20054ae9U, 0xd910f7ff28069da4U,
871
+ 0x87aa9aff79042286U, 0xa99541bf57452b28U, 0xd3fa922f2d1675f2U,
872
+ 0x847c9b5d7c2e09b7U, 0xa59bc234db398c25U, 0xcf02b2c21207ef2eU,
873
+ 0x8161afb94b44f57dU, 0xa1ba1ba79e1632dcU, 0xca28a291859bbf93U,
874
+ 0xfcb2cb35e702af78U, 0x9defbf01b061adabU, 0xc56baec21c7a1916U,
875
+ 0xf6c69a72a3989f5bU, 0x9a3c2087a63f6399U, 0xc0cb28a98fcf3c7fU,
876
+ 0xf0fdf2d3f3c30b9fU, 0x969eb7c47859e743U, 0xbc4665b596706114U,
877
+ 0xeb57ff22fc0c7959U, 0x9316ff75dd87cbd8U, 0xb7dcbf5354e9beceU,
878
+ 0xe5d3ef282a242e81U, 0x8fa475791a569d10U, 0xb38d92d760ec4455U,
879
+ 0xe070f78d3927556aU, 0x8c469ab843b89562U, 0xaf58416654a6babbU,
880
+ 0xdb2e51bfe9d0696aU, 0x88fcf317f22241e2U, 0xab3c2fddeeaad25aU,
881
+ 0xd60b3bd56a5586f1U, 0x85c7056562757456U, 0xa738c6bebb12d16cU,
882
+ 0xd106f86e69d785c7U, 0x82a45b450226b39cU, 0xa34d721642b06084U,
883
+ 0xcc20ce9bd35c78a5U, 0xff290242c83396ceU, 0x9f79a169bd203e41U,
884
+ 0xc75809c42c684dd1U, 0xf92e0c3537826145U, 0x9bbcc7a142b17ccbU,
885
+ 0xc2abf989935ddbfeU, 0xf356f7ebf83552feU, 0x98165af37b2153deU,
886
+ 0xbe1bf1b059e9a8d6U, 0xeda2ee1c7064130cU, 0x9485d4d1c63e8be7U,
887
+ 0xb9a74a0637ce2ee1U, 0xe8111c87c5c1ba99U, 0x910ab1d4db9914a0U,
888
+ 0xb54d5e4a127f59c8U, 0xe2a0b5dc971f303aU, 0x8da471a9de737e24U,
889
+ 0xb10d8e1456105dadU, 0xdd50f1996b947518U, 0x8a5296ffe33cc92fU,
890
+ 0xace73cbfdc0bfb7bU, 0xd8210befd30efa5aU, 0x8714a775e3e95c78U,
891
+ 0xa8d9d1535ce3b396U, 0xd31045a8341ca07cU, 0x83ea2b892091e44dU,
892
+ 0xa4e4b66b68b65d60U, 0xce1de40642e3f4b9U, 0x80d2ae83e9ce78f3U,
893
+ 0xa1075a24e4421730U, 0xc94930ae1d529cfcU, 0xfb9b7cd9a4a7443cU,
894
+ 0x9d412e0806e88aa5U, 0xc491798a08a2ad4eU, 0xf5b5d7ec8acb58a2U,
895
+ 0x9991a6f3d6bf1765U, 0xbff610b0cc6edd3fU, 0xeff394dcff8a948eU,
896
+ 0x95f83d0a1fb69cd9U, 0xbb764c4ca7a4440fU, 0xea53df5fd18d5513U,
897
+ 0x92746b9be2f8552cU, 0xb7118682dbb66a77U, 0xe4d5e82392a40515U,
898
+ 0x8f05b1163ba6832dU, 0xb2c71d5bca9023f8U, 0xdf78e4b2bd342cf6U,
899
+ 0x8bab8eefb6409c1aU, 0xae9672aba3d0c320U, 0xda3c0f568cc4f3e8U,
900
+ 0x8865899617fb1871U, 0xaa7eebfb9df9de8dU, 0xd51ea6fa85785631U,
901
+ 0x8533285c936b35deU, 0xa67ff273b8460356U, 0xd01fef10a657842cU,
902
+ 0x8213f56a67f6b29bU, 0xa298f2c501f45f42U, 0xcb3f2f7642717713U,
903
+ 0xfe0efb53d30dd4d7U, 0x9ec95d1463e8a506U, 0xc67bb4597ce2ce48U,
904
+ 0xf81aa16fdc1b81daU, 0x9b10a4e5e9913128U, 0xc1d4ce1f63f57d72U,
905
+ 0xf24a01a73cf2dccfU, 0x976e41088617ca01U, 0xbd49d14aa79dbc82U,
906
+ 0xec9c459d51852ba2U, 0x93e1ab8252f33b45U, 0xb8da1662e7b00a17U,
907
+ 0xe7109bfba19c0c9dU, 0x906a617d450187e2U, 0xb484f9dc9641e9daU,
908
+ 0xe1a63853bbd26451U, 0x8d07e33455637eb2U, 0xb049dc016abc5e5fU,
909
+ 0xdc5c5301c56b75f7U, 0x89b9b3e11b6329baU, 0xac2820d9623bf429U,
910
+ 0xd732290fbacaf133U, 0x867f59a9d4bed6c0U, 0xa81f301449ee8c70U,
911
+ 0xd226fc195c6a2f8cU, 0x83585d8fd9c25db7U, 0xa42e74f3d032f525U,
912
+ 0xcd3a1230c43fb26fU, 0x80444b5e7aa7cf85U, 0xa0555e361951c366U,
913
+ 0xc86ab5c39fa63440U, 0xfa856334878fc150U, 0x9c935e00d4b9d8d2U,
914
+ 0xc3b8358109e84f07U, 0xf4a642e14c6262c8U, 0x98e7e9cccfbd7dbdU,
915
+ 0xbf21e44003acdd2cU, 0xeeea5d5004981478U, 0x95527a5202df0ccbU,
916
+ 0xbaa718e68396cffdU, 0xe950df20247c83fdU, 0x91d28b7416cdd27eU,
917
+ 0xb6472e511c81471dU, 0xe3d8f9e563a198e5U, 0x8e679c2f5e44ff8fU,
918
+ };
919
+
920
+ const int16_t kPower10ExponentTable[] = {
921
+ -1200, -1196, -1193, -1190, -1186, -1183, -1180, -1176, -1173, -1170, -1166,
922
+ -1163, -1160, -1156, -1153, -1150, -1146, -1143, -1140, -1136, -1133, -1130,
923
+ -1127, -1123, -1120, -1117, -1113, -1110, -1107, -1103, -1100, -1097, -1093,
924
+ -1090, -1087, -1083, -1080, -1077, -1073, -1070, -1067, -1063, -1060, -1057,
925
+ -1053, -1050, -1047, -1043, -1040, -1037, -1034, -1030, -1027, -1024, -1020,
926
+ -1017, -1014, -1010, -1007, -1004, -1000, -997, -994, -990, -987, -984,
927
+ -980, -977, -974, -970, -967, -964, -960, -957, -954, -950, -947,
928
+ -944, -940, -937, -934, -931, -927, -924, -921, -917, -914, -911,
929
+ -907, -904, -901, -897, -894, -891, -887, -884, -881, -877, -874,
930
+ -871, -867, -864, -861, -857, -854, -851, -847, -844, -841, -838,
931
+ -834, -831, -828, -824, -821, -818, -814, -811, -808, -804, -801,
932
+ -798, -794, -791, -788, -784, -781, -778, -774, -771, -768, -764,
933
+ -761, -758, -754, -751, -748, -744, -741, -738, -735, -731, -728,
934
+ -725, -721, -718, -715, -711, -708, -705, -701, -698, -695, -691,
935
+ -688, -685, -681, -678, -675, -671, -668, -665, -661, -658, -655,
936
+ -651, -648, -645, -642, -638, -635, -632, -628, -625, -622, -618,
937
+ -615, -612, -608, -605, -602, -598, -595, -592, -588, -585, -582,
938
+ -578, -575, -572, -568, -565, -562, -558, -555, -552, -549, -545,
939
+ -542, -539, -535, -532, -529, -525, -522, -519, -515, -512, -509,
940
+ -505, -502, -499, -495, -492, -489, -485, -482, -479, -475, -472,
941
+ -469, -465, -462, -459, -455, -452, -449, -446, -442, -439, -436,
942
+ -432, -429, -426, -422, -419, -416, -412, -409, -406, -402, -399,
943
+ -396, -392, -389, -386, -382, -379, -376, -372, -369, -366, -362,
944
+ -359, -356, -353, -349, -346, -343, -339, -336, -333, -329, -326,
945
+ -323, -319, -316, -313, -309, -306, -303, -299, -296, -293, -289,
946
+ -286, -283, -279, -276, -273, -269, -266, -263, -259, -256, -253,
947
+ -250, -246, -243, -240, -236, -233, -230, -226, -223, -220, -216,
948
+ -213, -210, -206, -203, -200, -196, -193, -190, -186, -183, -180,
949
+ -176, -173, -170, -166, -163, -160, -157, -153, -150, -147, -143,
950
+ -140, -137, -133, -130, -127, -123, -120, -117, -113, -110, -107,
951
+ -103, -100, -97, -93, -90, -87, -83, -80, -77, -73, -70,
952
+ -67, -63, -60, -57, -54, -50, -47, -44, -40, -37, -34,
953
+ -30, -27, -24, -20, -17, -14, -10, -7, -4, 0, 3,
954
+ 6, 10, 13, 16, 20, 23, 26, 30, 33, 36, 39,
955
+ 43, 46, 49, 53, 56, 59, 63, 66, 69, 73, 76,
956
+ 79, 83, 86, 89, 93, 96, 99, 103, 106, 109, 113,
957
+ 116, 119, 123, 126, 129, 132, 136, 139, 142, 146, 149,
958
+ 152, 156, 159, 162, 166, 169, 172, 176, 179, 182, 186,
959
+ 189, 192, 196, 199, 202, 206, 209, 212, 216, 219, 222,
960
+ 226, 229, 232, 235, 239, 242, 245, 249, 252, 255, 259,
961
+ 262, 265, 269, 272, 275, 279, 282, 285, 289, 292, 295,
962
+ 299, 302, 305, 309, 312, 315, 319, 322, 325, 328, 332,
963
+ 335, 338, 342, 345, 348, 352, 355, 358, 362, 365, 368,
964
+ 372, 375, 378, 382, 385, 388, 392, 395, 398, 402, 405,
965
+ 408, 412, 415, 418, 422, 425, 428, 431, 435, 438, 441,
966
+ 445, 448, 451, 455, 458, 461, 465, 468, 471, 475, 478,
967
+ 481, 485, 488, 491, 495, 498, 501, 505, 508, 511, 515,
968
+ 518, 521, 524, 528, 531, 534, 538, 541, 544, 548, 551,
969
+ 554, 558, 561, 564, 568, 571, 574, 578, 581, 584, 588,
970
+ 591, 594, 598, 601, 604, 608, 611, 614, 617, 621, 624,
971
+ 627, 631, 634, 637, 641, 644, 647, 651, 654, 657, 661,
972
+ 664, 667, 671, 674, 677, 681, 684, 687, 691, 694, 697,
973
+ 701, 704, 707, 711, 714, 717, 720, 724, 727, 730, 734,
974
+ 737, 740, 744, 747, 750, 754, 757, 760, 764, 767, 770,
975
+ 774, 777, 780, 784, 787, 790, 794, 797, 800, 804, 807,
976
+ 810, 813, 817, 820, 823, 827, 830, 833, 837, 840, 843,
977
+ 847, 850, 853, 857, 860, 863, 867, 870, 873, 877, 880,
978
+ 883, 887, 890, 893, 897, 900, 903, 907, 910, 913, 916,
979
+ 920, 923, 926, 930, 933, 936, 940, 943, 946, 950, 953,
980
+ 956, 960,
981
+ };
982
+
983
+ } // namespace
984
+ ABSL_NAMESPACE_END
985
+ } // namespace absl