Giter Site home page Giter Site logo

test failed on SPARC about janet HOT 2 CLOSED

tankf33der avatar tankf33der commented on May 12, 2024
test failed on SPARC

from janet.

Comments (2)

bakpakin avatar bakpakin commented on May 12, 2024

The runtime error from UBSan can probably be ignored - we rely on (/ 0 0) == qNaN, and that should hold true on most architectures, and should for SPARC.

Janet uses the nanboxing technique internally, and relies on NaNs generated by floating point operations to be of a certain form that is different than the artificially created ones that are actually tagged pointers (quiet NaNs vs. signaling, but's it's really more about the specific bits in the signalling NaNs) . There are a bunch of fiddly macros in janet.h for dealing with this.

If I had to guess, the table has length 2, so src/core/table.c, line 135 is not properly guarding the
insertion of a NaN key in the table.

    if (janet_checktype(key, JANET_NUMBER) && isnan(janet_unwrap_number(key))) return;

Some things to try:

  • Compile again with -DJANET_NO_NANBOX. This should hopefully work.
  • Assert that 0.0 / 0.0 is really producing a NaN number type.

Sample diff:

diff --git a/Makefile b/Makefile
index e04662a..5b75117 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,7 @@ MANPATH?=$(PREFIX)/share/man/man1/
 DEBUGGER=gdb
 
 CFLAGS=-std=c99 -Wall -Wextra -Isrc/include -fpic -O2 -fvisibility=hidden \
+          -DJANET_NO_NANBOX -fsanitize=undefined \
           -DJANET_BUILD=$(JANET_BUILD)
 LDFLAGS=-rdynamic
 
diff --git a/src/boot/system_test.c b/src/boot/system_test.c
index cf991f9..1b03a7d 100644
--- a/src/boot/system_test.c
+++ b/src/boot/system_test.c
@@ -48,5 +48,7 @@ int system_test() {
     assert(janet_equals(janet_cstringv("a string."), janet_cstringv("a string.")));
     assert(janet_equals(janet_csymbolv("sym"), janet_csymbolv("sym")));
 
+    assert(JANET_NUMBER == janet_type(janet_wrap_number(0.0 / 0.0)));
+
     return 0;
 }

from janet.

tankf33der avatar tankf33der commented on May 12, 2024

-DJANET_NO_NANBOX helped.

from janet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.