floatconv.c 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949
  1. /* Deterministic conversion between `double` and its decimal text form.
  2. *
  3. * The bulk of this file is vendored verbatim from Wuffs so that it stays cheap
  4. * to diff against upstream when picking up fixes:
  5. *
  6. * https://github.com/google/wuffs
  7. * internal/cgen/base/floatconv-submodule-data.c
  8. * internal/cgen/base/floatconv-submodule-code.c
  9. *
  10. * Copyright 2020 The Wuffs Authors.
  11. * SPDX-License-Identifier: Apache-2.0 OR MIT
  12. *
  13. * Parsing is Eisel-Lemire with an exact high-precision-decimal fallback;
  14. * rendering runs the same decimal machinery backwards. Both are correctly
  15. * rounded, locale independent and (with the one exception guarded below) use
  16. * integer arithmetic only, which is what makes them deterministic.
  17. *
  18. * Deviations from upstream are tagged `[pocketpy]`:
  19. * 1. the f16/f32 entry points are dropped, as is the wuffs_base__ machinery
  20. * they need; what little remains is reimplemented in the shim below;
  21. * 2. every entry point is `static`, since pocketpy exposes its own API at
  22. * the bottom of this file;
  23. * 3. the shortest-round-trip renderer switches to exponent notation on
  24. * CPython's threshold rather than C's "%g" one;
  25. * 4. the sole floating-point fast path is compiled out on targets with
  26. * excess intermediate precision.
  27. *
  28. * Do not run clang-format over the vendored region; `scripts/format.py` skips
  29. * this file on purpose.
  30. */
  31. #include "pocketpy/common/floatconv.h"
  32. #include <float.h>
  33. #include <stddef.h>
  34. #include <stdint.h>
  35. #include <string.h>
  36. /* ---------------- [pocketpy] wuffs_base__ shim ----------------
  37. *
  38. * Just enough of Wuffs' base module for the vendored code to compile. These
  39. * are copied from internal/cgen/base/fundamental-public.h and
  40. * internal/cgen/base/strconv-public.h.
  41. */
  42. #define WUFFS_BASE__MAYBE_STATIC static
  43. typedef struct wuffs_base__slice_u8__struct {
  44. uint8_t* ptr;
  45. size_t len;
  46. } wuffs_base__slice_u8;
  47. typedef struct wuffs_base__status__struct {
  48. const char* repr;
  49. } wuffs_base__status;
  50. typedef struct wuffs_base__result_f64__struct {
  51. wuffs_base__status status;
  52. double value;
  53. } wuffs_base__result_f64;
  54. static const char wuffs_base__error__bad_argument[] = "#base: bad argument";
  55. static const char wuffs_base__error__bad_receiver[] = "#base: bad receiver";
  56. static inline wuffs_base__status //
  57. wuffs_base__make_status(const char* repr) {
  58. wuffs_base__status z;
  59. z.repr = repr;
  60. return z;
  61. }
  62. static inline int32_t //
  63. wuffs_base__i32__max(int32_t x, int32_t y) {
  64. return x > y ? x : y;
  65. }
  66. static inline uint32_t //
  67. wuffs_base__u32__min(uint32_t x, uint32_t y) {
  68. return x < y ? x : y;
  69. }
  70. #if (defined(__GNUC__) || defined(__clang__)) && (__SIZEOF_LONG__ == 8)
  71. static inline uint32_t //
  72. wuffs_base__count_leading_zeroes_u64(uint64_t u) {
  73. return u ? ((uint32_t)(__builtin_clzl(u))) : 64u;
  74. }
  75. #else
  76. static inline uint32_t //
  77. wuffs_base__count_leading_zeroes_u64(uint64_t u) {
  78. if (u == 0) {
  79. return 64;
  80. }
  81. uint32_t n = 0;
  82. if ((u >> 32) == 0) {
  83. n |= 32;
  84. u <<= 32;
  85. }
  86. if ((u >> 48) == 0) {
  87. n |= 16;
  88. u <<= 16;
  89. }
  90. if ((u >> 56) == 0) {
  91. n |= 8;
  92. u <<= 8;
  93. }
  94. if ((u >> 60) == 0) {
  95. n |= 4;
  96. u <<= 4;
  97. }
  98. if ((u >> 62) == 0) {
  99. n |= 2;
  100. u <<= 2;
  101. }
  102. if ((u >> 63) == 0) {
  103. n |= 1;
  104. u <<= 1;
  105. }
  106. return n;
  107. }
  108. #endif
  109. typedef struct wuffs_base__multiply_u64__output__struct {
  110. uint64_t lo;
  111. uint64_t hi;
  112. } wuffs_base__multiply_u64__output;
  113. static inline wuffs_base__multiply_u64__output //
  114. wuffs_base__multiply_u64(uint64_t x, uint64_t y) {
  115. #if defined(__SIZEOF_INT128__)
  116. __uint128_t z = ((__uint128_t)x) * ((__uint128_t)y);
  117. wuffs_base__multiply_u64__output o;
  118. o.lo = ((uint64_t)(z));
  119. o.hi = ((uint64_t)(z >> 64));
  120. return o;
  121. #else
  122. uint64_t x0 = x & 0xFFFFFFFF;
  123. uint64_t x1 = x >> 32;
  124. uint64_t y0 = y & 0xFFFFFFFF;
  125. uint64_t y1 = y >> 32;
  126. uint64_t w0 = x0 * y0;
  127. uint64_t t = (x1 * y0) + (w0 >> 32);
  128. uint64_t w1 = t & 0xFFFFFFFF;
  129. uint64_t w2 = t >> 32;
  130. w1 += x0 * y1;
  131. wuffs_base__multiply_u64__output o;
  132. o.lo = x * y;
  133. o.hi = (x1 * y1) + w2 + (w1 >> 32);
  134. return o;
  135. #endif
  136. }
  137. static inline void //
  138. wuffs_base__poke_u24le__no_bounds_check(uint8_t* p, uint32_t x) {
  139. p[0] = (uint8_t)(x >> 0);
  140. p[1] = (uint8_t)(x >> 8);
  141. p[2] = (uint8_t)(x >> 16);
  142. }
  143. static inline void //
  144. wuffs_base__poke_u32le__no_bounds_check(uint8_t* p, uint32_t x) {
  145. p[0] = (uint8_t)(x >> 0);
  146. p[1] = (uint8_t)(x >> 8);
  147. p[2] = (uint8_t)(x >> 16);
  148. p[3] = (uint8_t)(x >> 24);
  149. }
  150. static inline uint64_t //
  151. wuffs_base__ieee_754_bit_representation__from_f64_to_u64(double f) {
  152. uint64_t u = 0;
  153. if (sizeof(uint64_t) == sizeof(double)) {
  154. memcpy(&u, &f, sizeof(uint64_t));
  155. }
  156. return u;
  157. }
  158. static inline double //
  159. wuffs_base__ieee_754_bit_representation__from_u64_to_f64(uint64_t u) {
  160. double f = 0;
  161. if (sizeof(uint64_t) == sizeof(double)) {
  162. memcpy(&f, &u, sizeof(uint64_t));
  163. }
  164. return f;
  165. }
  166. // Options for wuffs_base__parse_number_f64.
  167. #define WUFFS_BASE__PARSE_NUMBER_XXX__DEFAULT_OPTIONS ((uint32_t)0x00000000)
  168. #define WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_MULTIPLE_LEADING_ZEROES \
  169. ((uint32_t)0x00000001)
  170. #define WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES ((uint32_t)0x00000002)
  171. #define WUFFS_BASE__PARSE_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA \
  172. ((uint32_t)0x00000010)
  173. #define WUFFS_BASE__PARSE_NUMBER_FXX__REJECT_INF_AND_NAN ((uint32_t)0x00000020)
  174. // Options for wuffs_base__render_number_f64.
  175. #define WUFFS_BASE__RENDER_NUMBER_XXX__DEFAULT_OPTIONS ((uint32_t)0x00000000)
  176. #define WUFFS_BASE__RENDER_NUMBER_XXX__ALIGN_RIGHT ((uint32_t)0x00000100)
  177. #define WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN ((uint32_t)0x00000200)
  178. #define WUFFS_BASE__RENDER_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA \
  179. ((uint32_t)0x00001000)
  180. #define WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_ABSENT ((uint32_t)0x00002000)
  181. #define WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_PRESENT ((uint32_t)0x00004000)
  182. #define WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION \
  183. ((uint32_t)0x00008000)
  184. /* [pocketpy] Deviation 3.
  185. *
  186. * Wuffs' "%g" notation follows C and switches to an exponent once the decimal
  187. * point moves past 6 digits, so 1e6 would render as "1e+06". CPython's repr()
  188. * instead switches once `decimal_point > 16`, which is what
  189. * `wuffs_private_impl__high_prec_dec__render_*` calls an `e_threshold` of 16.
  190. * See `format_float_short` in CPython's Python/pystrtod.c.
  191. */
  192. #define PK_FLOATCONV_REPR_E_THRESHOLD 16
  193. /* [pocketpy] Deviation 4.
  194. *
  195. * Everything below is integer arithmetic except for one `d *= power_of_10`
  196. * fast path in wuffs_base__parse_number_f64. That multiply is exact and
  197. * correctly rounded on an IEEE-754 target, but on a target that evaluates
  198. * doubles in a wider format -- 32-bit x86 using the x87 stack is the one that
  199. * still matters -- it rounds twice and can land one ulp away from what the
  200. * integer path computes. Compile it out there and let Eisel-Lemire handle
  201. * those inputs instead; the answer is the same, just a few ns slower.
  202. */
  203. #if !defined(FLT_EVAL_METHOD) || (FLT_EVAL_METHOD == 0)
  204. #define PK_FLOATCONV_HAS_EXACT_DOUBLE_ARITHMETIC 1
  205. #else
  206. #define PK_FLOATCONV_HAS_EXACT_DOUBLE_ARITHMETIC 0
  207. #endif
  208. /* ---------------- end of the [pocketpy] shim ---------------- */
  209. // ---------------- IEEE 754 Floating Point
  210. // The etc__hpd_left_shift and etc__powers_of_5 tables were printed by
  211. // script/print-hpd-left-shift.go. That script has an optional -comments flag,
  212. // whose output is not copied here, which prints further detail.
  213. //
  214. // These tables are used in
  215. // wuffs_private_impl__high_prec_dec__lshift_num_new_digits.
  216. // wuffs_private_impl__hpd_left_shift[i] encodes the number of new digits
  217. // created after multiplying a positive integer by (1 << i): the additional
  218. // length in the decimal representation. For example, shifting "234" by 3
  219. // (equivalent to multiplying by 8) will produce "1872". Going from a 3-length
  220. // string to a 4-length string means that 1 new digit was added (and existing
  221. // digits may have changed).
  222. //
  223. // Shifting by i can add either N or N-1 new digits, depending on whether the
  224. // original positive integer compares >= or < to the i'th power of 5 (as 10
  225. // equals 2 * 5). Comparison is lexicographic, not numerical.
  226. //
  227. // For example, shifting by 4 (i.e. multiplying by 16) can add 1 or 2 new
  228. // digits, depending on a lexicographic comparison to (5 ** 4), i.e. "625":
  229. // - ("1" << 4) is "16", which adds 1 new digit.
  230. // - ("5678" << 4) is "90848", which adds 1 new digit.
  231. // - ("624" << 4) is "9984", which adds 1 new digit.
  232. // - ("62498" << 4) is "999968", which adds 1 new digit.
  233. // - ("625" << 4) is "10000", which adds 2 new digits.
  234. // - ("625001" << 4) is "10000016", which adds 2 new digits.
  235. // - ("7008" << 4) is "112128", which adds 2 new digits.
  236. // - ("99" << 4) is "1584", which adds 2 new digits.
  237. //
  238. // Thus, when i is 4, N is 2 and (5 ** i) is "625". This etc__hpd_left_shift
  239. // array encodes this as:
  240. // - etc__hpd_left_shift[4] is 0x1006 = (2 << 11) | 0x0006.
  241. // - etc__hpd_left_shift[5] is 0x1009 = (? << 11) | 0x0009.
  242. // where the ? isn't relevant for i == 4.
  243. //
  244. // The high 5 bits of etc__hpd_left_shift[i] is N, the higher of the two
  245. // possible number of new digits. The low 11 bits are an offset into the
  246. // etc__powers_of_5 array (of length 0x051C, so offsets fit in 11 bits). When i
  247. // is 4, its offset and the next one is 6 and 9, and etc__powers_of_5[6 .. 9]
  248. // is the string "\x06\x02\x05", so the relevant power of 5 is "625".
  249. //
  250. // Thanks to Ken Thompson for the original idea.
  251. static const uint16_t wuffs_private_impl__hpd_left_shift[65] = {
  252. 0x0000, 0x0800, 0x0801, 0x0803, 0x1006, 0x1009, 0x100D, 0x1812, 0x1817,
  253. 0x181D, 0x2024, 0x202B, 0x2033, 0x203C, 0x2846, 0x2850, 0x285B, 0x3067,
  254. 0x3073, 0x3080, 0x388E, 0x389C, 0x38AB, 0x38BB, 0x40CC, 0x40DD, 0x40EF,
  255. 0x4902, 0x4915, 0x4929, 0x513E, 0x5153, 0x5169, 0x5180, 0x5998, 0x59B0,
  256. 0x59C9, 0x61E3, 0x61FD, 0x6218, 0x6A34, 0x6A50, 0x6A6D, 0x6A8B, 0x72AA,
  257. 0x72C9, 0x72E9, 0x7B0A, 0x7B2B, 0x7B4D, 0x8370, 0x8393, 0x83B7, 0x83DC,
  258. 0x8C02, 0x8C28, 0x8C4F, 0x9477, 0x949F, 0x94C8, 0x9CF2, 0x051C, 0x051C,
  259. 0x051C, 0x051C,
  260. };
  261. // wuffs_private_impl__powers_of_5 contains the powers of 5, concatenated
  262. // together: "5", "25", "125", "625", "3125", etc.
  263. static const uint8_t wuffs_private_impl__powers_of_5[0x051C] = {
  264. 5, 2, 5, 1, 2, 5, 6, 2, 5, 3, 1, 2, 5, 1, 5, 6, 2, 5, 7, 8, 1, 2, 5, 3, 9,
  265. 0, 6, 2, 5, 1, 9, 5, 3, 1, 2, 5, 9, 7, 6, 5, 6, 2, 5, 4, 8, 8, 2, 8, 1, 2,
  266. 5, 2, 4, 4, 1, 4, 0, 6, 2, 5, 1, 2, 2, 0, 7, 0, 3, 1, 2, 5, 6, 1, 0, 3, 5,
  267. 1, 5, 6, 2, 5, 3, 0, 5, 1, 7, 5, 7, 8, 1, 2, 5, 1, 5, 2, 5, 8, 7, 8, 9, 0,
  268. 6, 2, 5, 7, 6, 2, 9, 3, 9, 4, 5, 3, 1, 2, 5, 3, 8, 1, 4, 6, 9, 7, 2, 6, 5,
  269. 6, 2, 5, 1, 9, 0, 7, 3, 4, 8, 6, 3, 2, 8, 1, 2, 5, 9, 5, 3, 6, 7, 4, 3, 1,
  270. 6, 4, 0, 6, 2, 5, 4, 7, 6, 8, 3, 7, 1, 5, 8, 2, 0, 3, 1, 2, 5, 2, 3, 8, 4,
  271. 1, 8, 5, 7, 9, 1, 0, 1, 5, 6, 2, 5, 1, 1, 9, 2, 0, 9, 2, 8, 9, 5, 5, 0, 7,
  272. 8, 1, 2, 5, 5, 9, 6, 0, 4, 6, 4, 4, 7, 7, 5, 3, 9, 0, 6, 2, 5, 2, 9, 8, 0,
  273. 2, 3, 2, 2, 3, 8, 7, 6, 9, 5, 3, 1, 2, 5, 1, 4, 9, 0, 1, 1, 6, 1, 1, 9, 3,
  274. 8, 4, 7, 6, 5, 6, 2, 5, 7, 4, 5, 0, 5, 8, 0, 5, 9, 6, 9, 2, 3, 8, 2, 8, 1,
  275. 2, 5, 3, 7, 2, 5, 2, 9, 0, 2, 9, 8, 4, 6, 1, 9, 1, 4, 0, 6, 2, 5, 1, 8, 6,
  276. 2, 6, 4, 5, 1, 4, 9, 2, 3, 0, 9, 5, 7, 0, 3, 1, 2, 5, 9, 3, 1, 3, 2, 2, 5,
  277. 7, 4, 6, 1, 5, 4, 7, 8, 5, 1, 5, 6, 2, 5, 4, 6, 5, 6, 6, 1, 2, 8, 7, 3, 0,
  278. 7, 7, 3, 9, 2, 5, 7, 8, 1, 2, 5, 2, 3, 2, 8, 3, 0, 6, 4, 3, 6, 5, 3, 8, 6,
  279. 9, 6, 2, 8, 9, 0, 6, 2, 5, 1, 1, 6, 4, 1, 5, 3, 2, 1, 8, 2, 6, 9, 3, 4, 8,
  280. 1, 4, 4, 5, 3, 1, 2, 5, 5, 8, 2, 0, 7, 6, 6, 0, 9, 1, 3, 4, 6, 7, 4, 0, 7,
  281. 2, 2, 6, 5, 6, 2, 5, 2, 9, 1, 0, 3, 8, 3, 0, 4, 5, 6, 7, 3, 3, 7, 0, 3, 6,
  282. 1, 3, 2, 8, 1, 2, 5, 1, 4, 5, 5, 1, 9, 1, 5, 2, 2, 8, 3, 6, 6, 8, 5, 1, 8,
  283. 0, 6, 6, 4, 0, 6, 2, 5, 7, 2, 7, 5, 9, 5, 7, 6, 1, 4, 1, 8, 3, 4, 2, 5, 9,
  284. 0, 3, 3, 2, 0, 3, 1, 2, 5, 3, 6, 3, 7, 9, 7, 8, 8, 0, 7, 0, 9, 1, 7, 1, 2,
  285. 9, 5, 1, 6, 6, 0, 1, 5, 6, 2, 5, 1, 8, 1, 8, 9, 8, 9, 4, 0, 3, 5, 4, 5, 8,
  286. 5, 6, 4, 7, 5, 8, 3, 0, 0, 7, 8, 1, 2, 5, 9, 0, 9, 4, 9, 4, 7, 0, 1, 7, 7,
  287. 2, 9, 2, 8, 2, 3, 7, 9, 1, 5, 0, 3, 9, 0, 6, 2, 5, 4, 5, 4, 7, 4, 7, 3, 5,
  288. 0, 8, 8, 6, 4, 6, 4, 1, 1, 8, 9, 5, 7, 5, 1, 9, 5, 3, 1, 2, 5, 2, 2, 7, 3,
  289. 7, 3, 6, 7, 5, 4, 4, 3, 2, 3, 2, 0, 5, 9, 4, 7, 8, 7, 5, 9, 7, 6, 5, 6, 2,
  290. 5, 1, 1, 3, 6, 8, 6, 8, 3, 7, 7, 2, 1, 6, 1, 6, 0, 2, 9, 7, 3, 9, 3, 7, 9,
  291. 8, 8, 2, 8, 1, 2, 5, 5, 6, 8, 4, 3, 4, 1, 8, 8, 6, 0, 8, 0, 8, 0, 1, 4, 8,
  292. 6, 9, 6, 8, 9, 9, 4, 1, 4, 0, 6, 2, 5, 2, 8, 4, 2, 1, 7, 0, 9, 4, 3, 0, 4,
  293. 0, 4, 0, 0, 7, 4, 3, 4, 8, 4, 4, 9, 7, 0, 7, 0, 3, 1, 2, 5, 1, 4, 2, 1, 0,
  294. 8, 5, 4, 7, 1, 5, 2, 0, 2, 0, 0, 3, 7, 1, 7, 4, 2, 2, 4, 8, 5, 3, 5, 1, 5,
  295. 6, 2, 5, 7, 1, 0, 5, 4, 2, 7, 3, 5, 7, 6, 0, 1, 0, 0, 1, 8, 5, 8, 7, 1, 1,
  296. 2, 4, 2, 6, 7, 5, 7, 8, 1, 2, 5, 3, 5, 5, 2, 7, 1, 3, 6, 7, 8, 8, 0, 0, 5,
  297. 0, 0, 9, 2, 9, 3, 5, 5, 6, 2, 1, 3, 3, 7, 8, 9, 0, 6, 2, 5, 1, 7, 7, 6, 3,
  298. 5, 6, 8, 3, 9, 4, 0, 0, 2, 5, 0, 4, 6, 4, 6, 7, 7, 8, 1, 0, 6, 6, 8, 9, 4,
  299. 5, 3, 1, 2, 5, 8, 8, 8, 1, 7, 8, 4, 1, 9, 7, 0, 0, 1, 2, 5, 2, 3, 2, 3, 3,
  300. 8, 9, 0, 5, 3, 3, 4, 4, 7, 2, 6, 5, 6, 2, 5, 4, 4, 4, 0, 8, 9, 2, 0, 9, 8,
  301. 5, 0, 0, 6, 2, 6, 1, 6, 1, 6, 9, 4, 5, 2, 6, 6, 7, 2, 3, 6, 3, 2, 8, 1, 2,
  302. 5, 2, 2, 2, 0, 4, 4, 6, 0, 4, 9, 2, 5, 0, 3, 1, 3, 0, 8, 0, 8, 4, 7, 2, 6,
  303. 3, 3, 3, 6, 1, 8, 1, 6, 4, 0, 6, 2, 5, 1, 1, 1, 0, 2, 2, 3, 0, 2, 4, 6, 2,
  304. 5, 1, 5, 6, 5, 4, 0, 4, 2, 3, 6, 3, 1, 6, 6, 8, 0, 9, 0, 8, 2, 0, 3, 1, 2,
  305. 5, 5, 5, 5, 1, 1, 1, 5, 1, 2, 3, 1, 2, 5, 7, 8, 2, 7, 0, 2, 1, 1, 8, 1, 5,
  306. 8, 3, 4, 0, 4, 5, 4, 1, 0, 1, 5, 6, 2, 5, 2, 7, 7, 5, 5, 5, 7, 5, 6, 1, 5,
  307. 6, 2, 8, 9, 1, 3, 5, 1, 0, 5, 9, 0, 7, 9, 1, 7, 0, 2, 2, 7, 0, 5, 0, 7, 8,
  308. 1, 2, 5, 1, 3, 8, 7, 7, 7, 8, 7, 8, 0, 7, 8, 1, 4, 4, 5, 6, 7, 5, 5, 2, 9,
  309. 5, 3, 9, 5, 8, 5, 1, 1, 3, 5, 2, 5, 3, 9, 0, 6, 2, 5, 6, 9, 3, 8, 8, 9, 3,
  310. 9, 0, 3, 9, 0, 7, 2, 2, 8, 3, 7, 7, 6, 4, 7, 6, 9, 7, 9, 2, 5, 5, 6, 7, 6,
  311. 2, 6, 9, 5, 3, 1, 2, 5, 3, 4, 6, 9, 4, 4, 6, 9, 5, 1, 9, 5, 3, 6, 1, 4, 1,
  312. 8, 8, 8, 2, 3, 8, 4, 8, 9, 6, 2, 7, 8, 3, 8, 1, 3, 4, 7, 6, 5, 6, 2, 5, 1,
  313. 7, 3, 4, 7, 2, 3, 4, 7, 5, 9, 7, 6, 8, 0, 7, 0, 9, 4, 4, 1, 1, 9, 2, 4, 4,
  314. 8, 1, 3, 9, 1, 9, 0, 6, 7, 3, 8, 2, 8, 1, 2, 5, 8, 6, 7, 3, 6, 1, 7, 3, 7,
  315. 9, 8, 8, 4, 0, 3, 5, 4, 7, 2, 0, 5, 9, 6, 2, 2, 4, 0, 6, 9, 5, 9, 5, 3, 3,
  316. 6, 9, 1, 4, 0, 6, 2, 5,
  317. };
  318. // --------
  319. // wuffs_private_impl__powers_of_10 contains truncated approximations to the
  320. // powers of 10, ranging from 1e-307 to 1e+288 inclusive, as 596 pairs of
  321. // uint64_t values (a 128-bit mantissa).
  322. //
  323. // There's also an implicit third column (implied by a linear formula involving
  324. // the base-10 exponent) that is the base-2 exponent, biased by a magic
  325. // constant. That constant (1214 or 0x04BE) equals 1023 + 191. 1023 is the bias
  326. // for IEEE 754 double-precision floating point. 191 is ((3 * 64) - 1) and
  327. // wuffs_private_impl__parse_number_f64_eisel_lemire works with
  328. // multiples-of-64-bit mantissas.
  329. //
  330. // For example, the third row holds the approximation to 1e-305:
  331. // 0xE0B62E29_29ABA83C_331ACDAB_FE94DE87 * (2 ** (0x0049 - 0x04BE))
  332. //
  333. // Similarly, 1e+4 is approximated by:
  334. // 0x9C400000_00000000_00000000_00000000 * (2 ** (0x044C - 0x04BE))
  335. //
  336. // Similarly, 1e+68 is approximated by:
  337. // 0xED63A231_D4C4FB27_4CA7AAA8_63EE4BDD * (2 ** (0x0520 - 0x04BE))
  338. //
  339. // This table was generated by by script/print-mpb-powers-of-10.go
  340. static const uint64_t wuffs_private_impl__powers_of_10[596][2] = {
  341. {0xA5D3B6D479F8E056, 0x8FD0C16206306BAB}, // 1e-307
  342. {0x8F48A4899877186C, 0xB3C4F1BA87BC8696}, // 1e-306
  343. {0x331ACDABFE94DE87, 0xE0B62E2929ABA83C}, // 1e-305
  344. {0x9FF0C08B7F1D0B14, 0x8C71DCD9BA0B4925}, // 1e-304
  345. {0x07ECF0AE5EE44DD9, 0xAF8E5410288E1B6F}, // 1e-303
  346. {0xC9E82CD9F69D6150, 0xDB71E91432B1A24A}, // 1e-302
  347. {0xBE311C083A225CD2, 0x892731AC9FAF056E}, // 1e-301
  348. {0x6DBD630A48AAF406, 0xAB70FE17C79AC6CA}, // 1e-300
  349. {0x092CBBCCDAD5B108, 0xD64D3D9DB981787D}, // 1e-299
  350. {0x25BBF56008C58EA5, 0x85F0468293F0EB4E}, // 1e-298
  351. {0xAF2AF2B80AF6F24E, 0xA76C582338ED2621}, // 1e-297
  352. {0x1AF5AF660DB4AEE1, 0xD1476E2C07286FAA}, // 1e-296
  353. {0x50D98D9FC890ED4D, 0x82CCA4DB847945CA}, // 1e-295
  354. {0xE50FF107BAB528A0, 0xA37FCE126597973C}, // 1e-294
  355. {0x1E53ED49A96272C8, 0xCC5FC196FEFD7D0C}, // 1e-293
  356. {0x25E8E89C13BB0F7A, 0xFF77B1FCBEBCDC4F}, // 1e-292
  357. {0x77B191618C54E9AC, 0x9FAACF3DF73609B1}, // 1e-291
  358. {0xD59DF5B9EF6A2417, 0xC795830D75038C1D}, // 1e-290
  359. {0x4B0573286B44AD1D, 0xF97AE3D0D2446F25}, // 1e-289
  360. {0x4EE367F9430AEC32, 0x9BECCE62836AC577}, // 1e-288
  361. {0x229C41F793CDA73F, 0xC2E801FB244576D5}, // 1e-287
  362. {0x6B43527578C1110F, 0xF3A20279ED56D48A}, // 1e-286
  363. {0x830A13896B78AAA9, 0x9845418C345644D6}, // 1e-285
  364. {0x23CC986BC656D553, 0xBE5691EF416BD60C}, // 1e-284
  365. {0x2CBFBE86B7EC8AA8, 0xEDEC366B11C6CB8F}, // 1e-283
  366. {0x7BF7D71432F3D6A9, 0x94B3A202EB1C3F39}, // 1e-282
  367. {0xDAF5CCD93FB0CC53, 0xB9E08A83A5E34F07}, // 1e-281
  368. {0xD1B3400F8F9CFF68, 0xE858AD248F5C22C9}, // 1e-280
  369. {0x23100809B9C21FA1, 0x91376C36D99995BE}, // 1e-279
  370. {0xABD40A0C2832A78A, 0xB58547448FFFFB2D}, // 1e-278
  371. {0x16C90C8F323F516C, 0xE2E69915B3FFF9F9}, // 1e-277
  372. {0xAE3DA7D97F6792E3, 0x8DD01FAD907FFC3B}, // 1e-276
  373. {0x99CD11CFDF41779C, 0xB1442798F49FFB4A}, // 1e-275
  374. {0x40405643D711D583, 0xDD95317F31C7FA1D}, // 1e-274
  375. {0x482835EA666B2572, 0x8A7D3EEF7F1CFC52}, // 1e-273
  376. {0xDA3243650005EECF, 0xAD1C8EAB5EE43B66}, // 1e-272
  377. {0x90BED43E40076A82, 0xD863B256369D4A40}, // 1e-271
  378. {0x5A7744A6E804A291, 0x873E4F75E2224E68}, // 1e-270
  379. {0x711515D0A205CB36, 0xA90DE3535AAAE202}, // 1e-269
  380. {0x0D5A5B44CA873E03, 0xD3515C2831559A83}, // 1e-268
  381. {0xE858790AFE9486C2, 0x8412D9991ED58091}, // 1e-267
  382. {0x626E974DBE39A872, 0xA5178FFF668AE0B6}, // 1e-266
  383. {0xFB0A3D212DC8128F, 0xCE5D73FF402D98E3}, // 1e-265
  384. {0x7CE66634BC9D0B99, 0x80FA687F881C7F8E}, // 1e-264
  385. {0x1C1FFFC1EBC44E80, 0xA139029F6A239F72}, // 1e-263
  386. {0xA327FFB266B56220, 0xC987434744AC874E}, // 1e-262
  387. {0x4BF1FF9F0062BAA8, 0xFBE9141915D7A922}, // 1e-261
  388. {0x6F773FC3603DB4A9, 0x9D71AC8FADA6C9B5}, // 1e-260
  389. {0xCB550FB4384D21D3, 0xC4CE17B399107C22}, // 1e-259
  390. {0x7E2A53A146606A48, 0xF6019DA07F549B2B}, // 1e-258
  391. {0x2EDA7444CBFC426D, 0x99C102844F94E0FB}, // 1e-257
  392. {0xFA911155FEFB5308, 0xC0314325637A1939}, // 1e-256
  393. {0x793555AB7EBA27CA, 0xF03D93EEBC589F88}, // 1e-255
  394. {0x4BC1558B2F3458DE, 0x96267C7535B763B5}, // 1e-254
  395. {0x9EB1AAEDFB016F16, 0xBBB01B9283253CA2}, // 1e-253
  396. {0x465E15A979C1CADC, 0xEA9C227723EE8BCB}, // 1e-252
  397. {0x0BFACD89EC191EC9, 0x92A1958A7675175F}, // 1e-251
  398. {0xCEF980EC671F667B, 0xB749FAED14125D36}, // 1e-250
  399. {0x82B7E12780E7401A, 0xE51C79A85916F484}, // 1e-249
  400. {0xD1B2ECB8B0908810, 0x8F31CC0937AE58D2}, // 1e-248
  401. {0x861FA7E6DCB4AA15, 0xB2FE3F0B8599EF07}, // 1e-247
  402. {0x67A791E093E1D49A, 0xDFBDCECE67006AC9}, // 1e-246
  403. {0xE0C8BB2C5C6D24E0, 0x8BD6A141006042BD}, // 1e-245
  404. {0x58FAE9F773886E18, 0xAECC49914078536D}, // 1e-244
  405. {0xAF39A475506A899E, 0xDA7F5BF590966848}, // 1e-243
  406. {0x6D8406C952429603, 0x888F99797A5E012D}, // 1e-242
  407. {0xC8E5087BA6D33B83, 0xAAB37FD7D8F58178}, // 1e-241
  408. {0xFB1E4A9A90880A64, 0xD5605FCDCF32E1D6}, // 1e-240
  409. {0x5CF2EEA09A55067F, 0x855C3BE0A17FCD26}, // 1e-239
  410. {0xF42FAA48C0EA481E, 0xA6B34AD8C9DFC06F}, // 1e-238
  411. {0xF13B94DAF124DA26, 0xD0601D8EFC57B08B}, // 1e-237
  412. {0x76C53D08D6B70858, 0x823C12795DB6CE57}, // 1e-236
  413. {0x54768C4B0C64CA6E, 0xA2CB1717B52481ED}, // 1e-235
  414. {0xA9942F5DCF7DFD09, 0xCB7DDCDDA26DA268}, // 1e-234
  415. {0xD3F93B35435D7C4C, 0xFE5D54150B090B02}, // 1e-233
  416. {0xC47BC5014A1A6DAF, 0x9EFA548D26E5A6E1}, // 1e-232
  417. {0x359AB6419CA1091B, 0xC6B8E9B0709F109A}, // 1e-231
  418. {0xC30163D203C94B62, 0xF867241C8CC6D4C0}, // 1e-230
  419. {0x79E0DE63425DCF1D, 0x9B407691D7FC44F8}, // 1e-229
  420. {0x985915FC12F542E4, 0xC21094364DFB5636}, // 1e-228
  421. {0x3E6F5B7B17B2939D, 0xF294B943E17A2BC4}, // 1e-227
  422. {0xA705992CEECF9C42, 0x979CF3CA6CEC5B5A}, // 1e-226
  423. {0x50C6FF782A838353, 0xBD8430BD08277231}, // 1e-225
  424. {0xA4F8BF5635246428, 0xECE53CEC4A314EBD}, // 1e-224
  425. {0x871B7795E136BE99, 0x940F4613AE5ED136}, // 1e-223
  426. {0x28E2557B59846E3F, 0xB913179899F68584}, // 1e-222
  427. {0x331AEADA2FE589CF, 0xE757DD7EC07426E5}, // 1e-221
  428. {0x3FF0D2C85DEF7621, 0x9096EA6F3848984F}, // 1e-220
  429. {0x0FED077A756B53A9, 0xB4BCA50B065ABE63}, // 1e-219
  430. {0xD3E8495912C62894, 0xE1EBCE4DC7F16DFB}, // 1e-218
  431. {0x64712DD7ABBBD95C, 0x8D3360F09CF6E4BD}, // 1e-217
  432. {0xBD8D794D96AACFB3, 0xB080392CC4349DEC}, // 1e-216
  433. {0xECF0D7A0FC5583A0, 0xDCA04777F541C567}, // 1e-215
  434. {0xF41686C49DB57244, 0x89E42CAAF9491B60}, // 1e-214
  435. {0x311C2875C522CED5, 0xAC5D37D5B79B6239}, // 1e-213
  436. {0x7D633293366B828B, 0xD77485CB25823AC7}, // 1e-212
  437. {0xAE5DFF9C02033197, 0x86A8D39EF77164BC}, // 1e-211
  438. {0xD9F57F830283FDFC, 0xA8530886B54DBDEB}, // 1e-210
  439. {0xD072DF63C324FD7B, 0xD267CAA862A12D66}, // 1e-209
  440. {0x4247CB9E59F71E6D, 0x8380DEA93DA4BC60}, // 1e-208
  441. {0x52D9BE85F074E608, 0xA46116538D0DEB78}, // 1e-207
  442. {0x67902E276C921F8B, 0xCD795BE870516656}, // 1e-206
  443. {0x00BA1CD8A3DB53B6, 0x806BD9714632DFF6}, // 1e-205
  444. {0x80E8A40ECCD228A4, 0xA086CFCD97BF97F3}, // 1e-204
  445. {0x6122CD128006B2CD, 0xC8A883C0FDAF7DF0}, // 1e-203
  446. {0x796B805720085F81, 0xFAD2A4B13D1B5D6C}, // 1e-202
  447. {0xCBE3303674053BB0, 0x9CC3A6EEC6311A63}, // 1e-201
  448. {0xBEDBFC4411068A9C, 0xC3F490AA77BD60FC}, // 1e-200
  449. {0xEE92FB5515482D44, 0xF4F1B4D515ACB93B}, // 1e-199
  450. {0x751BDD152D4D1C4A, 0x991711052D8BF3C5}, // 1e-198
  451. {0xD262D45A78A0635D, 0xBF5CD54678EEF0B6}, // 1e-197
  452. {0x86FB897116C87C34, 0xEF340A98172AACE4}, // 1e-196
  453. {0xD45D35E6AE3D4DA0, 0x9580869F0E7AAC0E}, // 1e-195
  454. {0x8974836059CCA109, 0xBAE0A846D2195712}, // 1e-194
  455. {0x2BD1A438703FC94B, 0xE998D258869FACD7}, // 1e-193
  456. {0x7B6306A34627DDCF, 0x91FF83775423CC06}, // 1e-192
  457. {0x1A3BC84C17B1D542, 0xB67F6455292CBF08}, // 1e-191
  458. {0x20CABA5F1D9E4A93, 0xE41F3D6A7377EECA}, // 1e-190
  459. {0x547EB47B7282EE9C, 0x8E938662882AF53E}, // 1e-189
  460. {0xE99E619A4F23AA43, 0xB23867FB2A35B28D}, // 1e-188
  461. {0x6405FA00E2EC94D4, 0xDEC681F9F4C31F31}, // 1e-187
  462. {0xDE83BC408DD3DD04, 0x8B3C113C38F9F37E}, // 1e-186
  463. {0x9624AB50B148D445, 0xAE0B158B4738705E}, // 1e-185
  464. {0x3BADD624DD9B0957, 0xD98DDAEE19068C76}, // 1e-184
  465. {0xE54CA5D70A80E5D6, 0x87F8A8D4CFA417C9}, // 1e-183
  466. {0x5E9FCF4CCD211F4C, 0xA9F6D30A038D1DBC}, // 1e-182
  467. {0x7647C3200069671F, 0xD47487CC8470652B}, // 1e-181
  468. {0x29ECD9F40041E073, 0x84C8D4DFD2C63F3B}, // 1e-180
  469. {0xF468107100525890, 0xA5FB0A17C777CF09}, // 1e-179
  470. {0x7182148D4066EEB4, 0xCF79CC9DB955C2CC}, // 1e-178
  471. {0xC6F14CD848405530, 0x81AC1FE293D599BF}, // 1e-177
  472. {0xB8ADA00E5A506A7C, 0xA21727DB38CB002F}, // 1e-176
  473. {0xA6D90811F0E4851C, 0xCA9CF1D206FDC03B}, // 1e-175
  474. {0x908F4A166D1DA663, 0xFD442E4688BD304A}, // 1e-174
  475. {0x9A598E4E043287FE, 0x9E4A9CEC15763E2E}, // 1e-173
  476. {0x40EFF1E1853F29FD, 0xC5DD44271AD3CDBA}, // 1e-172
  477. {0xD12BEE59E68EF47C, 0xF7549530E188C128}, // 1e-171
  478. {0x82BB74F8301958CE, 0x9A94DD3E8CF578B9}, // 1e-170
  479. {0xE36A52363C1FAF01, 0xC13A148E3032D6E7}, // 1e-169
  480. {0xDC44E6C3CB279AC1, 0xF18899B1BC3F8CA1}, // 1e-168
  481. {0x29AB103A5EF8C0B9, 0x96F5600F15A7B7E5}, // 1e-167
  482. {0x7415D448F6B6F0E7, 0xBCB2B812DB11A5DE}, // 1e-166
  483. {0x111B495B3464AD21, 0xEBDF661791D60F56}, // 1e-165
  484. {0xCAB10DD900BEEC34, 0x936B9FCEBB25C995}, // 1e-164
  485. {0x3D5D514F40EEA742, 0xB84687C269EF3BFB}, // 1e-163
  486. {0x0CB4A5A3112A5112, 0xE65829B3046B0AFA}, // 1e-162
  487. {0x47F0E785EABA72AB, 0x8FF71A0FE2C2E6DC}, // 1e-161
  488. {0x59ED216765690F56, 0xB3F4E093DB73A093}, // 1e-160
  489. {0x306869C13EC3532C, 0xE0F218B8D25088B8}, // 1e-159
  490. {0x1E414218C73A13FB, 0x8C974F7383725573}, // 1e-158
  491. {0xE5D1929EF90898FA, 0xAFBD2350644EEACF}, // 1e-157
  492. {0xDF45F746B74ABF39, 0xDBAC6C247D62A583}, // 1e-156
  493. {0x6B8BBA8C328EB783, 0x894BC396CE5DA772}, // 1e-155
  494. {0x066EA92F3F326564, 0xAB9EB47C81F5114F}, // 1e-154
  495. {0xC80A537B0EFEFEBD, 0xD686619BA27255A2}, // 1e-153
  496. {0xBD06742CE95F5F36, 0x8613FD0145877585}, // 1e-152
  497. {0x2C48113823B73704, 0xA798FC4196E952E7}, // 1e-151
  498. {0xF75A15862CA504C5, 0xD17F3B51FCA3A7A0}, // 1e-150
  499. {0x9A984D73DBE722FB, 0x82EF85133DE648C4}, // 1e-149
  500. {0xC13E60D0D2E0EBBA, 0xA3AB66580D5FDAF5}, // 1e-148
  501. {0x318DF905079926A8, 0xCC963FEE10B7D1B3}, // 1e-147
  502. {0xFDF17746497F7052, 0xFFBBCFE994E5C61F}, // 1e-146
  503. {0xFEB6EA8BEDEFA633, 0x9FD561F1FD0F9BD3}, // 1e-145
  504. {0xFE64A52EE96B8FC0, 0xC7CABA6E7C5382C8}, // 1e-144
  505. {0x3DFDCE7AA3C673B0, 0xF9BD690A1B68637B}, // 1e-143
  506. {0x06BEA10CA65C084E, 0x9C1661A651213E2D}, // 1e-142
  507. {0x486E494FCFF30A62, 0xC31BFA0FE5698DB8}, // 1e-141
  508. {0x5A89DBA3C3EFCCFA, 0xF3E2F893DEC3F126}, // 1e-140
  509. {0xF89629465A75E01C, 0x986DDB5C6B3A76B7}, // 1e-139
  510. {0xF6BBB397F1135823, 0xBE89523386091465}, // 1e-138
  511. {0x746AA07DED582E2C, 0xEE2BA6C0678B597F}, // 1e-137
  512. {0xA8C2A44EB4571CDC, 0x94DB483840B717EF}, // 1e-136
  513. {0x92F34D62616CE413, 0xBA121A4650E4DDEB}, // 1e-135
  514. {0x77B020BAF9C81D17, 0xE896A0D7E51E1566}, // 1e-134
  515. {0x0ACE1474DC1D122E, 0x915E2486EF32CD60}, // 1e-133
  516. {0x0D819992132456BA, 0xB5B5ADA8AAFF80B8}, // 1e-132
  517. {0x10E1FFF697ED6C69, 0xE3231912D5BF60E6}, // 1e-131
  518. {0xCA8D3FFA1EF463C1, 0x8DF5EFABC5979C8F}, // 1e-130
  519. {0xBD308FF8A6B17CB2, 0xB1736B96B6FD83B3}, // 1e-129
  520. {0xAC7CB3F6D05DDBDE, 0xDDD0467C64BCE4A0}, // 1e-128
  521. {0x6BCDF07A423AA96B, 0x8AA22C0DBEF60EE4}, // 1e-127
  522. {0x86C16C98D2C953C6, 0xAD4AB7112EB3929D}, // 1e-126
  523. {0xE871C7BF077BA8B7, 0xD89D64D57A607744}, // 1e-125
  524. {0x11471CD764AD4972, 0x87625F056C7C4A8B}, // 1e-124
  525. {0xD598E40D3DD89BCF, 0xA93AF6C6C79B5D2D}, // 1e-123
  526. {0x4AFF1D108D4EC2C3, 0xD389B47879823479}, // 1e-122
  527. {0xCEDF722A585139BA, 0x843610CB4BF160CB}, // 1e-121
  528. {0xC2974EB4EE658828, 0xA54394FE1EEDB8FE}, // 1e-120
  529. {0x733D226229FEEA32, 0xCE947A3DA6A9273E}, // 1e-119
  530. {0x0806357D5A3F525F, 0x811CCC668829B887}, // 1e-118
  531. {0xCA07C2DCB0CF26F7, 0xA163FF802A3426A8}, // 1e-117
  532. {0xFC89B393DD02F0B5, 0xC9BCFF6034C13052}, // 1e-116
  533. {0xBBAC2078D443ACE2, 0xFC2C3F3841F17C67}, // 1e-115
  534. {0xD54B944B84AA4C0D, 0x9D9BA7832936EDC0}, // 1e-114
  535. {0x0A9E795E65D4DF11, 0xC5029163F384A931}, // 1e-113
  536. {0x4D4617B5FF4A16D5, 0xF64335BCF065D37D}, // 1e-112
  537. {0x504BCED1BF8E4E45, 0x99EA0196163FA42E}, // 1e-111
  538. {0xE45EC2862F71E1D6, 0xC06481FB9BCF8D39}, // 1e-110
  539. {0x5D767327BB4E5A4C, 0xF07DA27A82C37088}, // 1e-109
  540. {0x3A6A07F8D510F86F, 0x964E858C91BA2655}, // 1e-108
  541. {0x890489F70A55368B, 0xBBE226EFB628AFEA}, // 1e-107
  542. {0x2B45AC74CCEA842E, 0xEADAB0ABA3B2DBE5}, // 1e-106
  543. {0x3B0B8BC90012929D, 0x92C8AE6B464FC96F}, // 1e-105
  544. {0x09CE6EBB40173744, 0xB77ADA0617E3BBCB}, // 1e-104
  545. {0xCC420A6A101D0515, 0xE55990879DDCAABD}, // 1e-103
  546. {0x9FA946824A12232D, 0x8F57FA54C2A9EAB6}, // 1e-102
  547. {0x47939822DC96ABF9, 0xB32DF8E9F3546564}, // 1e-101
  548. {0x59787E2B93BC56F7, 0xDFF9772470297EBD}, // 1e-100
  549. {0x57EB4EDB3C55B65A, 0x8BFBEA76C619EF36}, // 1e-99
  550. {0xEDE622920B6B23F1, 0xAEFAE51477A06B03}, // 1e-98
  551. {0xE95FAB368E45ECED, 0xDAB99E59958885C4}, // 1e-97
  552. {0x11DBCB0218EBB414, 0x88B402F7FD75539B}, // 1e-96
  553. {0xD652BDC29F26A119, 0xAAE103B5FCD2A881}, // 1e-95
  554. {0x4BE76D3346F0495F, 0xD59944A37C0752A2}, // 1e-94
  555. {0x6F70A4400C562DDB, 0x857FCAE62D8493A5}, // 1e-93
  556. {0xCB4CCD500F6BB952, 0xA6DFBD9FB8E5B88E}, // 1e-92
  557. {0x7E2000A41346A7A7, 0xD097AD07A71F26B2}, // 1e-91
  558. {0x8ED400668C0C28C8, 0x825ECC24C873782F}, // 1e-90
  559. {0x728900802F0F32FA, 0xA2F67F2DFA90563B}, // 1e-89
  560. {0x4F2B40A03AD2FFB9, 0xCBB41EF979346BCA}, // 1e-88
  561. {0xE2F610C84987BFA8, 0xFEA126B7D78186BC}, // 1e-87
  562. {0x0DD9CA7D2DF4D7C9, 0x9F24B832E6B0F436}, // 1e-86
  563. {0x91503D1C79720DBB, 0xC6EDE63FA05D3143}, // 1e-85
  564. {0x75A44C6397CE912A, 0xF8A95FCF88747D94}, // 1e-84
  565. {0xC986AFBE3EE11ABA, 0x9B69DBE1B548CE7C}, // 1e-83
  566. {0xFBE85BADCE996168, 0xC24452DA229B021B}, // 1e-82
  567. {0xFAE27299423FB9C3, 0xF2D56790AB41C2A2}, // 1e-81
  568. {0xDCCD879FC967D41A, 0x97C560BA6B0919A5}, // 1e-80
  569. {0x5400E987BBC1C920, 0xBDB6B8E905CB600F}, // 1e-79
  570. {0x290123E9AAB23B68, 0xED246723473E3813}, // 1e-78
  571. {0xF9A0B6720AAF6521, 0x9436C0760C86E30B}, // 1e-77
  572. {0xF808E40E8D5B3E69, 0xB94470938FA89BCE}, // 1e-76
  573. {0xB60B1D1230B20E04, 0xE7958CB87392C2C2}, // 1e-75
  574. {0xB1C6F22B5E6F48C2, 0x90BD77F3483BB9B9}, // 1e-74
  575. {0x1E38AEB6360B1AF3, 0xB4ECD5F01A4AA828}, // 1e-73
  576. {0x25C6DA63C38DE1B0, 0xE2280B6C20DD5232}, // 1e-72
  577. {0x579C487E5A38AD0E, 0x8D590723948A535F}, // 1e-71
  578. {0x2D835A9DF0C6D851, 0xB0AF48EC79ACE837}, // 1e-70
  579. {0xF8E431456CF88E65, 0xDCDB1B2798182244}, // 1e-69
  580. {0x1B8E9ECB641B58FF, 0x8A08F0F8BF0F156B}, // 1e-68
  581. {0xE272467E3D222F3F, 0xAC8B2D36EED2DAC5}, // 1e-67
  582. {0x5B0ED81DCC6ABB0F, 0xD7ADF884AA879177}, // 1e-66
  583. {0x98E947129FC2B4E9, 0x86CCBB52EA94BAEA}, // 1e-65
  584. {0x3F2398D747B36224, 0xA87FEA27A539E9A5}, // 1e-64
  585. {0x8EEC7F0D19A03AAD, 0xD29FE4B18E88640E}, // 1e-63
  586. {0x1953CF68300424AC, 0x83A3EEEEF9153E89}, // 1e-62
  587. {0x5FA8C3423C052DD7, 0xA48CEAAAB75A8E2B}, // 1e-61
  588. {0x3792F412CB06794D, 0xCDB02555653131B6}, // 1e-60
  589. {0xE2BBD88BBEE40BD0, 0x808E17555F3EBF11}, // 1e-59
  590. {0x5B6ACEAEAE9D0EC4, 0xA0B19D2AB70E6ED6}, // 1e-58
  591. {0xF245825A5A445275, 0xC8DE047564D20A8B}, // 1e-57
  592. {0xEED6E2F0F0D56712, 0xFB158592BE068D2E}, // 1e-56
  593. {0x55464DD69685606B, 0x9CED737BB6C4183D}, // 1e-55
  594. {0xAA97E14C3C26B886, 0xC428D05AA4751E4C}, // 1e-54
  595. {0xD53DD99F4B3066A8, 0xF53304714D9265DF}, // 1e-53
  596. {0xE546A8038EFE4029, 0x993FE2C6D07B7FAB}, // 1e-52
  597. {0xDE98520472BDD033, 0xBF8FDB78849A5F96}, // 1e-51
  598. {0x963E66858F6D4440, 0xEF73D256A5C0F77C}, // 1e-50
  599. {0xDDE7001379A44AA8, 0x95A8637627989AAD}, // 1e-49
  600. {0x5560C018580D5D52, 0xBB127C53B17EC159}, // 1e-48
  601. {0xAAB8F01E6E10B4A6, 0xE9D71B689DDE71AF}, // 1e-47
  602. {0xCAB3961304CA70E8, 0x9226712162AB070D}, // 1e-46
  603. {0x3D607B97C5FD0D22, 0xB6B00D69BB55C8D1}, // 1e-45
  604. {0x8CB89A7DB77C506A, 0xE45C10C42A2B3B05}, // 1e-44
  605. {0x77F3608E92ADB242, 0x8EB98A7A9A5B04E3}, // 1e-43
  606. {0x55F038B237591ED3, 0xB267ED1940F1C61C}, // 1e-42
  607. {0x6B6C46DEC52F6688, 0xDF01E85F912E37A3}, // 1e-41
  608. {0x2323AC4B3B3DA015, 0x8B61313BBABCE2C6}, // 1e-40
  609. {0xABEC975E0A0D081A, 0xAE397D8AA96C1B77}, // 1e-39
  610. {0x96E7BD358C904A21, 0xD9C7DCED53C72255}, // 1e-38
  611. {0x7E50D64177DA2E54, 0x881CEA14545C7575}, // 1e-37
  612. {0xDDE50BD1D5D0B9E9, 0xAA242499697392D2}, // 1e-36
  613. {0x955E4EC64B44E864, 0xD4AD2DBFC3D07787}, // 1e-35
  614. {0xBD5AF13BEF0B113E, 0x84EC3C97DA624AB4}, // 1e-34
  615. {0xECB1AD8AEACDD58E, 0xA6274BBDD0FADD61}, // 1e-33
  616. {0x67DE18EDA5814AF2, 0xCFB11EAD453994BA}, // 1e-32
  617. {0x80EACF948770CED7, 0x81CEB32C4B43FCF4}, // 1e-31
  618. {0xA1258379A94D028D, 0xA2425FF75E14FC31}, // 1e-30
  619. {0x096EE45813A04330, 0xCAD2F7F5359A3B3E}, // 1e-29
  620. {0x8BCA9D6E188853FC, 0xFD87B5F28300CA0D}, // 1e-28
  621. {0x775EA264CF55347D, 0x9E74D1B791E07E48}, // 1e-27
  622. {0x95364AFE032A819D, 0xC612062576589DDA}, // 1e-26
  623. {0x3A83DDBD83F52204, 0xF79687AED3EEC551}, // 1e-25
  624. {0xC4926A9672793542, 0x9ABE14CD44753B52}, // 1e-24
  625. {0x75B7053C0F178293, 0xC16D9A0095928A27}, // 1e-23
  626. {0x5324C68B12DD6338, 0xF1C90080BAF72CB1}, // 1e-22
  627. {0xD3F6FC16EBCA5E03, 0x971DA05074DA7BEE}, // 1e-21
  628. {0x88F4BB1CA6BCF584, 0xBCE5086492111AEA}, // 1e-20
  629. {0x2B31E9E3D06C32E5, 0xEC1E4A7DB69561A5}, // 1e-19
  630. {0x3AFF322E62439FCF, 0x9392EE8E921D5D07}, // 1e-18
  631. {0x09BEFEB9FAD487C2, 0xB877AA3236A4B449}, // 1e-17
  632. {0x4C2EBE687989A9B3, 0xE69594BEC44DE15B}, // 1e-16
  633. {0x0F9D37014BF60A10, 0x901D7CF73AB0ACD9}, // 1e-15
  634. {0x538484C19EF38C94, 0xB424DC35095CD80F}, // 1e-14
  635. {0x2865A5F206B06FB9, 0xE12E13424BB40E13}, // 1e-13
  636. {0xF93F87B7442E45D3, 0x8CBCCC096F5088CB}, // 1e-12
  637. {0xF78F69A51539D748, 0xAFEBFF0BCB24AAFE}, // 1e-11
  638. {0xB573440E5A884D1B, 0xDBE6FECEBDEDD5BE}, // 1e-10
  639. {0x31680A88F8953030, 0x89705F4136B4A597}, // 1e-9
  640. {0xFDC20D2B36BA7C3D, 0xABCC77118461CEFC}, // 1e-8
  641. {0x3D32907604691B4C, 0xD6BF94D5E57A42BC}, // 1e-7
  642. {0xA63F9A49C2C1B10F, 0x8637BD05AF6C69B5}, // 1e-6
  643. {0x0FCF80DC33721D53, 0xA7C5AC471B478423}, // 1e-5
  644. {0xD3C36113404EA4A8, 0xD1B71758E219652B}, // 1e-4
  645. {0x645A1CAC083126E9, 0x83126E978D4FDF3B}, // 1e-3
  646. {0x3D70A3D70A3D70A3, 0xA3D70A3D70A3D70A}, // 1e-2
  647. {0xCCCCCCCCCCCCCCCC, 0xCCCCCCCCCCCCCCCC}, // 1e-1
  648. {0x0000000000000000, 0x8000000000000000}, // 1e0
  649. {0x0000000000000000, 0xA000000000000000}, // 1e1
  650. {0x0000000000000000, 0xC800000000000000}, // 1e2
  651. {0x0000000000000000, 0xFA00000000000000}, // 1e3
  652. {0x0000000000000000, 0x9C40000000000000}, // 1e4
  653. {0x0000000000000000, 0xC350000000000000}, // 1e5
  654. {0x0000000000000000, 0xF424000000000000}, // 1e6
  655. {0x0000000000000000, 0x9896800000000000}, // 1e7
  656. {0x0000000000000000, 0xBEBC200000000000}, // 1e8
  657. {0x0000000000000000, 0xEE6B280000000000}, // 1e9
  658. {0x0000000000000000, 0x9502F90000000000}, // 1e10
  659. {0x0000000000000000, 0xBA43B74000000000}, // 1e11
  660. {0x0000000000000000, 0xE8D4A51000000000}, // 1e12
  661. {0x0000000000000000, 0x9184E72A00000000}, // 1e13
  662. {0x0000000000000000, 0xB5E620F480000000}, // 1e14
  663. {0x0000000000000000, 0xE35FA931A0000000}, // 1e15
  664. {0x0000000000000000, 0x8E1BC9BF04000000}, // 1e16
  665. {0x0000000000000000, 0xB1A2BC2EC5000000}, // 1e17
  666. {0x0000000000000000, 0xDE0B6B3A76400000}, // 1e18
  667. {0x0000000000000000, 0x8AC7230489E80000}, // 1e19
  668. {0x0000000000000000, 0xAD78EBC5AC620000}, // 1e20
  669. {0x0000000000000000, 0xD8D726B7177A8000}, // 1e21
  670. {0x0000000000000000, 0x878678326EAC9000}, // 1e22
  671. {0x0000000000000000, 0xA968163F0A57B400}, // 1e23
  672. {0x0000000000000000, 0xD3C21BCECCEDA100}, // 1e24
  673. {0x0000000000000000, 0x84595161401484A0}, // 1e25
  674. {0x0000000000000000, 0xA56FA5B99019A5C8}, // 1e26
  675. {0x0000000000000000, 0xCECB8F27F4200F3A}, // 1e27
  676. {0x4000000000000000, 0x813F3978F8940984}, // 1e28
  677. {0x5000000000000000, 0xA18F07D736B90BE5}, // 1e29
  678. {0xA400000000000000, 0xC9F2C9CD04674EDE}, // 1e30
  679. {0x4D00000000000000, 0xFC6F7C4045812296}, // 1e31
  680. {0xF020000000000000, 0x9DC5ADA82B70B59D}, // 1e32
  681. {0x6C28000000000000, 0xC5371912364CE305}, // 1e33
  682. {0xC732000000000000, 0xF684DF56C3E01BC6}, // 1e34
  683. {0x3C7F400000000000, 0x9A130B963A6C115C}, // 1e35
  684. {0x4B9F100000000000, 0xC097CE7BC90715B3}, // 1e36
  685. {0x1E86D40000000000, 0xF0BDC21ABB48DB20}, // 1e37
  686. {0x1314448000000000, 0x96769950B50D88F4}, // 1e38
  687. {0x17D955A000000000, 0xBC143FA4E250EB31}, // 1e39
  688. {0x5DCFAB0800000000, 0xEB194F8E1AE525FD}, // 1e40
  689. {0x5AA1CAE500000000, 0x92EFD1B8D0CF37BE}, // 1e41
  690. {0xF14A3D9E40000000, 0xB7ABC627050305AD}, // 1e42
  691. {0x6D9CCD05D0000000, 0xE596B7B0C643C719}, // 1e43
  692. {0xE4820023A2000000, 0x8F7E32CE7BEA5C6F}, // 1e44
  693. {0xDDA2802C8A800000, 0xB35DBF821AE4F38B}, // 1e45
  694. {0xD50B2037AD200000, 0xE0352F62A19E306E}, // 1e46
  695. {0x4526F422CC340000, 0x8C213D9DA502DE45}, // 1e47
  696. {0x9670B12B7F410000, 0xAF298D050E4395D6}, // 1e48
  697. {0x3C0CDD765F114000, 0xDAF3F04651D47B4C}, // 1e49
  698. {0xA5880A69FB6AC800, 0x88D8762BF324CD0F}, // 1e50
  699. {0x8EEA0D047A457A00, 0xAB0E93B6EFEE0053}, // 1e51
  700. {0x72A4904598D6D880, 0xD5D238A4ABE98068}, // 1e52
  701. {0x47A6DA2B7F864750, 0x85A36366EB71F041}, // 1e53
  702. {0x999090B65F67D924, 0xA70C3C40A64E6C51}, // 1e54
  703. {0xFFF4B4E3F741CF6D, 0xD0CF4B50CFE20765}, // 1e55
  704. {0xBFF8F10E7A8921A4, 0x82818F1281ED449F}, // 1e56
  705. {0xAFF72D52192B6A0D, 0xA321F2D7226895C7}, // 1e57
  706. {0x9BF4F8A69F764490, 0xCBEA6F8CEB02BB39}, // 1e58
  707. {0x02F236D04753D5B4, 0xFEE50B7025C36A08}, // 1e59
  708. {0x01D762422C946590, 0x9F4F2726179A2245}, // 1e60
  709. {0x424D3AD2B7B97EF5, 0xC722F0EF9D80AAD6}, // 1e61
  710. {0xD2E0898765A7DEB2, 0xF8EBAD2B84E0D58B}, // 1e62
  711. {0x63CC55F49F88EB2F, 0x9B934C3B330C8577}, // 1e63
  712. {0x3CBF6B71C76B25FB, 0xC2781F49FFCFA6D5}, // 1e64
  713. {0x8BEF464E3945EF7A, 0xF316271C7FC3908A}, // 1e65
  714. {0x97758BF0E3CBB5AC, 0x97EDD871CFDA3A56}, // 1e66
  715. {0x3D52EEED1CBEA317, 0xBDE94E8E43D0C8EC}, // 1e67
  716. {0x4CA7AAA863EE4BDD, 0xED63A231D4C4FB27}, // 1e68
  717. {0x8FE8CAA93E74EF6A, 0x945E455F24FB1CF8}, // 1e69
  718. {0xB3E2FD538E122B44, 0xB975D6B6EE39E436}, // 1e70
  719. {0x60DBBCA87196B616, 0xE7D34C64A9C85D44}, // 1e71
  720. {0xBC8955E946FE31CD, 0x90E40FBEEA1D3A4A}, // 1e72
  721. {0x6BABAB6398BDBE41, 0xB51D13AEA4A488DD}, // 1e73
  722. {0xC696963C7EED2DD1, 0xE264589A4DCDAB14}, // 1e74
  723. {0xFC1E1DE5CF543CA2, 0x8D7EB76070A08AEC}, // 1e75
  724. {0x3B25A55F43294BCB, 0xB0DE65388CC8ADA8}, // 1e76
  725. {0x49EF0EB713F39EBE, 0xDD15FE86AFFAD912}, // 1e77
  726. {0x6E3569326C784337, 0x8A2DBF142DFCC7AB}, // 1e78
  727. {0x49C2C37F07965404, 0xACB92ED9397BF996}, // 1e79
  728. {0xDC33745EC97BE906, 0xD7E77A8F87DAF7FB}, // 1e80
  729. {0x69A028BB3DED71A3, 0x86F0AC99B4E8DAFD}, // 1e81
  730. {0xC40832EA0D68CE0C, 0xA8ACD7C0222311BC}, // 1e82
  731. {0xF50A3FA490C30190, 0xD2D80DB02AABD62B}, // 1e83
  732. {0x792667C6DA79E0FA, 0x83C7088E1AAB65DB}, // 1e84
  733. {0x577001B891185938, 0xA4B8CAB1A1563F52}, // 1e85
  734. {0xED4C0226B55E6F86, 0xCDE6FD5E09ABCF26}, // 1e86
  735. {0x544F8158315B05B4, 0x80B05E5AC60B6178}, // 1e87
  736. {0x696361AE3DB1C721, 0xA0DC75F1778E39D6}, // 1e88
  737. {0x03BC3A19CD1E38E9, 0xC913936DD571C84C}, // 1e89
  738. {0x04AB48A04065C723, 0xFB5878494ACE3A5F}, // 1e90
  739. {0x62EB0D64283F9C76, 0x9D174B2DCEC0E47B}, // 1e91
  740. {0x3BA5D0BD324F8394, 0xC45D1DF942711D9A}, // 1e92
  741. {0xCA8F44EC7EE36479, 0xF5746577930D6500}, // 1e93
  742. {0x7E998B13CF4E1ECB, 0x9968BF6ABBE85F20}, // 1e94
  743. {0x9E3FEDD8C321A67E, 0xBFC2EF456AE276E8}, // 1e95
  744. {0xC5CFE94EF3EA101E, 0xEFB3AB16C59B14A2}, // 1e96
  745. {0xBBA1F1D158724A12, 0x95D04AEE3B80ECE5}, // 1e97
  746. {0x2A8A6E45AE8EDC97, 0xBB445DA9CA61281F}, // 1e98
  747. {0xF52D09D71A3293BD, 0xEA1575143CF97226}, // 1e99
  748. {0x593C2626705F9C56, 0x924D692CA61BE758}, // 1e100
  749. {0x6F8B2FB00C77836C, 0xB6E0C377CFA2E12E}, // 1e101
  750. {0x0B6DFB9C0F956447, 0xE498F455C38B997A}, // 1e102
  751. {0x4724BD4189BD5EAC, 0x8EDF98B59A373FEC}, // 1e103
  752. {0x58EDEC91EC2CB657, 0xB2977EE300C50FE7}, // 1e104
  753. {0x2F2967B66737E3ED, 0xDF3D5E9BC0F653E1}, // 1e105
  754. {0xBD79E0D20082EE74, 0x8B865B215899F46C}, // 1e106
  755. {0xECD8590680A3AA11, 0xAE67F1E9AEC07187}, // 1e107
  756. {0xE80E6F4820CC9495, 0xDA01EE641A708DE9}, // 1e108
  757. {0x3109058D147FDCDD, 0x884134FE908658B2}, // 1e109
  758. {0xBD4B46F0599FD415, 0xAA51823E34A7EEDE}, // 1e110
  759. {0x6C9E18AC7007C91A, 0xD4E5E2CDC1D1EA96}, // 1e111
  760. {0x03E2CF6BC604DDB0, 0x850FADC09923329E}, // 1e112
  761. {0x84DB8346B786151C, 0xA6539930BF6BFF45}, // 1e113
  762. {0xE612641865679A63, 0xCFE87F7CEF46FF16}, // 1e114
  763. {0x4FCB7E8F3F60C07E, 0x81F14FAE158C5F6E}, // 1e115
  764. {0xE3BE5E330F38F09D, 0xA26DA3999AEF7749}, // 1e116
  765. {0x5CADF5BFD3072CC5, 0xCB090C8001AB551C}, // 1e117
  766. {0x73D9732FC7C8F7F6, 0xFDCB4FA002162A63}, // 1e118
  767. {0x2867E7FDDCDD9AFA, 0x9E9F11C4014DDA7E}, // 1e119
  768. {0xB281E1FD541501B8, 0xC646D63501A1511D}, // 1e120
  769. {0x1F225A7CA91A4226, 0xF7D88BC24209A565}, // 1e121
  770. {0x3375788DE9B06958, 0x9AE757596946075F}, // 1e122
  771. {0x0052D6B1641C83AE, 0xC1A12D2FC3978937}, // 1e123
  772. {0xC0678C5DBD23A49A, 0xF209787BB47D6B84}, // 1e124
  773. {0xF840B7BA963646E0, 0x9745EB4D50CE6332}, // 1e125
  774. {0xB650E5A93BC3D898, 0xBD176620A501FBFF}, // 1e126
  775. {0xA3E51F138AB4CEBE, 0xEC5D3FA8CE427AFF}, // 1e127
  776. {0xC66F336C36B10137, 0x93BA47C980E98CDF}, // 1e128
  777. {0xB80B0047445D4184, 0xB8A8D9BBE123F017}, // 1e129
  778. {0xA60DC059157491E5, 0xE6D3102AD96CEC1D}, // 1e130
  779. {0x87C89837AD68DB2F, 0x9043EA1AC7E41392}, // 1e131
  780. {0x29BABE4598C311FB, 0xB454E4A179DD1877}, // 1e132
  781. {0xF4296DD6FEF3D67A, 0xE16A1DC9D8545E94}, // 1e133
  782. {0x1899E4A65F58660C, 0x8CE2529E2734BB1D}, // 1e134
  783. {0x5EC05DCFF72E7F8F, 0xB01AE745B101E9E4}, // 1e135
  784. {0x76707543F4FA1F73, 0xDC21A1171D42645D}, // 1e136
  785. {0x6A06494A791C53A8, 0x899504AE72497EBA}, // 1e137
  786. {0x0487DB9D17636892, 0xABFA45DA0EDBDE69}, // 1e138
  787. {0x45A9D2845D3C42B6, 0xD6F8D7509292D603}, // 1e139
  788. {0x0B8A2392BA45A9B2, 0x865B86925B9BC5C2}, // 1e140
  789. {0x8E6CAC7768D7141E, 0xA7F26836F282B732}, // 1e141
  790. {0x3207D795430CD926, 0xD1EF0244AF2364FF}, // 1e142
  791. {0x7F44E6BD49E807B8, 0x8335616AED761F1F}, // 1e143
  792. {0x5F16206C9C6209A6, 0xA402B9C5A8D3A6E7}, // 1e144
  793. {0x36DBA887C37A8C0F, 0xCD036837130890A1}, // 1e145
  794. {0xC2494954DA2C9789, 0x802221226BE55A64}, // 1e146
  795. {0xF2DB9BAA10B7BD6C, 0xA02AA96B06DEB0FD}, // 1e147
  796. {0x6F92829494E5ACC7, 0xC83553C5C8965D3D}, // 1e148
  797. {0xCB772339BA1F17F9, 0xFA42A8B73ABBF48C}, // 1e149
  798. {0xFF2A760414536EFB, 0x9C69A97284B578D7}, // 1e150
  799. {0xFEF5138519684ABA, 0xC38413CF25E2D70D}, // 1e151
  800. {0x7EB258665FC25D69, 0xF46518C2EF5B8CD1}, // 1e152
  801. {0xEF2F773FFBD97A61, 0x98BF2F79D5993802}, // 1e153
  802. {0xAAFB550FFACFD8FA, 0xBEEEFB584AFF8603}, // 1e154
  803. {0x95BA2A53F983CF38, 0xEEAABA2E5DBF6784}, // 1e155
  804. {0xDD945A747BF26183, 0x952AB45CFA97A0B2}, // 1e156
  805. {0x94F971119AEEF9E4, 0xBA756174393D88DF}, // 1e157
  806. {0x7A37CD5601AAB85D, 0xE912B9D1478CEB17}, // 1e158
  807. {0xAC62E055C10AB33A, 0x91ABB422CCB812EE}, // 1e159
  808. {0x577B986B314D6009, 0xB616A12B7FE617AA}, // 1e160
  809. {0xED5A7E85FDA0B80B, 0xE39C49765FDF9D94}, // 1e161
  810. {0x14588F13BE847307, 0x8E41ADE9FBEBC27D}, // 1e162
  811. {0x596EB2D8AE258FC8, 0xB1D219647AE6B31C}, // 1e163
  812. {0x6FCA5F8ED9AEF3BB, 0xDE469FBD99A05FE3}, // 1e164
  813. {0x25DE7BB9480D5854, 0x8AEC23D680043BEE}, // 1e165
  814. {0xAF561AA79A10AE6A, 0xADA72CCC20054AE9}, // 1e166
  815. {0x1B2BA1518094DA04, 0xD910F7FF28069DA4}, // 1e167
  816. {0x90FB44D2F05D0842, 0x87AA9AFF79042286}, // 1e168
  817. {0x353A1607AC744A53, 0xA99541BF57452B28}, // 1e169
  818. {0x42889B8997915CE8, 0xD3FA922F2D1675F2}, // 1e170
  819. {0x69956135FEBADA11, 0x847C9B5D7C2E09B7}, // 1e171
  820. {0x43FAB9837E699095, 0xA59BC234DB398C25}, // 1e172
  821. {0x94F967E45E03F4BB, 0xCF02B2C21207EF2E}, // 1e173
  822. {0x1D1BE0EEBAC278F5, 0x8161AFB94B44F57D}, // 1e174
  823. {0x6462D92A69731732, 0xA1BA1BA79E1632DC}, // 1e175
  824. {0x7D7B8F7503CFDCFE, 0xCA28A291859BBF93}, // 1e176
  825. {0x5CDA735244C3D43E, 0xFCB2CB35E702AF78}, // 1e177
  826. {0x3A0888136AFA64A7, 0x9DEFBF01B061ADAB}, // 1e178
  827. {0x088AAA1845B8FDD0, 0xC56BAEC21C7A1916}, // 1e179
  828. {0x8AAD549E57273D45, 0xF6C69A72A3989F5B}, // 1e180
  829. {0x36AC54E2F678864B, 0x9A3C2087A63F6399}, // 1e181
  830. {0x84576A1BB416A7DD, 0xC0CB28A98FCF3C7F}, // 1e182
  831. {0x656D44A2A11C51D5, 0xF0FDF2D3F3C30B9F}, // 1e183
  832. {0x9F644AE5A4B1B325, 0x969EB7C47859E743}, // 1e184
  833. {0x873D5D9F0DDE1FEE, 0xBC4665B596706114}, // 1e185
  834. {0xA90CB506D155A7EA, 0xEB57FF22FC0C7959}, // 1e186
  835. {0x09A7F12442D588F2, 0x9316FF75DD87CBD8}, // 1e187
  836. {0x0C11ED6D538AEB2F, 0xB7DCBF5354E9BECE}, // 1e188
  837. {0x8F1668C8A86DA5FA, 0xE5D3EF282A242E81}, // 1e189
  838. {0xF96E017D694487BC, 0x8FA475791A569D10}, // 1e190
  839. {0x37C981DCC395A9AC, 0xB38D92D760EC4455}, // 1e191
  840. {0x85BBE253F47B1417, 0xE070F78D3927556A}, // 1e192
  841. {0x93956D7478CCEC8E, 0x8C469AB843B89562}, // 1e193
  842. {0x387AC8D1970027B2, 0xAF58416654A6BABB}, // 1e194
  843. {0x06997B05FCC0319E, 0xDB2E51BFE9D0696A}, // 1e195
  844. {0x441FECE3BDF81F03, 0x88FCF317F22241E2}, // 1e196
  845. {0xD527E81CAD7626C3, 0xAB3C2FDDEEAAD25A}, // 1e197
  846. {0x8A71E223D8D3B074, 0xD60B3BD56A5586F1}, // 1e198
  847. {0xF6872D5667844E49, 0x85C7056562757456}, // 1e199
  848. {0xB428F8AC016561DB, 0xA738C6BEBB12D16C}, // 1e200
  849. {0xE13336D701BEBA52, 0xD106F86E69D785C7}, // 1e201
  850. {0xECC0024661173473, 0x82A45B450226B39C}, // 1e202
  851. {0x27F002D7F95D0190, 0xA34D721642B06084}, // 1e203
  852. {0x31EC038DF7B441F4, 0xCC20CE9BD35C78A5}, // 1e204
  853. {0x7E67047175A15271, 0xFF290242C83396CE}, // 1e205
  854. {0x0F0062C6E984D386, 0x9F79A169BD203E41}, // 1e206
  855. {0x52C07B78A3E60868, 0xC75809C42C684DD1}, // 1e207
  856. {0xA7709A56CCDF8A82, 0xF92E0C3537826145}, // 1e208
  857. {0x88A66076400BB691, 0x9BBCC7A142B17CCB}, // 1e209
  858. {0x6ACFF893D00EA435, 0xC2ABF989935DDBFE}, // 1e210
  859. {0x0583F6B8C4124D43, 0xF356F7EBF83552FE}, // 1e211
  860. {0xC3727A337A8B704A, 0x98165AF37B2153DE}, // 1e212
  861. {0x744F18C0592E4C5C, 0xBE1BF1B059E9A8D6}, // 1e213
  862. {0x1162DEF06F79DF73, 0xEDA2EE1C7064130C}, // 1e214
  863. {0x8ADDCB5645AC2BA8, 0x9485D4D1C63E8BE7}, // 1e215
  864. {0x6D953E2BD7173692, 0xB9A74A0637CE2EE1}, // 1e216
  865. {0xC8FA8DB6CCDD0437, 0xE8111C87C5C1BA99}, // 1e217
  866. {0x1D9C9892400A22A2, 0x910AB1D4DB9914A0}, // 1e218
  867. {0x2503BEB6D00CAB4B, 0xB54D5E4A127F59C8}, // 1e219
  868. {0x2E44AE64840FD61D, 0xE2A0B5DC971F303A}, // 1e220
  869. {0x5CEAECFED289E5D2, 0x8DA471A9DE737E24}, // 1e221
  870. {0x7425A83E872C5F47, 0xB10D8E1456105DAD}, // 1e222
  871. {0xD12F124E28F77719, 0xDD50F1996B947518}, // 1e223
  872. {0x82BD6B70D99AAA6F, 0x8A5296FFE33CC92F}, // 1e224
  873. {0x636CC64D1001550B, 0xACE73CBFDC0BFB7B}, // 1e225
  874. {0x3C47F7E05401AA4E, 0xD8210BEFD30EFA5A}, // 1e226
  875. {0x65ACFAEC34810A71, 0x8714A775E3E95C78}, // 1e227
  876. {0x7F1839A741A14D0D, 0xA8D9D1535CE3B396}, // 1e228
  877. {0x1EDE48111209A050, 0xD31045A8341CA07C}, // 1e229
  878. {0x934AED0AAB460432, 0x83EA2B892091E44D}, // 1e230
  879. {0xF81DA84D5617853F, 0xA4E4B66B68B65D60}, // 1e231
  880. {0x36251260AB9D668E, 0xCE1DE40642E3F4B9}, // 1e232
  881. {0xC1D72B7C6B426019, 0x80D2AE83E9CE78F3}, // 1e233
  882. {0xB24CF65B8612F81F, 0xA1075A24E4421730}, // 1e234
  883. {0xDEE033F26797B627, 0xC94930AE1D529CFC}, // 1e235
  884. {0x169840EF017DA3B1, 0xFB9B7CD9A4A7443C}, // 1e236
  885. {0x8E1F289560EE864E, 0x9D412E0806E88AA5}, // 1e237
  886. {0xF1A6F2BAB92A27E2, 0xC491798A08A2AD4E}, // 1e238
  887. {0xAE10AF696774B1DB, 0xF5B5D7EC8ACB58A2}, // 1e239
  888. {0xACCA6DA1E0A8EF29, 0x9991A6F3D6BF1765}, // 1e240
  889. {0x17FD090A58D32AF3, 0xBFF610B0CC6EDD3F}, // 1e241
  890. {0xDDFC4B4CEF07F5B0, 0xEFF394DCFF8A948E}, // 1e242
  891. {0x4ABDAF101564F98E, 0x95F83D0A1FB69CD9}, // 1e243
  892. {0x9D6D1AD41ABE37F1, 0xBB764C4CA7A4440F}, // 1e244
  893. {0x84C86189216DC5ED, 0xEA53DF5FD18D5513}, // 1e245
  894. {0x32FD3CF5B4E49BB4, 0x92746B9BE2F8552C}, // 1e246
  895. {0x3FBC8C33221DC2A1, 0xB7118682DBB66A77}, // 1e247
  896. {0x0FABAF3FEAA5334A, 0xE4D5E82392A40515}, // 1e248
  897. {0x29CB4D87F2A7400E, 0x8F05B1163BA6832D}, // 1e249
  898. {0x743E20E9EF511012, 0xB2C71D5BCA9023F8}, // 1e250
  899. {0x914DA9246B255416, 0xDF78E4B2BD342CF6}, // 1e251
  900. {0x1AD089B6C2F7548E, 0x8BAB8EEFB6409C1A}, // 1e252
  901. {0xA184AC2473B529B1, 0xAE9672ABA3D0C320}, // 1e253
  902. {0xC9E5D72D90A2741E, 0xDA3C0F568CC4F3E8}, // 1e254
  903. {0x7E2FA67C7A658892, 0x8865899617FB1871}, // 1e255
  904. {0xDDBB901B98FEEAB7, 0xAA7EEBFB9DF9DE8D}, // 1e256
  905. {0x552A74227F3EA565, 0xD51EA6FA85785631}, // 1e257
  906. {0xD53A88958F87275F, 0x8533285C936B35DE}, // 1e258
  907. {0x8A892ABAF368F137, 0xA67FF273B8460356}, // 1e259
  908. {0x2D2B7569B0432D85, 0xD01FEF10A657842C}, // 1e260
  909. {0x9C3B29620E29FC73, 0x8213F56A67F6B29B}, // 1e261
  910. {0x8349F3BA91B47B8F, 0xA298F2C501F45F42}, // 1e262
  911. {0x241C70A936219A73, 0xCB3F2F7642717713}, // 1e263
  912. {0xED238CD383AA0110, 0xFE0EFB53D30DD4D7}, // 1e264
  913. {0xF4363804324A40AA, 0x9EC95D1463E8A506}, // 1e265
  914. {0xB143C6053EDCD0D5, 0xC67BB4597CE2CE48}, // 1e266
  915. {0xDD94B7868E94050A, 0xF81AA16FDC1B81DA}, // 1e267
  916. {0xCA7CF2B4191C8326, 0x9B10A4E5E9913128}, // 1e268
  917. {0xFD1C2F611F63A3F0, 0xC1D4CE1F63F57D72}, // 1e269
  918. {0xBC633B39673C8CEC, 0xF24A01A73CF2DCCF}, // 1e270
  919. {0xD5BE0503E085D813, 0x976E41088617CA01}, // 1e271
  920. {0x4B2D8644D8A74E18, 0xBD49D14AA79DBC82}, // 1e272
  921. {0xDDF8E7D60ED1219E, 0xEC9C459D51852BA2}, // 1e273
  922. {0xCABB90E5C942B503, 0x93E1AB8252F33B45}, // 1e274
  923. {0x3D6A751F3B936243, 0xB8DA1662E7B00A17}, // 1e275
  924. {0x0CC512670A783AD4, 0xE7109BFBA19C0C9D}, // 1e276
  925. {0x27FB2B80668B24C5, 0x906A617D450187E2}, // 1e277
  926. {0xB1F9F660802DEDF6, 0xB484F9DC9641E9DA}, // 1e278
  927. {0x5E7873F8A0396973, 0xE1A63853BBD26451}, // 1e279
  928. {0xDB0B487B6423E1E8, 0x8D07E33455637EB2}, // 1e280
  929. {0x91CE1A9A3D2CDA62, 0xB049DC016ABC5E5F}, // 1e281
  930. {0x7641A140CC7810FB, 0xDC5C5301C56B75F7}, // 1e282
  931. {0xA9E904C87FCB0A9D, 0x89B9B3E11B6329BA}, // 1e283
  932. {0x546345FA9FBDCD44, 0xAC2820D9623BF429}, // 1e284
  933. {0xA97C177947AD4095, 0xD732290FBACAF133}, // 1e285
  934. {0x49ED8EABCCCC485D, 0x867F59A9D4BED6C0}, // 1e286
  935. {0x5C68F256BFFF5A74, 0xA81F301449EE8C70}, // 1e287
  936. {0x73832EEC6FFF3111, 0xD226FC195C6A2F8C}, // 1e288
  937. };
  938. #if PK_FLOATCONV_HAS_EXACT_DOUBLE_ARITHMETIC // [pocketpy] Deviation 4.
  939. // wuffs_private_impl__f64_powers_of_10 holds powers of 10 that can be exactly
  940. // represented by a float64 (what C calls a double).
  941. static const double wuffs_private_impl__f64_powers_of_10[23] = {
  942. 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11,
  943. 1e12, 1e13, 1e14, 1e15, 1e16, 1e17, 1e18, 1e19, 1e20, 1e21, 1e22,
  944. };
  945. #endif
  946. // --------
  947. #define WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE 2047
  948. #define WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION 800
  949. // WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL is the largest N such that
  950. // ((10 << N) < (1 << 64)).
  951. #define WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL 60
  952. // wuffs_private_impl__high_prec_dec (abbreviated as HPD) is a fixed precision
  953. // floating point decimal number, augmented with ±infinity values, but it
  954. // cannot represent NaN (Not a Number).
  955. //
  956. // "High precision" means that the mantissa holds 800 decimal digits. 800 is
  957. // WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION.
  958. //
  959. // An HPD isn't for general purpose arithmetic, only for conversions to and
  960. // from IEEE 754 double-precision floating point, where the largest and
  961. // smallest positive, finite values are approximately 1.8e+308 and 4.9e-324.
  962. // HPD exponents above +2047 mean infinity, below -2047 mean zero. The ±2047
  963. // bounds are further away from zero than ±(324 + 800), where 800 and 2047 is
  964. // WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION and
  965. // WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE.
  966. //
  967. // digits[.. num_digits] are the number's digits in big-endian order. The
  968. // uint8_t values are in the range [0 ..= 9], not ['0' ..= '9'], where e.g. '7'
  969. // is the ASCII value 0x37.
  970. //
  971. // decimal_point is the index (within digits) of the decimal point. It may be
  972. // negative or be larger than num_digits, in which case the explicit digits are
  973. // padded with implicit zeroes.
  974. //
  975. // For example, if num_digits is 3 and digits is "\x07\x08\x09":
  976. // - A decimal_point of -2 means ".00789"
  977. // - A decimal_point of -1 means ".0789"
  978. // - A decimal_point of +0 means ".789"
  979. // - A decimal_point of +1 means "7.89"
  980. // - A decimal_point of +2 means "78.9"
  981. // - A decimal_point of +3 means "789."
  982. // - A decimal_point of +4 means "7890."
  983. // - A decimal_point of +5 means "78900."
  984. //
  985. // As above, a decimal_point higher than +2047 means that the overall value is
  986. // infinity, lower than -2047 means zero.
  987. //
  988. // negative is a sign bit. An HPD can distinguish positive and negative zero.
  989. //
  990. // truncated is whether there are more than
  991. // WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION digits, and at least one of those
  992. // extra digits are non-zero. The existence of long-tail digits can affect
  993. // rounding.
  994. //
  995. // The "all fields are zero" value is valid, and represents the number +0.
  996. typedef struct wuffs_private_impl__high_prec_dec__struct {
  997. uint32_t num_digits;
  998. int32_t decimal_point;
  999. bool negative;
  1000. bool truncated;
  1001. uint8_t digits[WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION];
  1002. } wuffs_private_impl__high_prec_dec;
  1003. // wuffs_private_impl__high_prec_dec__trim trims trailing zeroes from the
  1004. // h->digits[.. h->num_digits] slice. They have no benefit, since we explicitly
  1005. // track h->decimal_point.
  1006. //
  1007. // Preconditions:
  1008. // - h is non-NULL.
  1009. static inline void //
  1010. wuffs_private_impl__high_prec_dec__trim(wuffs_private_impl__high_prec_dec* h) {
  1011. while ((h->num_digits > 0) && (h->digits[h->num_digits - 1] == 0)) {
  1012. h->num_digits--;
  1013. }
  1014. }
  1015. // wuffs_private_impl__high_prec_dec__assign sets h to represent the number x.
  1016. //
  1017. // Preconditions:
  1018. // - h is non-NULL.
  1019. static void //
  1020. wuffs_private_impl__high_prec_dec__assign(wuffs_private_impl__high_prec_dec* h,
  1021. uint64_t x,
  1022. bool negative) {
  1023. uint32_t n = 0;
  1024. // Set h->digits.
  1025. if (x > 0) {
  1026. // Calculate the digits, working right-to-left. After we determine n (how
  1027. // many digits there are), copy from buf to h->digits.
  1028. //
  1029. // UINT64_MAX, 18446744073709551615, is 20 digits long. It can be faster to
  1030. // copy a constant number of bytes than a variable number (20 instead of
  1031. // n). Make buf large enough (and start writing to it from the middle) so
  1032. // that can we always copy 20 bytes: the slice buf[(20-n) .. (40-n)].
  1033. uint8_t buf[40] = {0};
  1034. uint8_t* ptr = &buf[20];
  1035. do {
  1036. uint64_t remaining = x / 10;
  1037. x -= remaining * 10;
  1038. ptr--;
  1039. *ptr = (uint8_t)x;
  1040. n++;
  1041. x = remaining;
  1042. } while (x > 0);
  1043. memcpy(h->digits, ptr, 20);
  1044. }
  1045. // Set h's other fields.
  1046. h->num_digits = n;
  1047. h->decimal_point = (int32_t)n;
  1048. h->negative = negative;
  1049. h->truncated = false;
  1050. wuffs_private_impl__high_prec_dec__trim(h);
  1051. }
  1052. static wuffs_base__status //
  1053. wuffs_private_impl__high_prec_dec__parse(wuffs_private_impl__high_prec_dec* h,
  1054. wuffs_base__slice_u8 s,
  1055. uint32_t options) {
  1056. if (!h) {
  1057. return wuffs_base__make_status(wuffs_base__error__bad_receiver);
  1058. }
  1059. h->num_digits = 0;
  1060. h->decimal_point = 0;
  1061. h->negative = false;
  1062. h->truncated = false;
  1063. uint8_t* p = s.ptr;
  1064. uint8_t* q = s.ptr + s.len;
  1065. if (options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES) {
  1066. for (;; p++) {
  1067. if (p >= q) {
  1068. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1069. } else if (*p != '_') {
  1070. break;
  1071. }
  1072. }
  1073. }
  1074. // Parse sign.
  1075. do {
  1076. if (*p == '+') {
  1077. p++;
  1078. } else if (*p == '-') {
  1079. h->negative = true;
  1080. p++;
  1081. } else {
  1082. break;
  1083. }
  1084. if (options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES) {
  1085. for (;; p++) {
  1086. if (p >= q) {
  1087. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1088. } else if (*p != '_') {
  1089. break;
  1090. }
  1091. }
  1092. }
  1093. } while (0);
  1094. // Parse digits, up to (and including) a '.', 'E' or 'e'. Examples for each
  1095. // limb in this if-else chain:
  1096. // - "0.789"
  1097. // - "1002.789"
  1098. // - ".789"
  1099. // - Other (invalid input).
  1100. uint32_t nd = 0;
  1101. int32_t dp = 0;
  1102. bool no_digits_before_separator = false;
  1103. if (('0' == *p) &&
  1104. !(options &
  1105. WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_MULTIPLE_LEADING_ZEROES)) {
  1106. p++;
  1107. for (;; p++) {
  1108. if (p >= q) {
  1109. goto after_all;
  1110. } else if (*p ==
  1111. ((options &
  1112. WUFFS_BASE__PARSE_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA)
  1113. ? ','
  1114. : '.')) {
  1115. p++;
  1116. goto after_sep;
  1117. } else if ((*p == 'E') || (*p == 'e')) {
  1118. p++;
  1119. goto after_exp;
  1120. } else if ((*p != '_') ||
  1121. !(options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES)) {
  1122. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1123. }
  1124. }
  1125. } else if (('0' <= *p) && (*p <= '9')) {
  1126. if (*p == '0') {
  1127. for (; (p < q) && (*p == '0'); p++) {
  1128. }
  1129. } else {
  1130. h->digits[nd++] = (uint8_t)(*p - '0');
  1131. dp = (int32_t)nd;
  1132. p++;
  1133. }
  1134. for (;; p++) {
  1135. if (p >= q) {
  1136. goto after_all;
  1137. } else if (('0' <= *p) && (*p <= '9')) {
  1138. if (nd < WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1139. h->digits[nd++] = (uint8_t)(*p - '0');
  1140. dp = (int32_t)nd;
  1141. } else if ('0' != *p) {
  1142. // Long-tail non-zeroes set the truncated bit.
  1143. h->truncated = true;
  1144. }
  1145. } else if (*p ==
  1146. ((options &
  1147. WUFFS_BASE__PARSE_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA)
  1148. ? ','
  1149. : '.')) {
  1150. p++;
  1151. goto after_sep;
  1152. } else if ((*p == 'E') || (*p == 'e')) {
  1153. p++;
  1154. goto after_exp;
  1155. } else if ((*p != '_') ||
  1156. !(options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES)) {
  1157. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1158. }
  1159. }
  1160. } else if (*p == ((options &
  1161. WUFFS_BASE__PARSE_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA)
  1162. ? ','
  1163. : '.')) {
  1164. p++;
  1165. no_digits_before_separator = true;
  1166. } else {
  1167. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1168. }
  1169. after_sep:
  1170. for (;; p++) {
  1171. if (p >= q) {
  1172. goto after_all;
  1173. } else if ('0' == *p) {
  1174. if (nd == 0) {
  1175. // Track leading zeroes implicitly.
  1176. dp--;
  1177. } else if (nd < WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1178. h->digits[nd++] = (uint8_t)(*p - '0');
  1179. }
  1180. } else if (('0' < *p) && (*p <= '9')) {
  1181. if (nd < WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1182. h->digits[nd++] = (uint8_t)(*p - '0');
  1183. } else {
  1184. // Long-tail non-zeroes set the truncated bit.
  1185. h->truncated = true;
  1186. }
  1187. } else if ((*p == 'E') || (*p == 'e')) {
  1188. p++;
  1189. goto after_exp;
  1190. } else if ((*p != '_') ||
  1191. !(options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES)) {
  1192. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1193. }
  1194. }
  1195. after_exp:
  1196. do {
  1197. if (options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES) {
  1198. for (;; p++) {
  1199. if (p >= q) {
  1200. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1201. } else if (*p != '_') {
  1202. break;
  1203. }
  1204. }
  1205. }
  1206. int32_t exp_sign = +1;
  1207. if (*p == '+') {
  1208. p++;
  1209. } else if (*p == '-') {
  1210. exp_sign = -1;
  1211. p++;
  1212. }
  1213. int32_t exp = 0;
  1214. const int32_t exp_large = WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE +
  1215. WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION;
  1216. bool saw_exp_digits = false;
  1217. for (; p < q; p++) {
  1218. if ((*p == '_') &&
  1219. (options & WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES)) {
  1220. // No-op.
  1221. } else if (('0' <= *p) && (*p <= '9')) {
  1222. saw_exp_digits = true;
  1223. if (exp < exp_large) {
  1224. exp = (10 * exp) + ((int32_t)(*p - '0'));
  1225. }
  1226. } else {
  1227. break;
  1228. }
  1229. }
  1230. if (!saw_exp_digits) {
  1231. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1232. }
  1233. dp += exp_sign * exp;
  1234. } while (0);
  1235. after_all:
  1236. if (p != q) {
  1237. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1238. }
  1239. h->num_digits = nd;
  1240. if (nd == 0) {
  1241. if (no_digits_before_separator) {
  1242. return wuffs_base__make_status(wuffs_base__error__bad_argument);
  1243. }
  1244. h->decimal_point = 0;
  1245. } else if (dp < -WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE) {
  1246. h->decimal_point = -WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE - 1;
  1247. } else if (dp > +WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE) {
  1248. h->decimal_point = +WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE + 1;
  1249. } else {
  1250. h->decimal_point = dp;
  1251. }
  1252. wuffs_private_impl__high_prec_dec__trim(h);
  1253. return wuffs_base__make_status(NULL);
  1254. }
  1255. // --------
  1256. // wuffs_private_impl__high_prec_dec__lshift_num_new_digits returns the number
  1257. // of additional decimal digits when left-shifting by shift.
  1258. //
  1259. // See below for preconditions.
  1260. static uint32_t //
  1261. wuffs_private_impl__high_prec_dec__lshift_num_new_digits(
  1262. wuffs_private_impl__high_prec_dec* h,
  1263. uint32_t shift) {
  1264. // Masking with 0x3F should be unnecessary (assuming the preconditions) but
  1265. // it's cheap and ensures that we don't overflow the
  1266. // wuffs_private_impl__hpd_left_shift array.
  1267. shift &= 63;
  1268. uint32_t x_a = wuffs_private_impl__hpd_left_shift[shift];
  1269. uint32_t x_b = wuffs_private_impl__hpd_left_shift[shift + 1];
  1270. uint32_t num_new_digits = x_a >> 11;
  1271. uint32_t pow5_a = 0x7FF & x_a;
  1272. uint32_t pow5_b = 0x7FF & x_b;
  1273. const uint8_t* pow5 = &wuffs_private_impl__powers_of_5[pow5_a];
  1274. uint32_t i = 0;
  1275. uint32_t n = pow5_b - pow5_a;
  1276. for (; i < n; i++) {
  1277. if (i >= h->num_digits) {
  1278. return num_new_digits - 1;
  1279. } else if (h->digits[i] == pow5[i]) {
  1280. continue;
  1281. } else if (h->digits[i] < pow5[i]) {
  1282. return num_new_digits - 1;
  1283. } else {
  1284. return num_new_digits;
  1285. }
  1286. }
  1287. return num_new_digits;
  1288. }
  1289. // --------
  1290. // wuffs_private_impl__high_prec_dec__rounded_integer returns the integral
  1291. // (non-fractional) part of h, provided that it is 18 or fewer decimal digits.
  1292. // For 19 or more digits, it returns UINT64_MAX. Note that:
  1293. // - (1 << 53) is 9007199254740992, which has 16 decimal digits.
  1294. // - (1 << 56) is 72057594037927936, which has 17 decimal digits.
  1295. // - (1 << 59) is 576460752303423488, which has 18 decimal digits.
  1296. // - (1 << 63) is 9223372036854775808, which has 19 decimal digits.
  1297. // and that IEEE 754 double precision has 52 mantissa bits.
  1298. //
  1299. // That integral part is rounded-to-even: rounding 7.5 or 8.5 both give 8.
  1300. //
  1301. // h's negative bit is ignored: rounding -8.6 returns 9.
  1302. //
  1303. // See below for preconditions.
  1304. static uint64_t //
  1305. wuffs_private_impl__high_prec_dec__rounded_integer(
  1306. wuffs_private_impl__high_prec_dec* h) {
  1307. if ((h->num_digits == 0) || (h->decimal_point < 0)) {
  1308. return 0;
  1309. } else if (h->decimal_point > 18) {
  1310. return UINT64_MAX;
  1311. }
  1312. uint32_t dp = (uint32_t)(h->decimal_point);
  1313. uint64_t n = 0;
  1314. uint32_t i = 0;
  1315. for (; i < dp; i++) {
  1316. n = (10 * n) + ((i < h->num_digits) ? h->digits[i] : 0);
  1317. }
  1318. bool round_up = false;
  1319. if (dp < h->num_digits) {
  1320. round_up = h->digits[dp] >= 5;
  1321. if ((h->digits[dp] == 5) && (dp + 1 == h->num_digits)) {
  1322. // We are exactly halfway. If we're truncated, round up, otherwise round
  1323. // to even.
  1324. round_up = h->truncated || //
  1325. ((dp > 0) && (1 & h->digits[dp - 1]));
  1326. }
  1327. }
  1328. if (round_up) {
  1329. n++;
  1330. }
  1331. return n;
  1332. }
  1333. // wuffs_private_impl__high_prec_dec__small_xshift shifts h's number (where 'x'
  1334. // is 'l' or 'r' for left or right) by a small shift value.
  1335. //
  1336. // Preconditions:
  1337. // - h is non-NULL.
  1338. // - h->decimal_point is "not extreme".
  1339. // - shift is non-zero.
  1340. // - shift is "a small shift".
  1341. //
  1342. // "Not extreme" means within ±WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE.
  1343. //
  1344. // "A small shift" means not more than
  1345. // WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL.
  1346. //
  1347. // wuffs_private_impl__high_prec_dec__rounded_integer and
  1348. // wuffs_private_impl__high_prec_dec__lshift_num_new_digits have the same
  1349. // preconditions.
  1350. //
  1351. // wuffs_private_impl__high_prec_dec__lshift keeps the first two preconditions
  1352. // but not the last two. Its shift argument is signed and does not need to be
  1353. // "small": zero is a no-op, positive means left shift and negative means right
  1354. // shift.
  1355. static void //
  1356. wuffs_private_impl__high_prec_dec__small_lshift(
  1357. wuffs_private_impl__high_prec_dec* h,
  1358. uint32_t shift) {
  1359. if (h->num_digits == 0) {
  1360. return;
  1361. }
  1362. uint32_t num_new_digits =
  1363. wuffs_private_impl__high_prec_dec__lshift_num_new_digits(h, shift);
  1364. uint32_t rx = h->num_digits - 1; // Read index.
  1365. uint32_t wx = h->num_digits - 1 + num_new_digits; // Write index.
  1366. uint64_t n = 0;
  1367. // Repeat: pick up a digit, put down a digit, right to left.
  1368. while (((int32_t)rx) >= 0) {
  1369. n += ((uint64_t)(h->digits[rx])) << shift;
  1370. uint64_t quo = n / 10;
  1371. uint64_t rem = n - (10 * quo);
  1372. if (wx < WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1373. h->digits[wx] = (uint8_t)rem;
  1374. } else if (rem > 0) {
  1375. h->truncated = true;
  1376. }
  1377. n = quo;
  1378. wx--;
  1379. rx--;
  1380. }
  1381. // Put down leading digits, right to left.
  1382. while (n > 0) {
  1383. uint64_t quo = n / 10;
  1384. uint64_t rem = n - (10 * quo);
  1385. if (wx < WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1386. h->digits[wx] = (uint8_t)rem;
  1387. } else if (rem > 0) {
  1388. h->truncated = true;
  1389. }
  1390. n = quo;
  1391. wx--;
  1392. }
  1393. // Finish.
  1394. h->num_digits += num_new_digits;
  1395. if (h->num_digits > WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1396. h->num_digits = WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION;
  1397. }
  1398. h->decimal_point += (int32_t)num_new_digits;
  1399. wuffs_private_impl__high_prec_dec__trim(h);
  1400. }
  1401. static void //
  1402. wuffs_private_impl__high_prec_dec__small_rshift(
  1403. wuffs_private_impl__high_prec_dec* h,
  1404. uint32_t shift) {
  1405. uint32_t rx = 0; // Read index.
  1406. uint32_t wx = 0; // Write index.
  1407. uint64_t n = 0;
  1408. // Pick up enough leading digits to cover the first shift.
  1409. while ((n >> shift) == 0) {
  1410. if (rx < h->num_digits) {
  1411. // Read a digit.
  1412. n = (10 * n) + h->digits[rx++];
  1413. } else if (n == 0) {
  1414. // h's number used to be zero and remains zero.
  1415. return;
  1416. } else {
  1417. // Read sufficient implicit trailing zeroes.
  1418. while ((n >> shift) == 0) {
  1419. n = 10 * n;
  1420. rx++;
  1421. }
  1422. break;
  1423. }
  1424. }
  1425. h->decimal_point -= ((int32_t)(rx - 1));
  1426. if (h->decimal_point < -WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE) {
  1427. // After the shift, h's number is effectively zero.
  1428. h->num_digits = 0;
  1429. h->decimal_point = 0;
  1430. h->truncated = false;
  1431. return;
  1432. }
  1433. // Repeat: pick up a digit, put down a digit, left to right.
  1434. uint64_t mask = (((uint64_t)(1)) << shift) - 1;
  1435. while (rx < h->num_digits) {
  1436. uint8_t new_digit = ((uint8_t)(n >> shift));
  1437. n = (10 * (n & mask)) + h->digits[rx++];
  1438. h->digits[wx++] = new_digit;
  1439. }
  1440. // Put down trailing digits, left to right.
  1441. while (n > 0) {
  1442. uint8_t new_digit = ((uint8_t)(n >> shift));
  1443. n = 10 * (n & mask);
  1444. if (wx < WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION) {
  1445. h->digits[wx++] = new_digit;
  1446. } else if (new_digit > 0) {
  1447. h->truncated = true;
  1448. }
  1449. }
  1450. // Finish.
  1451. h->num_digits = wx;
  1452. wuffs_private_impl__high_prec_dec__trim(h);
  1453. }
  1454. static void //
  1455. wuffs_private_impl__high_prec_dec__lshift(wuffs_private_impl__high_prec_dec* h,
  1456. int32_t shift) {
  1457. if (shift > 0) {
  1458. while (shift > +WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL) {
  1459. wuffs_private_impl__high_prec_dec__small_lshift(
  1460. h, WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL);
  1461. shift -= WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL;
  1462. }
  1463. wuffs_private_impl__high_prec_dec__small_lshift(h, ((uint32_t)(+shift)));
  1464. } else if (shift < 0) {
  1465. while (shift < -WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL) {
  1466. wuffs_private_impl__high_prec_dec__small_rshift(
  1467. h, WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL);
  1468. shift += WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL;
  1469. }
  1470. wuffs_private_impl__high_prec_dec__small_rshift(h, ((uint32_t)(-shift)));
  1471. }
  1472. }
  1473. // --------
  1474. // wuffs_private_impl__high_prec_dec__round_etc rounds h's number. For those
  1475. // functions that take an n argument, rounding produces at most n digits (which
  1476. // is not necessarily at most n decimal places). Negative n values are ignored,
  1477. // as well as any n greater than or equal to h's number of digits. The
  1478. // etc__round_just_enough function implicitly chooses an n to implement
  1479. // WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION.
  1480. //
  1481. // Preconditions:
  1482. // - h is non-NULL.
  1483. // - h->decimal_point is "not extreme".
  1484. //
  1485. // "Not extreme" means within ±WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE.
  1486. static void //
  1487. wuffs_private_impl__high_prec_dec__round_down(
  1488. wuffs_private_impl__high_prec_dec* h,
  1489. int32_t n) {
  1490. if ((n < 0) || (h->num_digits <= (uint32_t)n)) {
  1491. return;
  1492. }
  1493. h->num_digits = (uint32_t)(n);
  1494. wuffs_private_impl__high_prec_dec__trim(h);
  1495. }
  1496. static void //
  1497. wuffs_private_impl__high_prec_dec__round_up(
  1498. wuffs_private_impl__high_prec_dec* h,
  1499. int32_t n) {
  1500. if ((n < 0) || (h->num_digits <= (uint32_t)n)) {
  1501. return;
  1502. }
  1503. for (n--; n >= 0; n--) {
  1504. if (h->digits[n] < 9) {
  1505. h->digits[n]++;
  1506. h->num_digits = (uint32_t)(n + 1);
  1507. return;
  1508. }
  1509. }
  1510. // The number is all 9s. Change to a single 1 and adjust the decimal point.
  1511. h->digits[0] = 1;
  1512. h->num_digits = 1;
  1513. h->decimal_point++;
  1514. }
  1515. static void //
  1516. wuffs_private_impl__high_prec_dec__round_nearest(
  1517. wuffs_private_impl__high_prec_dec* h,
  1518. int32_t n) {
  1519. if ((n < 0) || (h->num_digits <= (uint32_t)n)) {
  1520. return;
  1521. }
  1522. bool up = h->digits[n] >= 5;
  1523. if ((h->digits[n] == 5) && ((n + 1) == ((int32_t)(h->num_digits)))) {
  1524. up = h->truncated || //
  1525. ((n > 0) && ((h->digits[n - 1] & 1) != 0));
  1526. }
  1527. if (up) {
  1528. wuffs_private_impl__high_prec_dec__round_up(h, n);
  1529. } else {
  1530. wuffs_private_impl__high_prec_dec__round_down(h, n);
  1531. }
  1532. }
  1533. static void //
  1534. wuffs_private_impl__high_prec_dec__round_just_enough(
  1535. wuffs_private_impl__high_prec_dec* h,
  1536. int32_t exp2,
  1537. uint64_t mantissa) {
  1538. // The magic numbers 52 and 53 in this function are because IEEE 754 double
  1539. // precision has 52 mantissa bits.
  1540. //
  1541. // Let f be the floating point number represented by exp2 and mantissa (and
  1542. // also the number in h): the number (mantissa * (2 ** (exp2 - 52))).
  1543. //
  1544. // If f is zero or a small integer, we can return early.
  1545. if ((mantissa == 0) ||
  1546. ((exp2 < 53) && (h->decimal_point >= ((int32_t)(h->num_digits))))) {
  1547. return;
  1548. }
  1549. // The smallest normal f has an exp2 of -1022 and a mantissa of (1 << 52).
  1550. // Subnormal numbers have the same exp2 but a smaller mantissa.
  1551. static const int32_t min_incl_normal_exp2 = -1022;
  1552. static const uint64_t min_incl_normal_mantissa = 0x0010000000000000ul;
  1553. // Compute lower and upper bounds such that any number between them (possibly
  1554. // inclusive) will round to f. First, the lower bound. Our number f is:
  1555. // ((mantissa + 0) * (2 ** ( exp2 - 52)))
  1556. //
  1557. // The next lowest floating point number is:
  1558. // ((mantissa - 1) * (2 ** ( exp2 - 52)))
  1559. // unless (mantissa - 1) drops the (1 << 52) bit and exp2 is not the
  1560. // min_incl_normal_exp2. Either way, call it:
  1561. // ((l_mantissa) * (2 ** (l_exp2 - 52)))
  1562. //
  1563. // The lower bound is halfway between them (noting that 52 became 53):
  1564. // (((2 * l_mantissa) + 1) * (2 ** (l_exp2 - 53)))
  1565. int32_t l_exp2 = exp2;
  1566. uint64_t l_mantissa = mantissa - 1;
  1567. if ((exp2 > min_incl_normal_exp2) && (mantissa <= min_incl_normal_mantissa)) {
  1568. l_exp2 = exp2 - 1;
  1569. l_mantissa = (2 * mantissa) - 1;
  1570. }
  1571. wuffs_private_impl__high_prec_dec lower;
  1572. wuffs_private_impl__high_prec_dec__assign(&lower, (2 * l_mantissa) + 1,
  1573. false);
  1574. wuffs_private_impl__high_prec_dec__lshift(&lower, l_exp2 - 53);
  1575. // Next, the upper bound. Our number f is:
  1576. // ((mantissa + 0) * (2 ** (exp2 - 52)))
  1577. //
  1578. // The next highest floating point number is:
  1579. // ((mantissa + 1) * (2 ** (exp2 - 52)))
  1580. //
  1581. // The upper bound is halfway between them (noting that 52 became 53):
  1582. // (((2 * mantissa) + 1) * (2 ** (exp2 - 53)))
  1583. wuffs_private_impl__high_prec_dec upper;
  1584. wuffs_private_impl__high_prec_dec__assign(&upper, (2 * mantissa) + 1, false);
  1585. wuffs_private_impl__high_prec_dec__lshift(&upper, exp2 - 53);
  1586. // The lower and upper bounds are possible outputs only if the original
  1587. // mantissa is even, so that IEEE round-to-even would round to the original
  1588. // mantissa and not its neighbors.
  1589. bool inclusive = (mantissa & 1) == 0;
  1590. // As we walk the digits, we want to know whether rounding up would fall
  1591. // within the upper bound. This is tracked by upper_delta:
  1592. // - When -1, the digits of h and upper are the same so far.
  1593. // - When +0, we saw a difference of 1 between h and upper on a previous
  1594. // digit and subsequently only 9s for h and 0s for upper. Thus, rounding
  1595. // up may fall outside of the bound if !inclusive.
  1596. // - When +1, the difference is greater than 1 and we know that rounding up
  1597. // falls within the bound.
  1598. //
  1599. // This is a state machine with three states. The numerical value for each
  1600. // state (-1, +0 or +1) isn't important, other than their order.
  1601. int upper_delta = -1;
  1602. // We can now figure out the shortest number of digits required. Walk the
  1603. // digits until h has distinguished itself from lower or upper.
  1604. //
  1605. // The zi and zd variables are indexes and digits, for z in l (lower), h (the
  1606. // number) and u (upper).
  1607. //
  1608. // The lower, h and upper numbers may have their decimal points at different
  1609. // places. In this case, upper is the longest, so we iterate ui starting from
  1610. // 0 and iterate li and hi starting from either 0 or -1.
  1611. int32_t ui = 0;
  1612. for (;; ui++) {
  1613. // Calculate hd, the middle number's digit.
  1614. int32_t hi = ui - upper.decimal_point + h->decimal_point;
  1615. if (hi >= ((int32_t)(h->num_digits))) {
  1616. break;
  1617. }
  1618. uint8_t hd = (((uint32_t)hi) < h->num_digits) ? h->digits[hi] : 0;
  1619. // Calculate ld, the lower bound's digit.
  1620. int32_t li = ui - upper.decimal_point + lower.decimal_point;
  1621. uint8_t ld = (((uint32_t)li) < lower.num_digits) ? lower.digits[li] : 0;
  1622. // We can round down (truncate) if lower has a different digit than h or if
  1623. // lower is inclusive and is exactly the result of rounding down (i.e. we
  1624. // have reached the final digit of lower).
  1625. bool can_round_down =
  1626. (ld != hd) || //
  1627. (inclusive && ((li + 1) == ((int32_t)(lower.num_digits))));
  1628. // Calculate ud, the upper bound's digit, and update upper_delta.
  1629. uint8_t ud = (((uint32_t)ui) < upper.num_digits) ? upper.digits[ui] : 0;
  1630. if (upper_delta < 0) {
  1631. if ((hd + 1) < ud) {
  1632. // For example:
  1633. // h = 12345???
  1634. // upper = 12347???
  1635. upper_delta = +1;
  1636. } else if (hd != ud) {
  1637. // For example:
  1638. // h = 12345???
  1639. // upper = 12346???
  1640. upper_delta = +0;
  1641. }
  1642. } else if (upper_delta == 0) {
  1643. if ((hd != 9) || (ud != 0)) {
  1644. // For example:
  1645. // h = 1234598?
  1646. // upper = 1234600?
  1647. upper_delta = +1;
  1648. }
  1649. }
  1650. // We can round up if upper has a different digit than h and either upper
  1651. // is inclusive or upper is bigger than the result of rounding up.
  1652. bool can_round_up =
  1653. (upper_delta > 0) || //
  1654. ((upper_delta == 0) && //
  1655. (inclusive || ((ui + 1) < ((int32_t)(upper.num_digits)))));
  1656. // If we can round either way, round to nearest. If we can round only one
  1657. // way, do it. If we can't round, continue the loop.
  1658. if (can_round_down) {
  1659. if (can_round_up) {
  1660. wuffs_private_impl__high_prec_dec__round_nearest(h, hi + 1);
  1661. return;
  1662. } else {
  1663. wuffs_private_impl__high_prec_dec__round_down(h, hi + 1);
  1664. return;
  1665. }
  1666. } else {
  1667. if (can_round_up) {
  1668. wuffs_private_impl__high_prec_dec__round_up(h, hi + 1);
  1669. return;
  1670. }
  1671. }
  1672. }
  1673. }
  1674. // --------
  1675. // wuffs_private_impl__parse_number_f64_eisel_lemire produces the IEEE 754
  1676. // double-precision value for an exact mantissa and base-10 exponent. For
  1677. // example:
  1678. // - when parsing "12345.678e+02", man is 12345678 and exp10 is -1.
  1679. // - when parsing "-12", man is 12 and exp10 is 0. Processing the leading
  1680. // minus sign is the responsibility of the caller, not this function.
  1681. //
  1682. // On success, it returns a non-negative int64_t such that the low 63 bits hold
  1683. // the 11-bit exponent and 52-bit mantissa.
  1684. //
  1685. // On failure, it returns a negative value.
  1686. //
  1687. // The algorithm is based on an original idea by Michael Eisel that was refined
  1688. // by Daniel Lemire. See
  1689. // https://lemire.me/blog/2020/03/10/fast-float-parsing-in-practice/
  1690. // and
  1691. // https://nigeltao.github.io/blog/2020/eisel-lemire.html
  1692. //
  1693. // Preconditions:
  1694. // - man is non-zero.
  1695. // - exp10 is in the range [-307 ..= 288], the same range of the
  1696. // wuffs_private_impl__powers_of_10 array.
  1697. //
  1698. // The exp10 range (and the fact that man is in the range [1 ..= UINT64_MAX],
  1699. // approximately [1 ..= 1.85e+19]) means that (man * (10 ** exp10)) is in the
  1700. // range [1e-307 ..= 1.85e+307]. This is entirely within the range of normal
  1701. // (neither subnormal nor non-finite) f64 values: DBL_MIN and DBL_MAX are
  1702. // approximately 2.23e–308 and 1.80e+308.
  1703. static int64_t //
  1704. wuffs_private_impl__parse_number_f64_eisel_lemire(uint64_t man, int32_t exp10) {
  1705. // Look up the (possibly truncated) base-2 representation of (10 ** exp10).
  1706. // The look-up table was constructed so that it is already normalized: the
  1707. // table entry's mantissa's MSB (most significant bit) is on.
  1708. const uint64_t* po10 = &wuffs_private_impl__powers_of_10[exp10 + 307][0];
  1709. // Normalize the man argument. The (man != 0) precondition means that a
  1710. // non-zero bit exists.
  1711. uint32_t clz = wuffs_base__count_leading_zeroes_u64(man);
  1712. man <<= clz;
  1713. // Calculate the return value's base-2 exponent. We might tweak it by ±1
  1714. // later, but its initial value comes from a linear scaling of exp10,
  1715. // converting from power-of-10 to power-of-2, and adjusting by clz.
  1716. //
  1717. // The magic constants are:
  1718. // - 1087 = 1023 + 64. The 1023 is the f64 exponent bias. The 64 is because
  1719. // the look-up table uses 64-bit mantissas.
  1720. // - 217706 is such that the ratio 217706 / 65536 ≈ 3.321930 is close enough
  1721. // (over the practical range of exp10) to log(10) / log(2) ≈ 3.321928.
  1722. // - 65536 = 1<<16 is arbitrary but a power of 2, so division is a shift.
  1723. //
  1724. // Equality of the linearly-scaled value and the actual power-of-2, over the
  1725. // range of exp10 arguments that this function accepts, is confirmed by
  1726. // script/print-mpb-powers-of-10.go
  1727. uint64_t ret_exp2 =
  1728. ((uint64_t)(((217706 * exp10) >> 16) + 1087)) - ((uint64_t)clz);
  1729. // Multiply the two mantissas. Normalization means that both mantissas are at
  1730. // least (1<<63), so the 128-bit product must be at least (1<<126). The high
  1731. // 64 bits of the product, x_hi, must therefore be at least (1<<62).
  1732. //
  1733. // As a consequence, x_hi has either 0 or 1 leading zeroes. Shifting x_hi
  1734. // right by either 9 or 10 bits (depending on x_hi's MSB) will therefore
  1735. // leave the top 10 MSBs (bits 54 ..= 63) off and the 11th MSB (bit 53) on.
  1736. wuffs_base__multiply_u64__output x = wuffs_base__multiply_u64(man, po10[1]);
  1737. uint64_t x_hi = x.hi;
  1738. uint64_t x_lo = x.lo;
  1739. // Before we shift right by at least 9 bits, recall that the look-up table
  1740. // entry was possibly truncated. We have so far only calculated a lower bound
  1741. // for the product (man * e), where e is (10 ** exp10). The upper bound would
  1742. // add a further (man * 1) to the 128-bit product, which overflows the lower
  1743. // 64-bit limb if ((x_lo + man) < man).
  1744. //
  1745. // If overflow occurs, that adds 1 to x_hi. Since we're about to shift right
  1746. // by at least 9 bits, that carried 1 can be ignored unless the higher 64-bit
  1747. // limb's low 9 bits are all on.
  1748. //
  1749. // For example, parsing "9999999999999999999" will take the if-true branch
  1750. // here, since:
  1751. // - x_hi = 0x4563918244F3FFFF
  1752. // - x_lo = 0x8000000000000000
  1753. // - man = 0x8AC7230489E7FFFF
  1754. if (((x_hi & 0x1FF) == 0x1FF) && ((x_lo + man) < man)) {
  1755. // Refine our calculation of (man * e). Before, our approximation of e used
  1756. // a "low resolution" 64-bit mantissa. Now use a "high resolution" 128-bit
  1757. // mantissa. We've already calculated x = (man * bits_0_to_63_incl_of_e).
  1758. // Now calculate y = (man * bits_64_to_127_incl_of_e).
  1759. wuffs_base__multiply_u64__output y = wuffs_base__multiply_u64(man, po10[0]);
  1760. uint64_t y_hi = y.hi;
  1761. uint64_t y_lo = y.lo;
  1762. // Merge the 128-bit x and 128-bit y, which overlap by 64 bits, to
  1763. // calculate the 192-bit product of the 64-bit man by the 128-bit e.
  1764. // As we exit this if-block, we only care about the high 128 bits
  1765. // (merged_hi and merged_lo) of that 192-bit product.
  1766. //
  1767. // For example, parsing "1.234e-45" will take the if-true branch here,
  1768. // since:
  1769. // - x_hi = 0x70B7E3696DB29FFF
  1770. // - x_lo = 0xE040000000000000
  1771. // - y_hi = 0x33718BBEAB0E0D7A
  1772. // - y_lo = 0xA880000000000000
  1773. uint64_t merged_hi = x_hi;
  1774. uint64_t merged_lo = x_lo + y_hi;
  1775. if (merged_lo < x_lo) {
  1776. merged_hi++; // Carry the overflow bit.
  1777. }
  1778. // The "high resolution" approximation of e is still a lower bound. Once
  1779. // again, see if the upper bound is large enough to produce a different
  1780. // result. This time, if it does, give up instead of reaching for an even
  1781. // more precise approximation to e.
  1782. //
  1783. // This three-part check is similar to the two-part check that guarded the
  1784. // if block that we're now in, but it has an extra term for the middle 64
  1785. // bits (checking that adding 1 to merged_lo would overflow).
  1786. //
  1787. // For example, parsing "5.9604644775390625e-8" will take the if-true
  1788. // branch here, since:
  1789. // - merged_hi = 0x7FFFFFFFFFFFFFFF
  1790. // - merged_lo = 0xFFFFFFFFFFFFFFFF
  1791. // - y_lo = 0x4DB3FFC120988200
  1792. // - man = 0xD3C21BCECCEDA100
  1793. if (((merged_hi & 0x1FF) == 0x1FF) && ((merged_lo + 1) == 0) &&
  1794. (y_lo + man < man)) {
  1795. return -1;
  1796. }
  1797. // Replace the 128-bit x with merged.
  1798. x_hi = merged_hi;
  1799. x_lo = merged_lo;
  1800. }
  1801. // As mentioned above, shifting x_hi right by either 9 or 10 bits will leave
  1802. // the top 10 MSBs (bits 54 ..= 63) off and the 11th MSB (bit 53) on. If the
  1803. // MSB (before shifting) was on, adjust ret_exp2 for the larger shift.
  1804. //
  1805. // Having bit 53 on (and higher bits off) means that ret_mantissa is a 54-bit
  1806. // number.
  1807. uint64_t msb = x_hi >> 63;
  1808. uint64_t ret_mantissa = x_hi >> (msb + 9);
  1809. ret_exp2 -= 1 ^ msb;
  1810. // IEEE 754 rounds to-nearest with ties rounded to-even. Rounding to-even can
  1811. // be tricky. If we're half-way between two exactly representable numbers
  1812. // (x's low 73 bits are zero and the next 2 bits that matter are "01"), give
  1813. // up instead of trying to pick the winner.
  1814. //
  1815. // Technically, we could tighten the condition by changing "73" to "73 or 74,
  1816. // depending on msb", but a flat "73" is simpler.
  1817. //
  1818. // For example, parsing "1e+23" will take the if-true branch here, since:
  1819. // - x_hi = 0x54B40B1F852BDA00
  1820. // - ret_mantissa = 0x002A5A058FC295ED
  1821. if ((x_lo == 0) && ((x_hi & 0x1FF) == 0) && ((ret_mantissa & 3) == 1)) {
  1822. return -1;
  1823. }
  1824. // If we're not halfway then it's rounding to-nearest. Starting with a 54-bit
  1825. // number, carry the lowest bit (bit 0) up if it's on. Regardless of whether
  1826. // it was on or off, shifting right by one then produces a 53-bit number. If
  1827. // carrying up overflowed, shift again.
  1828. ret_mantissa += ret_mantissa & 1;
  1829. ret_mantissa >>= 1;
  1830. // This if block is equivalent to (but benchmarks slightly faster than) the
  1831. // following branchless form:
  1832. // uint64_t overflow_adjustment = ret_mantissa >> 53;
  1833. // ret_mantissa >>= overflow_adjustment;
  1834. // ret_exp2 += overflow_adjustment;
  1835. //
  1836. // For example, parsing "7.2057594037927933e+16" will take the if-true
  1837. // branch here, since:
  1838. // - x_hi = 0x7FFFFFFFFFFFFE80
  1839. // - ret_mantissa = 0x0020000000000000
  1840. if ((ret_mantissa >> 53) > 0) {
  1841. ret_mantissa >>= 1;
  1842. ret_exp2++;
  1843. }
  1844. // Starting with a 53-bit number, IEEE 754 double-precision normal numbers
  1845. // have an implicit mantissa bit. Mask that away and keep the low 52 bits.
  1846. ret_mantissa &= 0x000FFFFFFFFFFFFF;
  1847. // Pack the bits and return.
  1848. return ((int64_t)(ret_mantissa | (ret_exp2 << 52)));
  1849. }
  1850. // --------
  1851. static wuffs_base__result_f64 //
  1852. wuffs_private_impl__parse_number_f64_special(wuffs_base__slice_u8 s,
  1853. uint32_t options) {
  1854. do {
  1855. if (options & WUFFS_BASE__PARSE_NUMBER_FXX__REJECT_INF_AND_NAN) {
  1856. goto fail;
  1857. }
  1858. uint8_t* p = s.ptr;
  1859. uint8_t* q = s.ptr + s.len;
  1860. for (; (p < q) && (*p == '_'); p++) {
  1861. }
  1862. if (p >= q) {
  1863. goto fail;
  1864. }
  1865. // Parse sign.
  1866. bool negative = false;
  1867. do {
  1868. if (*p == '+') {
  1869. p++;
  1870. } else if (*p == '-') {
  1871. negative = true;
  1872. p++;
  1873. } else {
  1874. break;
  1875. }
  1876. for (; (p < q) && (*p == '_'); p++) {
  1877. }
  1878. } while (0);
  1879. if (p >= q) {
  1880. goto fail;
  1881. }
  1882. bool nan = false;
  1883. switch (p[0]) {
  1884. case 'I':
  1885. case 'i':
  1886. if (((q - p) < 3) || //
  1887. ((p[1] != 'N') && (p[1] != 'n')) || //
  1888. ((p[2] != 'F') && (p[2] != 'f'))) {
  1889. goto fail;
  1890. }
  1891. p += 3;
  1892. if ((p >= q) || (*p == '_')) {
  1893. break;
  1894. } else if (((q - p) < 5) || //
  1895. ((p[0] != 'I') && (p[0] != 'i')) || //
  1896. ((p[1] != 'N') && (p[1] != 'n')) || //
  1897. ((p[2] != 'I') && (p[2] != 'i')) || //
  1898. ((p[3] != 'T') && (p[3] != 't')) || //
  1899. ((p[4] != 'Y') && (p[4] != 'y'))) {
  1900. goto fail;
  1901. }
  1902. p += 5;
  1903. if ((p >= q) || (*p == '_')) {
  1904. break;
  1905. }
  1906. goto fail;
  1907. case 'N':
  1908. case 'n':
  1909. if (((q - p) < 3) || //
  1910. ((p[1] != 'A') && (p[1] != 'a')) || //
  1911. ((p[2] != 'N') && (p[2] != 'n'))) {
  1912. goto fail;
  1913. }
  1914. p += 3;
  1915. if ((p >= q) || (*p == '_')) {
  1916. nan = true;
  1917. break;
  1918. }
  1919. goto fail;
  1920. default:
  1921. goto fail;
  1922. }
  1923. // Finish.
  1924. for (; (p < q) && (*p == '_'); p++) {
  1925. }
  1926. if (p != q) {
  1927. goto fail;
  1928. }
  1929. wuffs_base__result_f64 ret;
  1930. ret.status.repr = NULL;
  1931. ret.value = wuffs_base__ieee_754_bit_representation__from_u64_to_f64(
  1932. (nan ? 0x7FFFFFFFFFFFFFFF : 0x7FF0000000000000) |
  1933. (negative ? 0x8000000000000000 : 0));
  1934. return ret;
  1935. } while (0);
  1936. fail:
  1937. do {
  1938. wuffs_base__result_f64 ret;
  1939. ret.status.repr = wuffs_base__error__bad_argument;
  1940. ret.value = 0;
  1941. return ret;
  1942. } while (0);
  1943. }
  1944. WUFFS_BASE__MAYBE_STATIC wuffs_base__result_f64 //
  1945. wuffs_private_impl__high_prec_dec__to_f64(wuffs_private_impl__high_prec_dec* h,
  1946. uint32_t options) {
  1947. do {
  1948. // powers converts decimal powers of 10 to binary powers of 2. For example,
  1949. // (10000 >> 13) is 1. It stops before the elements exceed 60, also known
  1950. // as WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL.
  1951. //
  1952. // This rounds down (1<<13 is a lower bound for 1e4). Adding 1 to the array
  1953. // element value rounds up (1<<14 is an upper bound for 1e4) while staying
  1954. // at or below WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL.
  1955. //
  1956. // When starting in the range [1e+1 .. 1e+2] (i.e. h->decimal_point == +2),
  1957. // powers[2] == 6 and so:
  1958. // - Right shifting by 6+0 produces the range [10/64 .. 100/64] =
  1959. // [0.156250 .. 1.56250]. The resultant h->decimal_point is +0 or +1.
  1960. // - Right shifting by 6+1 produces the range [10/128 .. 100/128] =
  1961. // [0.078125 .. 0.78125]. The resultant h->decimal_point is -1 or -0.
  1962. //
  1963. // When starting in the range [1e-3 .. 1e-2] (i.e. h->decimal_point == -2),
  1964. // powers[2] == 6 and so:
  1965. // - Left shifting by 6+0 produces the range [0.001*64 .. 0.01*64] =
  1966. // [0.064 .. 0.64]. The resultant h->decimal_point is -1 or -0.
  1967. // - Left shifting by 6+1 produces the range [0.001*128 .. 0.01*128] =
  1968. // [0.128 .. 1.28]. The resultant h->decimal_point is +0 or +1.
  1969. //
  1970. // Thus, when targeting h->decimal_point being +0 or +1, use (powers[n]+0)
  1971. // when right shifting but (powers[n]+1) when left shifting.
  1972. static const uint32_t num_powers = 19;
  1973. static const uint8_t powers[19] = {
  1974. 0, 3, 6, 9, 13, 16, 19, 23, 26, 29, //
  1975. 33, 36, 39, 43, 46, 49, 53, 56, 59, //
  1976. };
  1977. // Handle zero and obvious extremes. The largest and smallest positive
  1978. // finite f64 values are approximately 1.8e+308 and 4.9e-324.
  1979. if ((h->num_digits == 0) || (h->decimal_point < -326)) {
  1980. goto zero;
  1981. } else if (h->decimal_point > 310) {
  1982. goto infinity;
  1983. }
  1984. // Try the fast Eisel-Lemire algorithm again. Calculating the (man, exp10)
  1985. // pair from the high_prec_dec h is more correct but slower than the
  1986. // approach taken in wuffs_base__parse_number_f64. The latter is optimized
  1987. // for the common cases (e.g. assuming no underscores or a leading '+'
  1988. // sign) rather than the full set of cases allowed by the Wuffs API.
  1989. //
  1990. // When we have 19 or fewer mantissa digits, run Eisel-Lemire once (trying
  1991. // for an exact result). When we have more than 19 mantissa digits, run it
  1992. // twice to get a lower and upper bound. We still have an exact result
  1993. // (within f64's rounding margin) if both bounds are equal (and valid).
  1994. uint32_t i_max = h->num_digits;
  1995. if (i_max > 19) {
  1996. i_max = 19;
  1997. }
  1998. int32_t exp10 = h->decimal_point - ((int32_t)i_max);
  1999. if ((-307 <= exp10) && (exp10 <= 288)) {
  2000. uint64_t man = 0;
  2001. uint32_t i;
  2002. for (i = 0; i < i_max; i++) {
  2003. man = (10 * man) + h->digits[i];
  2004. }
  2005. while (man != 0) { // The 'while' is just an 'if' that we can 'break'.
  2006. int64_t r0 =
  2007. wuffs_private_impl__parse_number_f64_eisel_lemire(man + 0, exp10);
  2008. if (r0 < 0) {
  2009. break;
  2010. } else if (h->num_digits > 19) {
  2011. int64_t r1 =
  2012. wuffs_private_impl__parse_number_f64_eisel_lemire(man + 1, exp10);
  2013. if (r1 != r0) {
  2014. break;
  2015. }
  2016. }
  2017. wuffs_base__result_f64 ret;
  2018. ret.status.repr = NULL;
  2019. ret.value = wuffs_base__ieee_754_bit_representation__from_u64_to_f64(
  2020. ((uint64_t)r0) | (((uint64_t)(h->negative)) << 63));
  2021. return ret;
  2022. }
  2023. }
  2024. // When Eisel-Lemire fails, fall back to Simple Decimal Conversion. See
  2025. // https://nigeltao.github.io/blog/2020/parse-number-f64-simple.html
  2026. //
  2027. // Scale by powers of 2 until we're in the range [0.1 .. 10]. Equivalently,
  2028. // that h->decimal_point is +0 or +1.
  2029. //
  2030. // First we shift right while at or above 10...
  2031. const int32_t f64_bias = -1023;
  2032. int32_t exp2 = 0;
  2033. while (h->decimal_point > 1) {
  2034. uint32_t n = (uint32_t)(+h->decimal_point);
  2035. uint32_t shift = (n < num_powers)
  2036. ? powers[n]
  2037. : WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL;
  2038. wuffs_private_impl__high_prec_dec__small_rshift(h, shift);
  2039. if (h->decimal_point < -WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE) {
  2040. goto zero;
  2041. }
  2042. exp2 += (int32_t)shift;
  2043. }
  2044. // ...then we shift left while below 0.1.
  2045. while (h->decimal_point < 0) {
  2046. uint32_t shift;
  2047. uint32_t n = (uint32_t)(-h->decimal_point);
  2048. shift = (n < num_powers)
  2049. // The +1 is per "when targeting h->decimal_point being +0 or
  2050. // +1... when left shifting" in the powers comment above.
  2051. ? (powers[n] + 1u)
  2052. : WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL;
  2053. wuffs_private_impl__high_prec_dec__small_lshift(h, shift);
  2054. if (h->decimal_point > +WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE) {
  2055. goto infinity;
  2056. }
  2057. exp2 -= (int32_t)shift;
  2058. }
  2059. // To get from "in the range [0.1 .. 10]" to "in the range [1 .. 2]" (which
  2060. // will give us our exponent in base-2), the mantissa's first 3 digits will
  2061. // determine the final left shift, equal to 52 (the number of explicit f64
  2062. // bits) plus an additional adjustment.
  2063. int man3 = (100 * h->digits[0]) +
  2064. ((h->num_digits > 1) ? (10 * h->digits[1]) : 0) +
  2065. ((h->num_digits > 2) ? h->digits[2] : 0);
  2066. int32_t additional_lshift = 0;
  2067. if (h->decimal_point == 0) { // The value is in [0.1 .. 1].
  2068. if (man3 < 125) {
  2069. additional_lshift = +4;
  2070. } else if (man3 < 250) {
  2071. additional_lshift = +3;
  2072. } else if (man3 < 500) {
  2073. additional_lshift = +2;
  2074. } else {
  2075. additional_lshift = +1;
  2076. }
  2077. } else { // The value is in [1 .. 10].
  2078. if (man3 < 200) {
  2079. additional_lshift = -0;
  2080. } else if (man3 < 400) {
  2081. additional_lshift = -1;
  2082. } else if (man3 < 800) {
  2083. additional_lshift = -2;
  2084. } else {
  2085. additional_lshift = -3;
  2086. }
  2087. }
  2088. exp2 -= additional_lshift;
  2089. uint32_t final_lshift = (uint32_t)(52 + additional_lshift);
  2090. // The minimum normal exponent is (f64_bias + 1).
  2091. while ((f64_bias + 1) > exp2) {
  2092. uint32_t n = (uint32_t)((f64_bias + 1) - exp2);
  2093. if (n > WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL) {
  2094. n = WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL;
  2095. }
  2096. wuffs_private_impl__high_prec_dec__small_rshift(h, n);
  2097. exp2 += (int32_t)n;
  2098. }
  2099. // Check for overflow.
  2100. if ((exp2 - f64_bias) >= 0x07FF) { // (1 << 11) - 1.
  2101. goto infinity;
  2102. }
  2103. // Extract 53 bits for the mantissa (in base-2).
  2104. wuffs_private_impl__high_prec_dec__small_lshift(h, final_lshift);
  2105. uint64_t man2 = wuffs_private_impl__high_prec_dec__rounded_integer(h);
  2106. // Rounding might have added one bit. If so, shift and re-check overflow.
  2107. if ((man2 >> 53) != 0) {
  2108. man2 >>= 1;
  2109. exp2++;
  2110. if ((exp2 - f64_bias) >= 0x07FF) { // (1 << 11) - 1.
  2111. goto infinity;
  2112. }
  2113. }
  2114. // Handle subnormal numbers.
  2115. if ((man2 >> 52) == 0) {
  2116. exp2 = f64_bias;
  2117. }
  2118. // Pack the bits and return.
  2119. uint64_t exp2_bits =
  2120. (uint64_t)((exp2 - f64_bias) & 0x07FF); // (1 << 11) - 1.
  2121. uint64_t bits = (man2 & 0x000FFFFFFFFFFFFF) | // (1 << 52) - 1.
  2122. (exp2_bits << 52) | //
  2123. (h->negative ? 0x8000000000000000 : 0); // (1 << 63).
  2124. wuffs_base__result_f64 ret;
  2125. ret.status.repr = NULL;
  2126. ret.value = wuffs_base__ieee_754_bit_representation__from_u64_to_f64(bits);
  2127. return ret;
  2128. } while (0);
  2129. zero:
  2130. do {
  2131. uint64_t bits = h->negative ? 0x8000000000000000 : 0;
  2132. wuffs_base__result_f64 ret;
  2133. ret.status.repr = NULL;
  2134. ret.value = wuffs_base__ieee_754_bit_representation__from_u64_to_f64(bits);
  2135. return ret;
  2136. } while (0);
  2137. infinity:
  2138. do {
  2139. if (options & WUFFS_BASE__PARSE_NUMBER_FXX__REJECT_INF_AND_NAN) {
  2140. wuffs_base__result_f64 ret;
  2141. ret.status.repr = wuffs_base__error__bad_argument;
  2142. ret.value = 0;
  2143. return ret;
  2144. }
  2145. uint64_t bits = h->negative ? 0xFFF0000000000000 : 0x7FF0000000000000;
  2146. wuffs_base__result_f64 ret;
  2147. ret.status.repr = NULL;
  2148. ret.value = wuffs_base__ieee_754_bit_representation__from_u64_to_f64(bits);
  2149. return ret;
  2150. } while (0);
  2151. }
  2152. static inline bool //
  2153. wuffs_private_impl__is_decimal_digit(uint8_t c) {
  2154. return ('0' <= c) && (c <= '9');
  2155. }
  2156. WUFFS_BASE__MAYBE_STATIC wuffs_base__result_f64 //
  2157. wuffs_base__parse_number_f64(wuffs_base__slice_u8 s, uint32_t options) {
  2158. // In practice, almost all "dd.ddddE±xxx" numbers can be represented
  2159. // losslessly by a uint64_t mantissa "dddddd" and an int32_t base-10
  2160. // exponent, adjusting "xxx" for the position (if present) of the decimal
  2161. // separator '.' or ','.
  2162. //
  2163. // This (u64 man, i32 exp10) data structure is superficially similar to the
  2164. // "Do It Yourself Floating Point" type from Loitsch (†), but the exponent
  2165. // here is base-10, not base-2.
  2166. //
  2167. // If s's number fits in a (man, exp10), parse that pair with the
  2168. // Eisel-Lemire algorithm. If not, or if Eisel-Lemire fails, parsing s with
  2169. // the fallback algorithm is slower but comprehensive.
  2170. //
  2171. // † "Printing Floating-Point Numbers Quickly and Accurately with Integers"
  2172. // (https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf).
  2173. // Florian Loitsch is also the primary contributor to
  2174. // https://github.com/google/double-conversion
  2175. do {
  2176. // Calculating that (man, exp10) pair needs to stay within s's bounds.
  2177. // Provided that s isn't extremely long, work on a NUL-terminated copy of
  2178. // s's contents. The NUL byte isn't a valid part of "±dd.ddddE±xxx".
  2179. //
  2180. // As the pointer p walks the contents, it's faster to repeatedly check "is
  2181. // *p a valid digit" than "is p within bounds and *p a valid digit".
  2182. if (s.len >= 256) {
  2183. goto fallback;
  2184. }
  2185. uint8_t z[256];
  2186. memcpy(&z[0], s.ptr, s.len);
  2187. z[s.len] = 0;
  2188. const uint8_t* p = &z[0];
  2189. // Look for a leading minus sign. Technically, we could also look for an
  2190. // optional plus sign, but the "script/process-json-numbers.c with -p"
  2191. // benchmark is noticably slower if we do. It's optional and, in practice,
  2192. // usually absent. Let the fallback catch it.
  2193. bool negative = (*p == '-');
  2194. if (negative) {
  2195. p++;
  2196. }
  2197. // After walking "dd.dddd", comparing p later with p now will produce the
  2198. // number of "d"s and "."s.
  2199. const uint8_t* const start_of_digits_ptr = p;
  2200. // Walk the "d"s before a '.', 'E', NUL byte, etc. If it starts with '0',
  2201. // it must be a single '0'. If it starts with a non-zero decimal digit, it
  2202. // can be a sequence of decimal digits.
  2203. //
  2204. // Update the man variable during the walk. It's OK if man overflows now.
  2205. // We'll detect that later.
  2206. uint64_t man;
  2207. if (*p == '0') {
  2208. man = 0;
  2209. p++;
  2210. if (wuffs_private_impl__is_decimal_digit(*p)) {
  2211. goto fallback;
  2212. }
  2213. } else if (wuffs_private_impl__is_decimal_digit(*p)) {
  2214. man = ((uint8_t)(*p - '0'));
  2215. p++;
  2216. for (; wuffs_private_impl__is_decimal_digit(*p); p++) {
  2217. man = (10 * man) + ((uint8_t)(*p - '0'));
  2218. }
  2219. } else {
  2220. goto fallback;
  2221. }
  2222. // Walk the "d"s after the optional decimal separator ('.' or ','),
  2223. // updating the man and exp10 variables.
  2224. int32_t exp10 = 0;
  2225. if (*p ==
  2226. ((options & WUFFS_BASE__PARSE_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA)
  2227. ? ','
  2228. : '.')) {
  2229. p++;
  2230. const uint8_t* first_after_separator_ptr = p;
  2231. if (!wuffs_private_impl__is_decimal_digit(*p)) {
  2232. goto fallback;
  2233. }
  2234. man = (10 * man) + ((uint8_t)(*p - '0'));
  2235. p++;
  2236. for (; wuffs_private_impl__is_decimal_digit(*p); p++) {
  2237. man = (10 * man) + ((uint8_t)(*p - '0'));
  2238. }
  2239. exp10 = ((int32_t)(first_after_separator_ptr - p));
  2240. }
  2241. // Count the number of digits:
  2242. // - for an input of "314159", digit_count is 6.
  2243. // - for an input of "3.14159", digit_count is 7.
  2244. //
  2245. // This is off-by-one if there is a decimal separator. That's OK for now.
  2246. // We'll correct for that later. The "script/process-json-numbers.c with
  2247. // -p" benchmark is noticably slower if we try to correct for that now.
  2248. uint32_t digit_count = (uint32_t)(p - start_of_digits_ptr);
  2249. // Update exp10 for the optional exponent, starting with 'E' or 'e'.
  2250. if ((*p | 0x20) == 'e') {
  2251. p++;
  2252. int32_t exp_sign = +1;
  2253. if (*p == '-') {
  2254. p++;
  2255. exp_sign = -1;
  2256. } else if (*p == '+') {
  2257. p++;
  2258. }
  2259. if (!wuffs_private_impl__is_decimal_digit(*p)) {
  2260. goto fallback;
  2261. }
  2262. int32_t exp_num = ((uint8_t)(*p - '0'));
  2263. p++;
  2264. // The rest of the exp_num walking has a peculiar control flow but, once
  2265. // again, the "script/process-json-numbers.c with -p" benchmark is
  2266. // sensitive to alternative formulations.
  2267. if (wuffs_private_impl__is_decimal_digit(*p)) {
  2268. exp_num = (10 * exp_num) + ((uint8_t)(*p - '0'));
  2269. p++;
  2270. }
  2271. if (wuffs_private_impl__is_decimal_digit(*p)) {
  2272. exp_num = (10 * exp_num) + ((uint8_t)(*p - '0'));
  2273. p++;
  2274. }
  2275. while (wuffs_private_impl__is_decimal_digit(*p)) {
  2276. if (exp_num > 0x1000000) {
  2277. goto fallback;
  2278. }
  2279. exp_num = (10 * exp_num) + ((uint8_t)(*p - '0'));
  2280. p++;
  2281. }
  2282. exp10 += exp_sign * exp_num;
  2283. }
  2284. // The Wuffs API is that the original slice has no trailing data. It also
  2285. // allows underscores, which we don't catch here but the fallback should.
  2286. if (p != &z[s.len]) {
  2287. goto fallback;
  2288. }
  2289. // Check that the uint64_t typed man variable has not overflowed, based on
  2290. // digit_count.
  2291. //
  2292. // For reference:
  2293. // - (1 << 63) is 9223372036854775808, which has 19 decimal digits.
  2294. // - (1 << 64) is 18446744073709551616, which has 20 decimal digits.
  2295. // - 19 nines, 9999999999999999999, is 0x8AC7230489E7FFFF, which has 64
  2296. // bits and 16 hexadecimal digits.
  2297. // - 20 nines, 99999999999999999999, is 0x56BC75E2D630FFFFF, which has 67
  2298. // bits and 17 hexadecimal digits.
  2299. if (digit_count > 19) {
  2300. // Even if we have more than 19 pseudo-digits, it's not yet definitely an
  2301. // overflow. Recall that digit_count might be off-by-one (too large) if
  2302. // there's a decimal separator. It will also over-report the number of
  2303. // meaningful digits if the input looks something like "0.000dddExxx".
  2304. //
  2305. // We adjust by the number of leading '0's and '.'s and re-compare to 19.
  2306. // Once again, technically, we could skip ','s too, but that perturbs the
  2307. // "script/process-json-numbers.c with -p" benchmark.
  2308. const uint8_t* q = start_of_digits_ptr;
  2309. for (; (*q == '0') || (*q == '.'); q++) {
  2310. }
  2311. digit_count -= (uint32_t)(q - start_of_digits_ptr);
  2312. if (digit_count > 19) {
  2313. goto fallback;
  2314. }
  2315. }
  2316. // The wuffs_private_impl__parse_number_f64_eisel_lemire preconditions
  2317. // include that exp10 is in the range [-307 ..= 288].
  2318. if ((exp10 < -307) || (288 < exp10)) {
  2319. goto fallback;
  2320. }
  2321. #if PK_FLOATCONV_HAS_EXACT_DOUBLE_ARITHMETIC // [pocketpy] Deviation 4.
  2322. // If both man and (10 ** exp10) are exactly representable by a double, we
  2323. // don't need to run the Eisel-Lemire algorithm.
  2324. if ((-22 <= exp10) && (exp10 <= 22) && ((man >> 53) == 0)) {
  2325. double d = (double)man;
  2326. if (exp10 >= 0) {
  2327. d *= wuffs_private_impl__f64_powers_of_10[+exp10];
  2328. } else {
  2329. d /= wuffs_private_impl__f64_powers_of_10[-exp10];
  2330. }
  2331. wuffs_base__result_f64 ret;
  2332. ret.status.repr = NULL;
  2333. ret.value = negative ? -d : +d;
  2334. return ret;
  2335. }
  2336. #endif
  2337. // The wuffs_private_impl__parse_number_f64_eisel_lemire preconditions
  2338. // include that man is non-zero. Parsing "0" should be caught by the "If
  2339. // both man and (10 ** exp10)" above, but "0e99" might not.
  2340. if (man == 0) {
  2341. goto fallback;
  2342. }
  2343. // Our man and exp10 are in range. Run the Eisel-Lemire algorithm.
  2344. int64_t r = wuffs_private_impl__parse_number_f64_eisel_lemire(man, exp10);
  2345. if (r < 0) {
  2346. goto fallback;
  2347. }
  2348. wuffs_base__result_f64 ret;
  2349. ret.status.repr = NULL;
  2350. ret.value = wuffs_base__ieee_754_bit_representation__from_u64_to_f64(
  2351. ((uint64_t)r) | (((uint64_t)negative) << 63));
  2352. return ret;
  2353. } while (0);
  2354. fallback:
  2355. do {
  2356. wuffs_private_impl__high_prec_dec h;
  2357. wuffs_base__status status =
  2358. wuffs_private_impl__high_prec_dec__parse(&h, s, options);
  2359. if (status.repr) {
  2360. return wuffs_private_impl__parse_number_f64_special(s, options);
  2361. }
  2362. return wuffs_private_impl__high_prec_dec__to_f64(&h, options);
  2363. } while (0);
  2364. }
  2365. // --------
  2366. static inline size_t //
  2367. wuffs_private_impl__render_inf(wuffs_base__slice_u8 dst,
  2368. bool neg,
  2369. uint32_t options) {
  2370. if (neg) {
  2371. if (dst.len < 4) {
  2372. return 0;
  2373. }
  2374. wuffs_base__poke_u32le__no_bounds_check(dst.ptr, 0x666E492D); // '-Inf'le.
  2375. return 4;
  2376. }
  2377. if (options & WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN) {
  2378. if (dst.len < 4) {
  2379. return 0;
  2380. }
  2381. wuffs_base__poke_u32le__no_bounds_check(dst.ptr, 0x666E492B); // '+Inf'le.
  2382. return 4;
  2383. }
  2384. if (dst.len < 3) {
  2385. return 0;
  2386. }
  2387. wuffs_base__poke_u24le__no_bounds_check(dst.ptr, 0x666E49); // 'Inf'le.
  2388. return 3;
  2389. }
  2390. static inline size_t //
  2391. wuffs_private_impl__render_nan(wuffs_base__slice_u8 dst) {
  2392. if (dst.len < 3) {
  2393. return 0;
  2394. }
  2395. wuffs_base__poke_u24le__no_bounds_check(dst.ptr, 0x4E614E); // 'NaN'le.
  2396. return 3;
  2397. }
  2398. static size_t //
  2399. wuffs_private_impl__high_prec_dec__render_exponent_absent(
  2400. wuffs_base__slice_u8 dst,
  2401. wuffs_private_impl__high_prec_dec* h,
  2402. uint32_t precision,
  2403. uint32_t options) {
  2404. size_t n = (h->negative ||
  2405. (options & WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN))
  2406. ? 1
  2407. : 0;
  2408. if (h->decimal_point <= 0) {
  2409. n += 1;
  2410. } else {
  2411. n += (size_t)(h->decimal_point);
  2412. }
  2413. if (precision > 0) {
  2414. n += precision + 1; // +1 for the '.'.
  2415. }
  2416. // Don't modify dst if the formatted number won't fit.
  2417. if (n > dst.len) {
  2418. return 0;
  2419. }
  2420. // Align-left or align-right.
  2421. uint8_t* ptr = (options & WUFFS_BASE__RENDER_NUMBER_XXX__ALIGN_RIGHT)
  2422. ? &dst.ptr[dst.len - n]
  2423. : &dst.ptr[0];
  2424. // Leading "±".
  2425. if (h->negative) {
  2426. *ptr++ = '-';
  2427. } else if (options & WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN) {
  2428. *ptr++ = '+';
  2429. }
  2430. // Integral digits.
  2431. if (h->decimal_point <= 0) {
  2432. *ptr++ = '0';
  2433. } else {
  2434. uint32_t m =
  2435. wuffs_base__u32__min(h->num_digits, (uint32_t)(h->decimal_point));
  2436. uint32_t i = 0;
  2437. for (; i < m; i++) {
  2438. *ptr++ = (uint8_t)('0' | h->digits[i]);
  2439. }
  2440. for (; i < (uint32_t)(h->decimal_point); i++) {
  2441. *ptr++ = '0';
  2442. }
  2443. }
  2444. // Separator and then fractional digits.
  2445. if (precision > 0) {
  2446. *ptr++ =
  2447. (options & WUFFS_BASE__RENDER_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA)
  2448. ? ','
  2449. : '.';
  2450. uint32_t i = 0;
  2451. for (; i < precision; i++) {
  2452. uint32_t j = ((uint32_t)(h->decimal_point)) + i;
  2453. *ptr++ = (uint8_t)('0' | ((j < h->num_digits) ? h->digits[j] : 0));
  2454. }
  2455. }
  2456. return n;
  2457. }
  2458. static size_t //
  2459. wuffs_private_impl__high_prec_dec__render_exponent_present(
  2460. wuffs_base__slice_u8 dst,
  2461. wuffs_private_impl__high_prec_dec* h,
  2462. uint32_t precision,
  2463. uint32_t options) {
  2464. int32_t exp = 0;
  2465. if (h->num_digits > 0) {
  2466. exp = h->decimal_point - 1;
  2467. }
  2468. bool negative_exp = exp < 0;
  2469. if (negative_exp) {
  2470. exp = -exp;
  2471. }
  2472. size_t n = (h->negative ||
  2473. (options & WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN))
  2474. ? 4
  2475. : 3; // Mininum 3 bytes: first digit and then "e±".
  2476. if (precision > 0) {
  2477. n += precision + 1; // +1 for the '.'.
  2478. }
  2479. n += (exp < 100) ? 2 : 3;
  2480. // Don't modify dst if the formatted number won't fit.
  2481. if (n > dst.len) {
  2482. return 0;
  2483. }
  2484. // Align-left or align-right.
  2485. uint8_t* ptr = (options & WUFFS_BASE__RENDER_NUMBER_XXX__ALIGN_RIGHT)
  2486. ? &dst.ptr[dst.len - n]
  2487. : &dst.ptr[0];
  2488. // Leading "±".
  2489. if (h->negative) {
  2490. *ptr++ = '-';
  2491. } else if (options & WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN) {
  2492. *ptr++ = '+';
  2493. }
  2494. // Integral digit.
  2495. if (h->num_digits > 0) {
  2496. *ptr++ = (uint8_t)('0' | h->digits[0]);
  2497. } else {
  2498. *ptr++ = '0';
  2499. }
  2500. // Separator and then fractional digits.
  2501. if (precision > 0) {
  2502. *ptr++ =
  2503. (options & WUFFS_BASE__RENDER_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA)
  2504. ? ','
  2505. : '.';
  2506. uint32_t i = 1;
  2507. uint32_t j = wuffs_base__u32__min(h->num_digits, precision + 1);
  2508. for (; i < j; i++) {
  2509. *ptr++ = (uint8_t)('0' | h->digits[i]);
  2510. }
  2511. for (; i <= precision; i++) {
  2512. *ptr++ = '0';
  2513. }
  2514. }
  2515. // Exponent: "e±" and then 2 or 3 digits.
  2516. *ptr++ = 'e';
  2517. *ptr++ = negative_exp ? '-' : '+';
  2518. if (exp < 10) {
  2519. *ptr++ = '0';
  2520. *ptr++ = (uint8_t)('0' | exp);
  2521. } else if (exp < 100) {
  2522. *ptr++ = (uint8_t)('0' | (exp / 10));
  2523. *ptr++ = (uint8_t)('0' | (exp % 10));
  2524. } else {
  2525. int32_t e = exp / 100;
  2526. exp -= e * 100;
  2527. *ptr++ = (uint8_t)('0' | e);
  2528. *ptr++ = (uint8_t)('0' | (exp / 10));
  2529. *ptr++ = (uint8_t)('0' | (exp % 10));
  2530. }
  2531. return n;
  2532. }
  2533. WUFFS_BASE__MAYBE_STATIC size_t //
  2534. wuffs_base__render_number_f64(wuffs_base__slice_u8 dst,
  2535. double x,
  2536. uint32_t precision,
  2537. uint32_t options) {
  2538. // Decompose x (64 bits) into negativity (1 bit), base-2 exponent (11 bits
  2539. // with a -1023 bias) and mantissa (52 bits).
  2540. uint64_t bits = wuffs_base__ieee_754_bit_representation__from_f64_to_u64(x);
  2541. bool neg = (bits >> 63) != 0;
  2542. int32_t exp2 = ((int32_t)(bits >> 52)) & 0x7FF;
  2543. uint64_t man = bits & 0x000FFFFFFFFFFFFFul;
  2544. // Apply the exponent bias and set the implicit top bit of the mantissa,
  2545. // unless x is subnormal. Also take care of Inf and NaN.
  2546. if (exp2 == 0x7FF) {
  2547. if (man != 0) {
  2548. return wuffs_private_impl__render_nan(dst);
  2549. }
  2550. return wuffs_private_impl__render_inf(dst, neg, options);
  2551. } else if (exp2 == 0) {
  2552. exp2 = -1022;
  2553. } else {
  2554. exp2 -= 1023;
  2555. man |= 0x0010000000000000ul;
  2556. }
  2557. // Ensure that precision isn't too large.
  2558. if (precision > 4095) {
  2559. precision = 4095;
  2560. }
  2561. // Convert from the (neg, exp2, man) tuple to an HPD.
  2562. wuffs_private_impl__high_prec_dec h;
  2563. wuffs_private_impl__high_prec_dec__assign(&h, man, neg);
  2564. if (h.num_digits > 0) {
  2565. wuffs_private_impl__high_prec_dec__lshift(&h,
  2566. exp2 - 52); // 52 mantissa bits.
  2567. }
  2568. // Handle the "%e" and "%f" formats.
  2569. switch (options & (WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_ABSENT |
  2570. WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_PRESENT)) {
  2571. case WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_ABSENT: // The "%"f" format.
  2572. if (options & WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION) {
  2573. wuffs_private_impl__high_prec_dec__round_just_enough(&h, exp2, man);
  2574. int32_t p = ((int32_t)(h.num_digits)) - h.decimal_point;
  2575. precision = ((uint32_t)(wuffs_base__i32__max(0, p)));
  2576. } else {
  2577. wuffs_private_impl__high_prec_dec__round_nearest(
  2578. &h, ((int32_t)precision) + h.decimal_point);
  2579. }
  2580. return wuffs_private_impl__high_prec_dec__render_exponent_absent(
  2581. dst, &h, precision, options);
  2582. case WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_PRESENT: // The "%e" format.
  2583. if (options & WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION) {
  2584. wuffs_private_impl__high_prec_dec__round_just_enough(&h, exp2, man);
  2585. precision = (h.num_digits > 0) ? (h.num_digits - 1) : 0;
  2586. } else {
  2587. wuffs_private_impl__high_prec_dec__round_nearest(
  2588. &h, ((int32_t)precision) + 1);
  2589. }
  2590. return wuffs_private_impl__high_prec_dec__render_exponent_present(
  2591. dst, &h, precision, options);
  2592. }
  2593. // We have the "%g" format and so precision means the number of significant
  2594. // digits, not the number of digits after the decimal separator. Perform
  2595. // rounding and determine whether to use "%e" or "%f".
  2596. int32_t e_threshold = 0;
  2597. if (options & WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION) {
  2598. wuffs_private_impl__high_prec_dec__round_just_enough(&h, exp2, man);
  2599. precision = h.num_digits;
  2600. e_threshold = PK_FLOATCONV_REPR_E_THRESHOLD; // [pocketpy] Deviation 3; was 6.
  2601. } else {
  2602. if (precision == 0) {
  2603. precision = 1;
  2604. }
  2605. wuffs_private_impl__high_prec_dec__round_nearest(&h, ((int32_t)precision));
  2606. e_threshold = ((int32_t)precision);
  2607. int32_t nd = ((int32_t)(h.num_digits));
  2608. if ((e_threshold > nd) && (nd >= h.decimal_point)) {
  2609. e_threshold = nd;
  2610. }
  2611. }
  2612. // Use the "%e" format if the exponent is large.
  2613. int32_t e = h.decimal_point - 1;
  2614. if ((e < -4) || (e_threshold <= e)) {
  2615. uint32_t p = wuffs_base__u32__min(precision, h.num_digits);
  2616. return wuffs_private_impl__high_prec_dec__render_exponent_present(
  2617. dst, &h, (p > 0) ? (p - 1) : 0, options);
  2618. }
  2619. // Use the "%f" format otherwise.
  2620. int32_t p = ((int32_t)precision);
  2621. if (p > h.decimal_point) {
  2622. p = ((int32_t)(h.num_digits));
  2623. }
  2624. precision = ((uint32_t)(wuffs_base__i32__max(0, p - h.decimal_point)));
  2625. return wuffs_private_impl__high_prec_dec__render_exponent_absent(
  2626. dst, &h, precision, options);
  2627. }
  2628. /* ---------------- [pocketpy] public API ----------------
  2629. *
  2630. * Parse options. Wuffs' defaults are stricter than C's `strtod`, so we opt
  2631. * back in to redundant leading zeroes: `float("007")` and the literal `00.7`
  2632. * both have to keep working.
  2633. *
  2634. * Underscores stay rejected. The lexer never puts one inside a number token,
  2635. * `float("1_0")` was already an error under `strtod`, and Wuffs' rule is looser
  2636. * than PEP 515's anyway (it would accept a leading `_`).
  2637. *
  2638. * Infinities and NaNs stay accepted, so `float("nan")` keeps working and
  2639. * `1e999` keeps overflowing to `inf` the way CPython does, rather than raising.
  2640. */
  2641. #define PK_FLOATCONV_PARSE_OPTIONS (WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_MULTIPLE_LEADING_ZEROES)
  2642. static bool pk_floatconv__is_digit(char c) { return ('0' <= c) && (c <= '9'); }
  2643. // Whether the NUL-terminated `p` starts with `word`, which must be lowercase
  2644. // ASCII. Case insensitive.
  2645. static bool pk_floatconv__starts_with(const char* p, const char* word) {
  2646. for(; *word != '\0'; word++, p++) {
  2647. if((*p | 0x20) != *word) return false;
  2648. }
  2649. return true;
  2650. }
  2651. bool c11__parse_f64(const char* data, int size, double* out) {
  2652. if(size <= 0) return false;
  2653. wuffs_base__slice_u8 s;
  2654. s.ptr = (uint8_t*)data; // The vendored parser only reads through this.
  2655. s.len = (size_t)size;
  2656. wuffs_base__result_f64 res = wuffs_base__parse_number_f64(s, PK_FLOATCONV_PARSE_OPTIONS);
  2657. if(res.status.repr != NULL) return false;
  2658. *out = res.value;
  2659. return true;
  2660. }
  2661. double strtod1(const char* s, char** p_end) {
  2662. const char* p = s;
  2663. // strtod() skips leading whitespace. Spelled out rather than via isspace()
  2664. // so that it cannot pick up a locale's extra space characters.
  2665. while(*p == ' ' || (*p >= '\t' && *p <= '\r'))
  2666. p++;
  2667. const char* start = p;
  2668. if(*p == '+' || *p == '-') p++;
  2669. // Find the longest prefix that c11__parse_f64 will accept. It only takes
  2670. // whole slices, so the scanning strtod() does implicitly happens here.
  2671. const char* end;
  2672. if((*p | 0x20) == 'i') {
  2673. if(!pk_floatconv__starts_with(p, "inf")) goto fail;
  2674. end = p + 3;
  2675. if(pk_floatconv__starts_with(end, "inity")) end += 5;
  2676. } else if((*p | 0x20) == 'n') {
  2677. if(!pk_floatconv__starts_with(p, "nan")) goto fail;
  2678. end = p + 3;
  2679. } else {
  2680. int digits = 0;
  2681. for(; pk_floatconv__is_digit(*p); p++)
  2682. digits++;
  2683. if(*p == '.') {
  2684. p++;
  2685. for(; pk_floatconv__is_digit(*p); p++)
  2686. digits++;
  2687. }
  2688. if(digits == 0) goto fail;
  2689. end = p;
  2690. // Like strtod(), only consume the exponent if it is well formed. In
  2691. // "1e+" the 'e' belongs to whatever comes after the number.
  2692. if((*p | 0x20) == 'e') {
  2693. const char* q = p + 1;
  2694. if(*q == '+' || *q == '-') q++;
  2695. if(pk_floatconv__is_digit(*q)) {
  2696. for(; pk_floatconv__is_digit(*q); q++) {}
  2697. end = q;
  2698. }
  2699. }
  2700. }
  2701. double out;
  2702. if(!c11__parse_f64(start, (int)(end - start), &out)) goto fail;
  2703. if(p_end != NULL) *p_end = (char*)end;
  2704. return out;
  2705. fail:
  2706. if(p_end != NULL) *p_end = (char*)s;
  2707. return 0.0;
  2708. }
  2709. int c11__f64_to_shortest(char* dst, int dst_size, double x) {
  2710. if(dst_size <= 0) return 0;
  2711. wuffs_base__slice_u8 s;
  2712. s.ptr = (uint8_t*)dst;
  2713. s.len = (size_t)dst_size;
  2714. // Neither EXPONENT_ABSENT nor EXPONENT_PRESENT means "%g", which with
  2715. // PK_FLOATCONV_REPR_E_THRESHOLD is CPython's repr() notation.
  2716. return (int)wuffs_base__render_number_f64(s, x, 0,
  2717. WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION);
  2718. }
  2719. int c11__f64_to_fixed(char* dst, int dst_size, double x, int precision) {
  2720. if(dst_size <= 0) return 0;
  2721. if(precision < 0) precision = 0;
  2722. if(precision > C11_F64_MAX_PRECISION) precision = C11_F64_MAX_PRECISION;
  2723. wuffs_base__slice_u8 s;
  2724. s.ptr = (uint8_t*)dst;
  2725. s.len = (size_t)dst_size;
  2726. return (int)wuffs_base__render_number_f64(s, x, (uint32_t)precision,
  2727. WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_ABSENT);
  2728. }
  2729. #undef WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_MULTIPLE_LEADING_ZEROES
  2730. #undef WUFFS_BASE__PARSE_NUMBER_XXX__ALLOW_UNDERSCORES
  2731. #undef WUFFS_PRIVATE_IMPL__HPD__DECIMAL_POINT__RANGE
  2732. #undef WUFFS_BASE__PARSE_NUMBER_XXX__DEFAULT_OPTIONS
  2733. #undef WUFFS_BASE__RENDER_NUMBER_XXX__DEFAULT_OPTIONS
  2734. #undef WUFFS_BASE__PARSE_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA
  2735. #undef WUFFS_PRIVATE_IMPL__HPD__DIGITS_PRECISION
  2736. #undef WUFFS_PRIVATE_IMPL__HPD__SHIFT__MAX_INCL
  2737. #undef WUFFS_BASE__RENDER_NUMBER_FXX__DECIMAL_SEPARATOR_IS_A_COMMA
  2738. #undef WUFFS_BASE__PARSE_NUMBER_FXX__REJECT_INF_AND_NAN
  2739. #undef WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_ABSENT
  2740. #undef PK_FLOATCONV_PARSE_OPTIONS
  2741. #undef WUFFS_BASE__RENDER_NUMBER_FXX__EXPONENT_PRESENT
  2742. #undef WUFFS_BASE__RENDER_NUMBER_XXX__ALIGN_RIGHT
  2743. #undef PK_FLOATCONV_REPR_E_THRESHOLD
  2744. #undef PK_FLOATCONV_HAS_EXACT_DOUBLE_ARITHMETIC
  2745. #undef WUFFS_BASE__MAYBE_STATIC
  2746. #undef WUFFS_BASE__RENDER_NUMBER_FXX__JUST_ENOUGH_PRECISION
  2747. #undef WUFFS_BASE__RENDER_NUMBER_XXX__LEADING_PLUS_SIGN