summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* OSX: Don't set a default MACOSX_DEPLOYMENT_TARGET.Mike Pall2019-12-082-3/+3
|
* Build MinGW import library, too.Mike Pall2019-12-081-1/+2
| | | | Thanks to Tarnyko.
* Fix MinGW make clean.Mike Pall2019-12-081-1/+1
| | | | Reported by Shmuel Zeigerman.
* Update Android and iOS build docs.Mike Pall2019-12-081-55/+13
|
* Add note about the unsuitabilty of math.random() for crypto.Mike Pall2019-12-081-0/+4
|
* Update MSVC build script and docs.Mike Pall2019-12-082-51/+20
|
* More recent MSVC is partially C99 compliant.Mike Pall2019-12-081-2/+2
|
* Fix narrowing of conversions to U32.Mike Pall2019-11-101-2/+2
| | | | Reported by spacewander.
* Fix bytecode dump unpatching.Mike Pall2019-08-301-4/+1
| | | | Reported by Christopher Oliver.
* Fix debug.getinfo() argument check.Mike Pall2019-08-101-1/+1
| | | | Thanks to Sergey Ostanevich.
* MIPS: Fix delay slot hint.Mike Pall2019-07-051-1/+1
| | | | This is documentation only. Thanks to snyh.
* Fix TNEW load forwarding with instable types.Mike Pall2019-05-091-1/+2
|
* ARM: Fix GCC 7 -Wimplicit-fallthrough warnings.Mike Pall2019-04-292-3/+3
|
* ARM: Fix condition code check fusion.Mike Pall2019-04-291-13/+15
| | | | Reported by Qingjun Wei.
* Fix MinGW build.Mike Pall2019-01-101-1/+1
| | | | Thanks to Victor Bombi.
* DynASM/MIPS: Fix shadowed variable.Mike Pall2019-01-101-3/+3
| | | | | Cleanup only, bug cannot trigger. Thanks to Domingo Alvarez Duarte.
* DynASM/PPC: Fix shadowed variable.Mike Pall2019-01-101-3/+3
| | | | | Cleanup only, bug cannot trigger. Thanks to Domingo Alvarez Duarte.
* Fix overflow of snapshot map offset.Mike Pall2019-01-103-12/+12
| | | | Thanks to Yichun Zhang.
* Better detection of MinGW build.Mike Pall2019-01-101-0/+4
|
* PPC/NetBSD: Fix endianess check.Mike Pall2018-06-051-1/+1
| | | | Thanks to he32 and daurnimator.
* x86/x64: Check for jcc when using xor r,r in emit_loadi().Mike Pall2018-05-201-2/+4
| | | | Thanks to Peter Cawley.
* FFI: Make FP to U64 conversions match JIT backend behavior.Mike Pall2018-05-201-5/+13
|
* Bump copyright date to 2018.Mike Pall2018-04-2516-46/+32
|
* FFI: Add tonumber() specialization for failed conversions.Mike Pall2018-04-221-0/+2
| | | | Contributed by Javier Guerra Giraldez.
* Fix rechaining of pseudo-resurrected string keys.Mike Pall2018-02-271-0/+23
| | | | | | | | | This is a serious bug. But extremely hard to reproduce, so it went undetected for 8 years. One needs two resurrections with different main nodes, which are both in a hash chain which gets relinked on key insertion where the colliding node is in a non-main position. Phew. Thanks to lbeiming.
* Clear stack after print_jit_status() in CLI.Mike Pall2018-01-291-0/+1
| | | | Suggested by Hydroque.
* Fix GCC 7 -Wimplicit-fallthrough warnings.Mike Pall2018-01-2910-5/+33
|
* FFI: Don't assert on #1LL (5.2 compatibility mode only).Mike Pall2018-01-293-1/+11
| | | | Reported by Denis Golovan.
* Fix LuaJIT API docs for LUAJIT_MODE_*.Mike Pall2018-01-181-2/+2
| | | | Thanks to sunfishgao.
* Fix string.format("%c", 0).Mike Pall2018-01-141-7/+8
|
* Fix saved bytecode encapsulated in ELF objects.Mike Pall2017-11-161-1/+1
| | | | Thanks to Dimitry Andric.
* Fix FOLD rule for strength reduction of widening.Mike Pall2017-11-081-1/+1
| | | | Reported by Matthew Burk.
* DynASM/x86: Fix potential REL_A overflow.Mike Pall2017-09-201-1/+2
| | | | Thanks to Joshua Haberman.
* Use https for freelists.org links.Mike Pall2017-08-181-1/+1
|
* Modify fix for warning from 'ar'.Mike Pall2017-06-121-1/+2
|
* MIPS: Fix handling of spare long-range jump slots.Mike Pall2017-06-073-10/+11
| | | | Contributed by Djordje Kovacevic and Stefan Pejic.
* MIPS: Use precise search for exit jump patching.Mike Pall2017-06-071-1/+5
| | | | Contributed by Djordje Kovacevic and Stefan Pejic.
* Add missing LJ_MAX_JSLOTS check.Mike Pall2017-05-171-0/+2
| | | | Thanks to Yichun Zhang.
* Fix LJ_MAX_JSLOTS assertion in rec_check_slots().Mike Pall2017-05-091-2/+2
| | | | Thanks to Yichun Zhang.
* RELEASE LuaJIT-2.0.5v2.0.5Mike Pall2017-05-0113-16/+16
|
* Update changelog.Mike Pall2017-05-011-0/+42
|
* Add workaround for MSVC 2015 stdio changes.Mike Pall2017-04-171-1/+1
| | | | Contributed by Peter Cawley.
* OSX: Fix build with recent XCode.Mike Pall2017-04-071-1/+2
| | | | Contributed by Joseph Zupko.
* FFI: Fix FOLD rules for int64_t comparisons.Mike Pall2017-03-301-8/+8
| | | | Thanks to Peter Cawley.
* Remove unnecessary mcode alloc pointer check.Mike Pall2017-03-081-2/+2
| | | | Also fixes Illumos address space issue reported by Theo Schlossnagle.
* Limit mcode alloc probing, depending on the available pool size.Mike Pall2017-03-081-1/+2
| | | | Contributed by Alexey Kopytov.
* Fix overly restrictive range calculation in mcode allocation.Mike Pall2017-03-081-4/+4
| | | | Contributed by Alexey Kopytov.
* Fix out-of-scope goto handling in parser.Mike Pall2017-03-081-4/+6
| | | | Many thanks to Demetrios Obenour for tracking down this long-standing bug.
* Remove internal __mode = "K" and replace with safe check.Mike Pall2017-03-082-6/+13
|
* Fix annoying warning, due to deterministic binutils configuration.Mike Pall2017-03-081-3/+1
|