luajit2 icon indicating copy to clipboard operation
luajit2 copied to clipboard

OpenResty's Branch of LuaJIT 2

Results 55 luajit2 issues
Sort by recently updated
recently updated
newest added

``` static LJ_NOINLINE uint32_t hash_128_above(uint64_t seed, const char* str, uint32_t len) { uint32_t chunk_num, chunk_sz, chunk_sz_log2, i, pos1, pos2; uint64_t h1, h2, v; const char* chunk_ptr; chunk_num = 16; chunk_sz...

openresty-1.21.4.1/build/LuaJIT-2.1-20220411/src” lj_arch.h:73:2: error: #error "No support for this architecture (yet)" #error "No support for this architecture (yet)" ^~~~~ [root@localhost build]# uname -a Linux localhost.localdomain 4.19.90-23.19.v2101.a.ky10.loongarch64 #1 SMP Mon Sep 13...

The original issue was reported in google group. https://groups.google.com/g/openresty-en/c/4DXfmYSU7Jo/m/bUajTOB0AQAJ?utm_medium=email&utm_source=footer i am testing my proxy server by new version of openresty (1.21.4), and i have a big problem in load test...

Tests like `ffi_enum.lua` and `ffi_callback.lua` are failing and giving the following error from the [test suite](https://github.com/openresty/luajit2-test-suite). ``` [aditya@clftest ffi]$ ~/testing/bin/luajit ffi_callback.lua /home/aditya/testing/bin/luajit: ffi_callback.lua:8: too many callbacks ``` It's failing even...

Hi Team, We are using Kong 2.7.1 , and we are getting this error: "nginx: lua atpanic: Lua VM crashed, reason: not enough memory". Want to know how much memory...

lj_str_new CPU 100% only in one core ![8822e63e0876e34cc52f2431ad8318b](https://user-images.githubusercontent.com/69657117/169629429-b3eacd2a-efdb-4899-9e79-7225308d8091.png) large number of strings longer than 128 in the mlcache cache. biz logic necessity **Flame Graph:** ![image](https://user-images.githubusercontent.com/69657117/169627048-8ffa7e1d-4e48-4d98-978d-2ef98d56eb51.png) **Perf Data:** Using host libthread_db...

![13a5085214c2050331271d7ffbedc76](https://user-images.githubusercontent.com/11937688/156703067-b714bf37-0955-467f-a40c-1ff408dfec70.png)

In this Apple forum thread: [App not launching after signing with hardened runtime](https://developer.apple.com/forums/thread/132109), Apple developer relations says: > If your app uses a JIT, you should only need > ```text...

# Issue This issue occurs on Alpine (specifically, in a Docker container). When I try to run a file `foo.lua` with the following code in it: ```lua local ffi =...

On my macpro book with m1 processor (arm64), the FFI call to printf will output random garbage characters for all varadic args. ~~~lua local ffi=require'ffi' ffi.cdef[[ int printf(const char *fmt,...);...