Giter Club home page Giter Club logo

Comments (7)

ncannasse avatar ncannasse commented on May 27, 2024

What is the source code for the example?

from hashlink.

ncannasse avatar ncannasse commented on May 27, 2024

(or can it be reproduced with a smaller pure Haxe code sample without any lib?)

from hashlink.

eliasku avatar eliasku commented on May 27, 2024

@ncannasse I will try to pack repro in 30 minutes for you

from hashlink.

eliasku avatar eliasku commented on May 27, 2024

hl-repro.zip
There are hl.hxml and neko.hxml

from hashlink.

haxiomic avatar haxiomic commented on May 27, 2024

The repro is also hanging on my mac running 10.11.6

I'm having the same issue running the mandlebrot test, it gets to pixel (214,1) and hangs in both hl JIT and compiled hlc

Most recent haxe nightly 3fe3fab

from hashlink.

ncannasse avatar ncannasse commented on May 27, 2024

I can't reproduce on Windows, I'll have to check on OSX at work this week.

from hashlink.

haxiomic avatar haxiomic commented on May 27, 2024

I've made a PR for the fix and the hl-repro project no longer hangs

It turned out to be the TRAILING_ZEROES macro. On windows it's defined as an inline function whereas on other platforms it's the macro:

#define TRAILING_ZEROES(x)  (x?__builtin_ctz(x):32)

The problem is if x is a ternary expression like a ? b : c then if a is true TRAILING_ZEROES will return a rather than __builtin_ctz(a).

I've changed the macros to inline functions which also prevents x being evaluated twice.

The hang itself occurred in gc_alloc_var - alloc.c:383 bits gets set incorrectly because of the ternary

from hashlink.

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.