LuaJIT icon indicating copy to clipboard operation
LuaJIT copied to clipboard

Mirror of the LuaJIT git repository

Results 6 LuaJIT issues
Sort by recently updated
recently updated
newest added

I just noticed you've been working on a new garbage collector for LuaJIT. I tried building the repo on windows but got a few errors regarding some missing defines (`LJ_GC_ARENA_SIZE`...

``` (gdb) run runtests.lua Starting program: /home/caps/goluwa/framework/lua/build/luajit_forks/repo/fsfod-intrinsicpr_debug-assert_52compat_gc64/src/luajit runtests.lua running fpr running gpr running gpr64 Program received signal SIGSEGV, Segmentation fault. 0x000000001815fe74 in ?? () (gdb) bt #0 0x000000001815fe74 in ??...

I am very interested in the read-only tables feature. I have seen promising results in a microbenchmark (https://github.com/LuaJIT/LuaJIT/issues/248#issuecomment-269988067) and now I am testing with a real application (Snabb). Initial scores...

It would be very useful to get the new GC upstreamed.

compiled with `gcc 5.4.0` on `x64 linux` with the flags `LUA_USE_ASSERT`, `CCDEBUG=-g` and `CCOPT=-fomit-frame-pointer` I applied this patch on the vectors branch to get it compiling https://gist.github.com/CapsAdmin/00326ad8eda9ca48557013bcd90546fc Only happens when...

in lj_gc.c:963 the function `sweep_arena` is forward declared as `void sweep_arena(global_State *g, MSize i);` but is later declared as `static void sweep_arena(global_State *g, MSize i, MSize celltop)` I changed the...