aboutsummaryrefslogtreecommitdiff
path: root/src/lj_asm.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix GCC 7 -Wimplicit-fallthrough warnings.Mike Pall2018-01-291-1/+2
| |
* | Fix IR_BUFPUT assembly.Mike Pall2018-01-141-3/+3
| | | | | | | | Thanks to Peter Cawley.
* | LJ_GC64: Make ASMREF_L references 64 bit.Mike Pall2017-10-021-0/+1
| | | | | | | | Reported by Yichun Zhang.
* | LJ_GC64: Fix ir_khash for non-string GCobj.Mike Pall2017-10-021-0/+4
| | | | | | | | Contributed by Peter Cawley.
* | MIPS64: Add soft-float support to JIT compiler backend.Mike Pall2017-06-071-4/+4
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | ARM64: Add big-endian support.Mike Pall2017-03-301-0/+3
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | Merge branch 'master' into v2.1Mike Pall2017-01-171-1/+1
|\|
| * Bump copyright date to 2017.Mike Pall2017-01-171-1/+1
| |
* | Generalize deferred constant handling in backend to 64 bit.Mike Pall2016-11-211-4/+30
| |
* | ARM64: Add JIT compiler backend.Mike Pall2016-11-201-0/+4
| | | | | | | | | | Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
* | Properly clean up state before restart of trace assembly.Mike Pall2016-06-271-6/+10
| |
* | x64/LJ_GC64: Add missing backend support and enable JIT compilation.Mike Pall2016-05-231-0/+11
| | | | | | | | Contributed by Peter Cawley.
* | LJ_FR2: Add support for trace recording and snapshots.Mike Pall2016-05-231-3/+3
| | | | | | | | Contributed by Peter Cawley.
* | LJ_GC64: Add support for 64 bit GCobj constants in the IR.Mike Pall2016-05-231-1/+10
| | | | | | | | Contributed by Peter Cawley.
* | Embed 64 bit constants directly in the IR, using two slots.Mike Pall2016-05-231-6/+11
| | | | | | | | Contributed by Peter Cawley.
* | Simplify GCtrace * reference embedding for trace stitching.Mike Pall2016-05-221-0/+5
| | | | | | | | | | This is now possible due to the immovable IR. Contributed by Peter Cawley.
* | Make the IR immovable after assembly.Mike Pall2016-05-221-24/+71
| | | | | | | | | | This allows embedding pointers to IR constants in the machine code. Contributed by Peter Cawley.
* | Add ra_addrename().Mike Pall2016-05-211-12/+14
| | | | | | | | Contributed by Peter Cawley.
* | LJ_GC64: Introduce IRT_PGC.Mike Pall2016-05-201-1/+1
| | | | | | | | Contributed by Peter Cawley.
* | x86: Generate BMI2 shifts and rotates, if available.Mike Pall2016-03-281-1/+4
| | | | | | | | Contributed by Peter Cawley.
* | Merge branch 'master' into v2.1Mike Pall2016-03-031-1/+1
|\|
| * Bump copyright date to 2016.Mike Pall2016-03-031-1/+1
| |
* | Generalize LJ_SOFTFP dependencies in lj_asm.c.Mike Pall2016-02-091-4/+11
| |
* | Merge branch 'master' into v2.1Mike Pall2015-01-061-1/+1
|\|
| * Bump copyright date to 2015.Mike Pall2015-01-051-1/+1
| |
* | Add LJ_FR2 mode: Two-slot frame info.Mike Pall2015-01-031-1/+1
| |
* | x86: Fix stack slot reservation for FP math functions.Mike Pall2014-12-161-23/+27
| | | | | | | | Followup fix for commit ad03eba7.
* | x86/x64: Drop internal x87 math functions. Use libm functions.Mike Pall2014-12-081-4/+0
| |
* | Merge branch 'master' into v2.1Mike Pall2014-11-281-0/+5
|\|
| * Fix snapshot #0 handling for traces with a stack check on entry.Mike Pall2014-11-281-0/+5
| |
* | Merge branch 'master' into v2.1Mike Pall2014-10-081-0/+1
|\|
| * Fix fused constant loads under high register pressure.Mike Pall2014-10-081-0/+1
| |
* | Merge branch 'master' into v2.1Mike Pall2014-03-061-9/+11
|\|
| * Don't access dangling reference to reallocated IR.Mike Pall2014-03-061-9/+11
| |
* | Merge branch 'master' into v2.1Mike Pall2014-01-161-1/+1
|\|
| * Bump copyright date to 2014.Mike Pall2014-01-161-1/+1
| |
* | x86: Fix stack slot counting for IR_CALLA (affects table.new).Mike Pall2013-12-261-1/+1
| |
* | Compile getfenv(0).Mike Pall2013-10-091-1/+12
| |
* | Add table.new().Mike Pall2013-10-091-0/+3
| |
* | Low-overhead profiler, part 4: JIT compiler support.Mike Pall2013-09-081-0/+1
| |
* | Save currently executing lua_State in g->cur_L.Mike Pall2013-08-301-1/+1
| | | | | | | | | | | | This is only a good approximation due to deficiencies in the design of the Lua/C API. It indicates _some_ valid state that is/was executing. Also reorder L->cframe stores to achieve a synchronously consistent state.
* | FFI: Compile VLA/VLS and large cdata allocs with default initialization.Mike Pall2013-05-241-1/+10
| |
* | Merge branch 'master' into v2.1Mike Pall2013-05-161-1/+1
|\|
| * Handle calls with max. args in backends even after SPLIT.Mike Pall2013-05-161-1/+1
| |
* | Refactor CCallInfo representation for split arguments.Mike Pall2013-05-131-1/+1
| |
* | Big renaming of string buffer/formatting/conversion functions.Mike Pall2013-05-131-6/+6
| |
* | Optimize BUFHDR code generation.Mike Pall2013-04-271-1/+13
| | | | | | | | Rematerialize const buffer pointer instead of spilling.
* | Change semantics of buffer ops to simplify CSE and DCE.Mike Pall2013-04-261-13/+10
| |
* | Use explicit conversion type for IR_TOSTR. Add char conversion.Mike Pall2013-04-231-13/+19
| |
* | Fuse string creation into concats. Optimize single-char concats.Mike Pall2013-04-231-6/+23
| |