aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* DynASM/ARM64: Add VREG support.Mike Pall2021-03-312-18/+41
| | | | Contributed by Hao Sun and Nick Gasson.
* Fix build with busybox grep.Mike Pall2021-03-311-1/+1
| | | | Reported by ymph.
* NetBSD: Use PROT_MPROTECT() and disable getentropy().Mike Pall2021-03-293-4/+14
| | | | | Note: this is not an officially supported target. Contributed by David Carlier.
* Allow disabling the serializer.Mike Pall2021-03-261-0/+3
|
* BSD: Fix build with BSD grep.Mike Pall2021-03-261-1/+1
| | | | Thanks to carlocab.
* Fix .bat file builds.Mike Pall2021-03-265-5/+5
|
* OSX: Fix build by hardcoding external frame unwinding.Mike Pall2021-03-251-7/+8
| | | | Apparently they can't even get 'grep' right, let alone a keyboard.
* String buffers, part 1: object serialization.Mike Pall2021-03-2526-18/+797
| | | | Sponsored by fmad.io.
* Reorganize lightuserdata interning code.Mike Pall2021-03-253-28/+32
|
* Upgrade docs to HTML5. It's about time.Mike Pall2021-03-2514-28/+28
|
* FFI: Handle zero-fill of struct-of-NYI.Mike Pall2021-03-231-1/+19
|
* ARM64: Improve generation of immediates.Mike Pall2021-03-231-31/+33
|
* Merge branch 'master' into v2.1Mike Pall2021-03-231-13/+12
|\
| * Detect inconsistent renames even in the presence of sunk values.Mike Pall2021-03-231-13/+12
| | | | | | | | Reported by Igor Munkin.
* | Handle on-trace OOM errors from helper functions.Mike Pall2021-03-2324-51/+421
| |
* | Use weak guards for on-trace allocations.Mike Pall2021-03-234-49/+51
| |
* | PPC: Fix GG_State loads.Mike Pall2021-03-232-2/+2
| |
* | MIPS: Fix handling of long-range spare jumps.Mike Pall2021-03-232-25/+34
| |
* | Cleanup and enable external unwinding for more platforms.Mike Pall2021-03-234-190/+197
| |
* | Merge branch 'master' into v2.1Mike Pall2021-03-112-8/+12
|\|
| * Remove specific version numbers from the docs.Mike Pall2021-03-112-8/+12
| |
* | iOS: Don't use getentropy() since it's disallowed in the App Store.Mike Pall2021-03-101-3/+9
| | | | | | | | Reported by MoNTE48.
* | Linux/ARM64: Make mremap() non-moving due to VA space woes.Mike Pall2021-03-101-1/+1
| | | | | | | | | | | | | | | | | | This reduces overall performance on ARM64, but we have no choice. Linux kernel default userspace VA is 48 bit, but we'd need 47 bit. mremap() ignores address hints due to a kernel API issue. The mapping may move to an undesired address which will cause an assert or crash. Reported by Raymond W. Ko.
* | Merge branch 'master' into v2.1Mike Pall2021-01-121-2/+5
|\|
| * Clarify macOS build instructions.Mike Pall2021-01-121-2/+5
| |
* | Merge branch 'master' into v2.1Mike Pall2021-01-02204-222/+222
|\|
| * Bump copyright date.Mike Pall2021-01-02176-193/+193
| |
* | Fix trace exit register dump for some archs.Mike Pall2021-01-021-2/+5
| |
* | Merge branch 'master' into v2.1Mike Pall2021-01-026-72/+52
|\|
| * Documentation cleanup.Mike Pall2021-01-024-62/+49
| |
* | Merge branch 'master' into v2.1Mike Pall2020-12-281-0/+5
|\|
| * FFI: Fix recording of union initialization.Mike Pall2020-12-281-0/+5
| | | | | | | | Thanks to Alex Shpilkin.
* | Merge branch 'master' into v2.1Mike Pall2020-12-041-0/+4
|\|
| * x64: Fix __call metamethod return dispatch.Mike Pall2020-12-041-0/+4
| | | | | | | | Reported by Igor Munkin.
* | Fix binary number literal parsing.Mike Pall2020-11-301-0/+1
| | | | | | | | Reported by Egor Skriptunoff.
* | Fix warning.Mike Pall2020-11-301-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2020-11-301-2/+1
|\|
| * Fix warning.Mike Pall2020-11-301-2/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2020-10-1219-49/+49
|\|
| * Minor changes and https-ify links.Mike Pall2020-10-1218-47/+47
| |
* | Merge branch 'master' into v2.1Mike Pall2020-10-122-4/+8
|\|
| * Fix snapshot PC when linking to BC_JLOOP that was a BC_RET*.Mike Pall2020-10-122-4/+8
| | | | | | | | | | Reported by Arseny Vakhrushev. Fix contributed by Peter Cawley.
* | Merge branch 'master' into v2.1Mike Pall2020-10-124-25/+15
|\|
| * Ensure full init of IR_NOP instructions.Mike Pall2020-10-124-25/+15
| |
* | Add support for full-range 64 bit lightuserdata.Mike Pall2020-09-3017-67/+121
| |
* | ARM64: Followup fix for exit branch patching.Mike Pall2020-09-281-1/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2020-09-275-9/+41
|\|
| * Prevent patching of the GC exit check branch.Mike Pall2020-09-274-7/+31
| | | | | | | | Reported by Arseny Vakhrushev.
* | x64: Fix 64 bit shift code generation.Mike Pall2020-09-251-1/+1
| | | | | | | | | | Reported by Philipp Kutin. Fix contributed by Peter Cawley.
* | Another fix for lua_yield() from C hook.Mike Pall2020-09-224-4/+4
| | | | | | | | Reported by Jason Carr.