aboutsummaryrefslogtreecommitdiff
path: root/builtins/nums.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-17 19:35:35 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-17 19:35:35 -0500
commita09a8339e78923688440e6b303e49eb7c6a02b29 (patch)
tree951238393dea0b93ee43b0e0174cb130635ea32d /builtins/nums.c
parentd46925dbfa8627a6a874545630c2acb6975bfdea (diff)
Clean up builtins
Diffstat (limited to 'builtins/nums.c')
-rw-r--r--builtins/nums.c154
1 files changed, 154 insertions, 0 deletions
diff --git a/builtins/nums.c b/builtins/nums.c
new file mode 100644
index 00000000..bc0196cf
--- /dev/null
+++ b/builtins/nums.c
@@ -0,0 +1,154 @@
+#ifndef _GNU_SOURCE
+#define _GNU_SOURCE
+#endif
+#include <gc.h>
+#include <gc/cord.h>
+#include <math.h>
+#include <stdalign.h>
+#include <stdbool.h>
+#include <stdint.h>
+#include <stdlib.h>
+
+#include "../SipHash/halfsiphash.h"
+#include "array.h"
+#include "nums.h"
+#include "string.h"
+#include "types.h"
+
+public CORD Num__as_str(const double *f, bool colorize, const TypeInfo *type) {
+ (void)type;
+ if (!f) return "Num";
+ CORD c;
+ if (colorize) CORD_sprintf(&c, "\x1b[35m%g\x1b[33;2m\x1b[m", *f);
+ else CORD_sprintf(&c, "%g", *f);
+ return c;
+}
+
+public int32_t Num__compare(const double *x, const double *y, const TypeInfo *type) {
+ (void)type;
+ return (*x > *y) - (*x < *y);
+}
+
+public bool Num__equal(const double *x, const double *y, const TypeInfo *type) {
+ (void)type;
+ return *x == *y;
+}
+
+public CORD Num__format(double f, int64_t precision) {
+ return CORD_asprintf("%.*f", (int)precision, f);
+}
+
+public CORD Num__scientific(double f, int64_t precision) {
+ return CORD_asprintf("%.*e", (int)precision, f);
+}
+
+public double Num__mod(double num, double modulus) {
+ double result = fmod(num, modulus);
+ return (result < 0) != (modulus < 0) ? result + modulus : result;
+}
+
+public bool Num__isinf(double n) { return isinf(n); }
+public bool Num__finite(double n) { return finite(n); }
+public bool Num__isnan(double n) { return isnan(n); }
+
+public Num_namespace_t Num_type = {
+ .type=(TypeInfo){
+ .size=sizeof(double),
+ .align=alignof(double),
+ .tag=CustomInfo,
+ .CustomInfo={
+ .compare=(void*)Num__compare,
+ .equal=(void*)Num__equal,
+ .as_str=(void*)Num__as_str,
+ },
+ },
+ .NaN=NAN, ._2_sqrt_pi=M_2_SQRTPI, .e=M_E, .half_pi=M_PI_2, .inf=1./0., .inverse_half_pi=M_2_PI,
+ .inverse_pi=M_1_PI, .ln10=M_LN10, .ln2=M_LN2, .log2e=M_LOG2E, .pi=M_PI, .quarter_pi=M_PI_4,
+ .sqrt2=M_SQRT2, .sqrt_half=M_SQRT1_2, .tau=2.*M_PI,
+ .random=drand48,
+ .finite=Num__finite,
+ .isinf=Num__isinf,
+ .isnan=Num__isnan,
+ .atan2=atan2, .copysign=copysign, .dist=fdim, .hypot=hypot, .maxmag=fmaxmag, .minmag=fminmag,
+ .mod=Num__mod, .nextafter=nextafter, .pow=pow, .remainder=remainder,
+ .abs=fabs, .acos=acos, .acosh=acosh, .asin=asin, .asinh=asinh, .atan=atan, .atanh=atanh,
+ .cbrt=cbrt, .ceil=ceil, .cos=cos, .cosh=cosh, .erf=erf, .erfc=erfc, .exp=exp,
+ .exp10=exp10, .exp2=exp2, .expm1=expm1, .floor=floor, .j0=j0, .j1=j1, .log=log,
+ .log10=log10, .log1p=log1p, .log2=log2, .logb=logb, .nextdown=nextdown, .nextup=nextup,
+ .rint=rint, .round=round, .roundeven=roundeven, .significand=significand, .sin=sin,
+ .sinh=sinh, .sqrt=sqrt, .tan=tan, .tanh=tanh, .tgamma=tgamma, .trunc=trunc, .y0=y0, .y1=y1,
+ .format=Num__format,
+ .scientific=Num__scientific,
+};
+
+public CORD Num32__as_str(float *f, bool colorize, const TypeInfo *type) {
+ (void)type;
+ if (!f) return "Num32";
+ CORD c;
+ if (colorize) CORD_sprintf(&c, "\x1b[35m%g_f32\x1b[m", *f);
+ else CORD_sprintf(&c, "%g_f32", *f);
+ return c;
+}
+
+public int32_t Num32__compare(const float *x, const float *y, const TypeInfo *type) {
+ (void)type;
+ return (*x > *y) - (*x < *y);
+}
+
+public bool Num32__equal(const float *x, const float *y, const TypeInfo *type) {
+ (void)type;
+ return *x == *y;
+}
+
+public CORD Num32__format(float f, int64_t precision) {
+ return CORD_asprintf("%.*f", (int)precision, f);
+}
+
+public CORD Num32__scientific(float f, int64_t precision) {
+ return CORD_asprintf("%.*e", (int)precision, f);
+}
+
+public float Num32__mod(float num, float modulus) {
+ float result = fmodf(num, modulus);
+ return (result < 0) != (modulus < 0) ? result + modulus : result;
+}
+
+public float Num32__random(void) {
+ return (float)drand48();
+}
+
+public bool Num32__isinf(float n) { return isinf(n); }
+public bool Num32__finite(float n) { return finite(n); }
+public bool Num32__isnan(float n) { return isnan(n); }
+
+public Num32_namespace_t Num32_type = {
+ .type=(TypeInfo){
+ .size=sizeof(float),
+ .align=alignof(float),
+ .tag=CustomInfo,
+ .CustomInfo={
+ .compare=(void*)Num32__compare,
+ .equal=(void*)Num32__equal,
+ .as_str=(void*)Num32__as_str,
+ },
+ },
+ .NaN=NAN, ._2_sqrt_pi=M_2_SQRTPI, .e=M_E, .half_pi=M_PI_2, .inf=1./0., .inverse_half_pi=M_2_PI,
+ .inverse_pi=M_1_PI, .ln10=M_LN10, .ln2=M_LN2, .log2e=M_LOG2E, .pi=M_PI, .quarter_pi=M_PI_4,
+ .sqrt2=M_SQRT2, .sqrt_half=M_SQRT1_2, .tau=2.*M_PI,
+ .random=Num32__random,
+ .finite=Num32__finite,
+ .isinf=Num32__isinf,
+ .isnan=Num32__isnan,
+ .atan2=atan2f, .copysign=copysignf, .dist=fdimf, .hypot=hypotf, .maxmag=fmaxmagf, .minmag=fminmagf,
+ .mod=Num32__mod, .nextafter=nextafterf, .pow=powf, .remainder=remainderf,
+ .abs=fabsf, .acos=acosf, .acosh=acoshf, .asin=asinf, .asinh=asinhf, .atan=atanf, .atanh=atanhf,
+ .cbrt=cbrtf, .ceil=ceilf, .cos=cosf, .cosh=coshf, .erf=erff, .erfc=erfcf, .exp=expf,
+ .exp10=exp10f, .exp2=exp2f, .expm1=expm1f, .floor=floorf, .j0=j0f, .j1=j1f, .log=logf,
+ .log10=log10f, .log1p=log1pf, .log2=log2f, .logb=logbf, .nextdown=nextdownf, .nextup=nextupf,
+ .rint=rintf, .round=roundf, .roundeven=roundevenf, .significand=significandf, .sin=sinf,
+ .sinh=sinhf, .sqrt=sqrtf, .tan=tanf, .tanh=tanhf, .tgamma=tgammaf, .trunc=truncf, .y0=y0f, .y1=y1f,
+ .format=Num32__format,
+ .scientific=Num32__scientific,
+};
+
+// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0