mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 20:13:31 +00:00
39bf41f4eb
- Python static hello world now 1.8mb - Python static fully loaded now 10mb - Python HTTPS client now uses MbedTLS - Python REPL now completes import stmts - Increase stack size for Python for now - Begin synthesizing posixpath and ntpath - Restore Python \N{UNICODE NAME} support - Restore Python NFKD symbol normalization - Add optimized code path for Intel SHA-NI - Get more Python unit tests passing faster - Get Python help() pagination working on NT - Python hashlib now supports MbedTLS PBKDF2 - Make memcpy/memmove/memcmp/bcmp/etc. faster - Add Mersenne Twister and Vigna to LIBC_RAND - Provide privileged __printf() for error code - Fix zipos opendir() so that it reports ENOTDIR - Add basic chmod() implementation for Windows NT - Add Cosmo's best functions to Python cosmo module - Pin function trace indent depth to that of caller - Show memory diagram on invalid access in MODE=dbg - Differentiate stack overflow on crash in MODE=dbg - Add stb_truetype and tools for analyzing font files - Upgrade to UNICODE 13 and reduce its binary footprint - COMPILE.COM now logs resource usage of build commands - Start implementing basic poll() support on bare metal - Set getauxval(AT_EXECFN) to GetModuleFileName() on NT - Add descriptions to strerror() in non-TINY build modes - Add COUNTBRANCH() macro to help with micro-optimizations - Make error / backtrace / asan / memory code more unbreakable - Add fast perfect C implementation of μ-Law and a-Law audio codecs - Make strtol() functions consistent with other libc implementations - Improve Linenoise implementation (see also github.com/jart/bestline) - COMPILE.COM now suppresses stdout/stderr of successful build commands
161 lines
5.4 KiB
C
161 lines
5.4 KiB
C
#ifndef BASEARITH_H
|
|
#define BASEARITH_H
|
|
#include "third_party/python/Modules/_decimal/libmpdec/mpdecimal.h"
|
|
#include "third_party/python/Modules/_decimal/libmpdec/typearith.h"
|
|
/* clang-format off */
|
|
|
|
/* Internal header file: all symbols have local scope in the DSO */
|
|
|
|
mpd_uint_t _mpd_baseadd(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v,
|
|
mpd_size_t m, mpd_size_t n);
|
|
void _mpd_baseaddto(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n);
|
|
mpd_uint_t _mpd_shortadd(mpd_uint_t *w, mpd_size_t m, mpd_uint_t v);
|
|
mpd_uint_t _mpd_shortadd_b(mpd_uint_t *w, mpd_size_t m, mpd_uint_t v,
|
|
mpd_uint_t b);
|
|
mpd_uint_t _mpd_baseincr(mpd_uint_t *u, mpd_size_t n);
|
|
void _mpd_basesub(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v,
|
|
mpd_size_t m, mpd_size_t n);
|
|
void _mpd_basesubfrom(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n);
|
|
void _mpd_basemul(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v,
|
|
mpd_size_t m, mpd_size_t n);
|
|
void _mpd_shortmul(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,
|
|
mpd_uint_t v);
|
|
mpd_uint_t _mpd_shortmul_c(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,
|
|
mpd_uint_t v);
|
|
mpd_uint_t _mpd_shortmul_b(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,
|
|
mpd_uint_t v, mpd_uint_t b);
|
|
mpd_uint_t _mpd_shortdiv(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,
|
|
mpd_uint_t v);
|
|
mpd_uint_t _mpd_shortdiv_b(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,
|
|
mpd_uint_t v, mpd_uint_t b);
|
|
int _mpd_basedivmod(mpd_uint_t *q, mpd_uint_t *r, const mpd_uint_t *uconst,
|
|
const mpd_uint_t *vconst, mpd_size_t nplusm, mpd_size_t n);
|
|
void _mpd_baseshiftl(mpd_uint_t *dest, mpd_uint_t *src, mpd_size_t n,
|
|
mpd_size_t m, mpd_size_t shift);
|
|
mpd_uint_t _mpd_baseshiftr(mpd_uint_t *dest, mpd_uint_t *src, mpd_size_t slen,
|
|
mpd_size_t shift);
|
|
|
|
extern const mpd_uint_t mprime_rdx;
|
|
|
|
/*
|
|
* Algorithm from: Division by Invariant Integers using Multiplication,
|
|
* T. Granlund and P. L. Montgomery, Proceedings of the SIGPLAN '94
|
|
* Conference on Programming Language Design and Implementation.
|
|
*
|
|
* http://gmplib.org/~tege/divcnst-pldi94.pdf
|
|
*
|
|
* Variables from the paper and their translations (See section 8):
|
|
*
|
|
* N := 64
|
|
* d := MPD_RADIX
|
|
* l := 64
|
|
* m' := floor((2**(64+64) - 1)/MPD_RADIX) - 2**64
|
|
*
|
|
* Since N-l == 0:
|
|
*
|
|
* dnorm := d
|
|
* n2 := hi
|
|
* n10 := lo
|
|
*
|
|
* ACL2 proof: mpd-div-words-r-correct
|
|
*/
|
|
static inline void
|
|
_mpd_div_words_r(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo)
|
|
{
|
|
mpd_uint_t n_adj, h, l, t;
|
|
mpd_uint_t n1_neg;
|
|
/* n1_neg = if lo >= 2**63 then MPD_UINT_MAX else 0 */
|
|
n1_neg = (lo & (1ULL<<63)) ? MPD_UINT_MAX : 0;
|
|
/* n_adj = if lo >= 2**63 then lo+MPD_RADIX else lo */
|
|
n_adj = lo + (n1_neg & MPD_RADIX);
|
|
/* (h, l) = if lo >= 2**63 then m'*(hi+1) else m'*hi */
|
|
_mpd_mul_words(&h, &l, mprime_rdx, hi-n1_neg);
|
|
l = l + n_adj;
|
|
if (l < n_adj) h++;
|
|
t = h + hi;
|
|
/* At this point t == qest, with q == qest or q == qest+1:
|
|
* 1) 0 <= 2**64*hi + lo - qest*MPD_RADIX < 2*MPD_RADIX
|
|
*/
|
|
/* t = 2**64-1 - qest = 2**64 - (qest+1) */
|
|
t = MPD_UINT_MAX - t;
|
|
/* (h, l) = 2**64*MPD_RADIX - (qest+1)*MPD_RADIX */
|
|
_mpd_mul_words(&h, &l, t, MPD_RADIX);
|
|
l = l + lo;
|
|
if (l < lo) h++;
|
|
h += hi;
|
|
h -= MPD_RADIX;
|
|
/* (h, l) = 2**64*hi + lo - (qest+1)*MPD_RADIX (mod 2**128)
|
|
* Case q == qest+1:
|
|
* a) h == 0, l == r
|
|
* b) q := h - t == qest+1
|
|
* c) r := l
|
|
* Case q == qest:
|
|
* a) h == MPD_UINT_MAX, l == 2**64-(MPD_RADIX-r)
|
|
* b) q := h - t == qest
|
|
* c) r := l + MPD_RADIX = r
|
|
*/
|
|
*q = (h - t);
|
|
*r = l + (MPD_RADIX & h);
|
|
}
|
|
|
|
/* Multiply two single base MPD_RADIX words, store result in array w[2]. */
|
|
static inline void
|
|
_mpd_singlemul(mpd_uint_t w[2], mpd_uint_t u, mpd_uint_t v)
|
|
{
|
|
mpd_uint_t hi, lo;
|
|
_mpd_mul_words(&hi, &lo, u, v);
|
|
_mpd_div_words_r(&w[1], &w[0], hi, lo);
|
|
}
|
|
|
|
/* Multiply u (len 2) and v (len m, 1 <= m <= 2). */
|
|
static inline void
|
|
_mpd_mul_2_le2(mpd_uint_t w[4], mpd_uint_t u[2], mpd_uint_t v[2], mpd_ssize_t m)
|
|
{
|
|
mpd_uint_t hi, lo;
|
|
_mpd_mul_words(&hi, &lo, u[0], v[0]);
|
|
_mpd_div_words_r(&w[1], &w[0], hi, lo);
|
|
_mpd_mul_words(&hi, &lo, u[1], v[0]);
|
|
lo = w[1] + lo;
|
|
if (lo < w[1]) hi++;
|
|
_mpd_div_words_r(&w[2], &w[1], hi, lo);
|
|
if (m == 1) return;
|
|
_mpd_mul_words(&hi, &lo, u[0], v[1]);
|
|
lo = w[1] + lo;
|
|
if (lo < w[1]) hi++;
|
|
_mpd_div_words_r(&w[3], &w[1], hi, lo);
|
|
_mpd_mul_words(&hi, &lo, u[1], v[1]);
|
|
lo = w[2] + lo;
|
|
if (lo < w[2]) hi++;
|
|
lo = w[3] + lo;
|
|
if (lo < w[3]) hi++;
|
|
_mpd_div_words_r(&w[3], &w[2], hi, lo);
|
|
}
|
|
|
|
/*
|
|
* Test if all words from data[len-1] to data[0] are zero. If len is 0, nothing
|
|
* is tested and the coefficient is regarded as "all zero".
|
|
*/
|
|
static inline int
|
|
_mpd_isallzero(const mpd_uint_t *data, mpd_ssize_t len)
|
|
{
|
|
while (--len >= 0) {
|
|
if (data[len] != 0) return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* Test if all full words from data[len-1] to data[0] are MPD_RADIX-1
|
|
* (all nines). Return true if len == 0.
|
|
*/
|
|
static inline int
|
|
_mpd_isallnine(const mpd_uint_t *data, mpd_ssize_t len)
|
|
{
|
|
while (--len >= 0) {
|
|
if (data[len] != MPD_RADIX-1) return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
#endif /* BASEARITH_H */
|