sibest

Results 4 issues of sibest

Hi @hughsando Tha GC fails when compiled with O1 or O2 in emscripten platform with webassembly. Works solid in O0. Any hint on clang flags to add to disable some...

Hi, I think i've found a bug in the GC generational, In MarkAll gSpecialObjectLock should be locked at begin, ``` void MarkAll(bool inGenerational) { // Finalizers must be marked before...

Hi, I've already worked on the GC before. Basically, some pointers are missing probably in MarkConservative or somewhere else, and this is leading my game (http://playruneverse.com) to random crashes. I...

``` void PauseForCollect() { if (sgIsCollecting) CriticalGCError("Bad Allocation while collecting - from finalizer?"); #ifndef HXCPP_SINGLE_THREADED_APP volatile int dummy = 1; mBottomOfStack = (int *)&dummy; CAPTURE_REGS; #ifdef VerifyStackRead VerifyStackRead(mBottomOfStack, mTopOfStack) #endif...