Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-06-23 | Redesign and harden string interning. | Mike Pall | 22 | -202/+394 | |
Up to 40% faster on hash-intensive benchmarks. With some ideas from Sokolov Yura. | |||||
2020-06-15 | Use a securely seeded global PRNG for the VM. | Mike Pall | 22 | -173/+410 | |
It's not 2005 anymore. | |||||
2020-06-15 | Cleanup some arch defines and fix builds. | Mike Pall | 8 | -17/+31 | |
2020-06-13 | ARM: Implement FLOAD from GG_State. | Mike Pall | 3 | -21/+11 | |
2020-06-15 | Improve assertions. | Mike Pall | 71 | -927/+1363 | |
2020-06-07 | Fix debug.debug() for non-string errors. | Mike Pall | 1 | -1/+2 | |
2020-05-27 | Optimize table length computation with hinting. | Mike Pall | 12 | -82/+135 | |
10x faster on loop with t[#t+1] = x idiom. Also used by table.insert. | |||||
2020-05-23 | Remove pow() splitting and cleanup backends. | Mike Pall | 14 | -222/+95 | |
2020-05-22 | Cleanup math function compilation and fix inconsistencies. | Mike Pall | 14 | -65/+48 | |
2020-05-22 | Fix bytecode register allocation for comparisons. | Mike Pall | 1 | -2/+5 | |
2020-05-22 | Don't compile math.modf() anymore. | Mike Pall | 2 | -17/+1 | |
It's rarely used and properly compiling it would be difficult. | |||||
2020-05-22 | Fix math.min()/math.max() inconsistencies. | Mike Pall | 13 | -92/+151 | |
2020-05-22 | Fix narrowing of unary minus. | Mike Pall | 1 | -2/+7 | |
2020-05-20 | Cleanup CPU detection and tuning for old CPUs. | Mike Pall | 9 | -138/+87 | |
2020-05-18 | ARM64: Fix {AHUV}LOAD specialized to nil/false/true. | Mike Pall | 1 | -1/+1 | |
Reported by caohongqing. | |||||
2020-05-18 | ARM, ARM64, PPC: Fix TSETR fallback. | Mike Pall | 3 | -0/+3 | |
Thanks to Javier Guerra Giraldez. | |||||
2020-05-08 | Remove unused file. | Mike Pall | 1 | -3691/+0 | |
2020-05-08 | FFI: Always fall back to metamethods for cdata length/concat. | Mike Pall | 4 | -14/+6 | |
Thanks to Egor Skriptunoff. | |||||
2020-05-05 | Windows: Make actual use of internal allocator optimization. | Mike Pall | 1 | -2/+4 | |
Thanks to Nicholas Ham. | |||||
2020-04-28 | Fix overflow check in unpack(). | Mike Pall | 1 | -2/+4 | |
Thanks to HybridDog. | |||||
2020-04-28 | Fix Windows make clean. | Mike Pall | 1 | -1/+1 | |
2020-03-20 | FFI/ARM64: Fix pass-by-value struct calling conventions. | Mike Pall | 1 | -1/+2 | |
2020-03-20 | Fix write barrier for lua_setupvalue() and debug.setupvalue(). | Mike Pall | 3 | -6/+12 | |
2020-02-13 | Make string to number conversions fail on NUL char. | Mike Pall | 4 | -7/+12 | |
Contributed by Igor Munkin. | |||||
2020-02-02 | x86/x64: Fix loop realignment. | Mike Pall | 1 | -2/+3 | |
2020-01-26 | Documentation cleanup. | Mike Pall | 14 | -1148/+64 | |
2020-01-25 | Fix POSIX install with missing or incompatible ldconfig. | Mike Pall | 1 | -2/+2 | |
2020-01-22 | Fix C file generation in jit.bcsave. | Mike Pall | 1 | -1/+1 | |
Thanks to codicodi. | |||||
2020-01-20 | Bump copyright date. | Mike Pall | 177 | -195/+195 | |
2020-01-20 | Remove support for de-facto dead archs. | Mike Pall | 5 | -33/+3 | |
2020-01-20 | DynASM/x86: Fix BMI instructions. | Mike Pall | 1 | -1/+1 | |
Thanks to Peter Cawley. | |||||
2020-01-20 | Minor fixes. | Mike Pall | 2 | -1/+2 | |
2020-01-20 | MIPS: Add MIPS64 R6 port. | Mike Pall | 15 | -347/+1296 | |
Contributed by Hua Zhang, YunQiang Su from Wave Computing, and Radovan Birdic from RT-RK. Sponsored by Wave Computing. | |||||
2020-01-14 | Fix string.char() recording with no arguments. | Mike Pall | 1 | -0/+2 | |
2020-01-14 | Followup fix for embedded bytecode loader. | Mike Pall | 1 | -0/+1 | |
2020-01-13 | Fix embedded bytecode loader. | Mike Pall | 3 | -1/+8 | |
2019-12-21 | Properly fix pointer diff in string.find(). | Mike Pall | 1 | -2/+2 | |
Thanks to Vyacheslav Egorov. | |||||
2019-12-08 | x64: Enable LJ_GC64 mode by default. | Mike Pall | 5 | -17/+17 | |
2019-12-08 | FFI: Eliminate hardcoded string hashes. | Mike Pall | 3 | -47/+67 | |
2019-12-08 | Fix interaction between profiler hooks and finalizers. | Mike Pall | 3 | -2/+5 | |
Thanks to Julien Desgats. | |||||
2019-12-08 | Don't use STRREF for pointer diff in string.find(). | Mike Pall | 1 | -1/+2 | |
Thanks to Sergey Ostanevich and Vyacheslav Egorov. | |||||
2019-12-08 | Fix tonumber("-0"). | Mike Pall | 1 | -3/+2 | |
Reported by bluecheetah001. | |||||
2019-12-08 | Fix hash table chaining (again). | Mike Pall | 1 | -5/+4 | |
Thanks to Peter Cawley. | |||||
2019-12-08 | Typo. | Mike Pall | 1 | -1/+0 | |
2019-12-08 | Fix declarations of _BitScanForward/_BitScanReverse. | Mike Pall | 1 | -4/+4 | |
Reported by Mumin Guler. | |||||
2019-12-08 | Add stricter check for print() vs. tostring() shortcut. | Mike Pall | 1 | -1/+2 | |
2019-12-08 | Prevent integer overflow while parsing long strings. | Mike Pall | 1 | -1/+1 | |
2019-12-08 | Fix stack check when recording BC_VARG. | Mike Pall | 1 | -0/+2 | |
Contributed by Yichun Zhang. | |||||
2019-12-08 | FFI: Add missing write barrier on C library index update. | Mike Pall | 1 | -0/+1 | |
Contributed by Yichun Zhang. | |||||
2019-12-08 | FFI: Workaround for platform dlerror() returning NULL. | Mike Pall | 1 | -1/+2 | |
Contributed by mcclure. |