aboutsummaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Expand)AuthorFilesLines
2010-10-05PPC: Add table.getn() fast function.Mike Pall1-1/+6
2010-10-05PPC: Add tonumber() and tostring() fast functions.Mike Pall1-4/+48
2010-10-05PPC: Add getmetatable(), setmetatable() and rawget() fast functions.Mike Pall1-4/+72
2010-10-05PPC: Add assert() and type() fast functions.Mike Pall1-2/+31
2010-10-05Update docs for PPC port. Clarify and extend install instructions.Mike Pall8-70/+185
2010-10-01PPC: Add pcall() and xpcall() fast functions.Mike Pall1-3/+23
2010-10-01PPC: Add ipairs() fast function and its iterator.Mike Pall1-6/+50
2010-10-01PPC: Add next() and pairs() fast functions.Mike Pall1-6/+35
2010-10-01PPC: Add BC_ITERN and BC_ISNEXT.Mike Pall1-2/+91
2010-09-30Specialize bytecode for pairs()/next() iterator. Speedup: 3.5x.Mike Pall9-354/+634
2010-09-30x64: Use 64 bit slot copies in the interpreter.Mike Pall4-2351/+2492
2010-09-30PPC: Add dispatch to fast function fallback handlers.Mike Pall1-1/+44
2010-09-30PPC: Add bit.* fast functions.Mike Pall1-30/+53
2010-09-30PPC: Add basic infrastructure for fast functions.Mike Pall1-6/+39
2010-09-28PPC: Add frame unwind info for assembler part.Mike Pall3-15/+96
2010-09-28PPC: Don't use callee-save registers when folding '%' operator.Mike Pall1-1/+1
2010-09-28Fix checks for minimum required compiler versions.Mike Pall2-5/+18
2010-09-23PPC: Add dispatch target for call hook.Mike Pall1-2/+22
2010-09-23PPC: Add dispatch targets for instruction and return hooks.Mike Pall1-3/+43
2010-09-23PPC: Add lj_vm_resume().Mike Pall1-2/+40
2010-09-23Workaround for missing fseeko/ftello prototypes on ancient glibc.Mike Pall1-1/+1
2010-09-22x86/x64: Fix stack overflow handling for coroutine results.Mike Pall4-2010/+2015
2010-09-22Fix stack growth for coroutine.wrap().Mike Pall1-1/+1
2010-09-21PPC: Reschedule continuation dispatch.Mike Pall1-1/+1
2010-09-21Whitespace.Mike Pall1-1/+1
2010-09-21PPC: Add fixed register for TOBIT bias.Mike Pall1-3/+8
2010-09-21PPC: Add missing register setup after unwind to ff pcall.Mike Pall1-2/+10
2010-09-21PPC: Fix result copy for return to Lua.Mike Pall1-2/+3
2010-09-21PPC: Fix constant folding of modulo operator.Mike Pall1-2/+2
2010-09-21Consistently round int args of string functions on x64.Mike Pall4-16/+16
2010-09-21Improve AA for field accesses: disambiguate new allocations.Mike Pall1-3/+6
2010-09-21Drop redundant (UGE any +0).Mike Pall1-0/+8
2010-09-21Improve FOLD/CSE of field loads and array/hash refs across NEWREF.Mike Pall3-15/+23
2010-09-21Improve alias analysis: disambiguate new allocations.Mike Pall1-26/+54
2010-09-18Avoid fusing potentially negative indexes into AREF on x64.Mike Pall1-2/+3
2010-09-17PPC: Add metamethod handlers and continuations for comparisons.Mike Pall1-18/+49
2010-09-17PPC: Reschedule bytecode instruction fetch.Mike Pall1-35/+66
2010-09-17PPC: Add BC_CAT and lj_cont_cat.Mike Pall1-3/+31
2010-09-16PPC: Fix ordered comparisons for NaN operands.Mike Pall1-7/+7
2010-09-16PPC: Avoid comparison with NaN in BC_ISEQN/BC_ISNEN.Mike Pall1-1/+12
2010-09-15PPC: Add BC_TSETM.Mike Pall1-1/+41
2010-09-15PPC: Add BC_VARG.Mike Pall1-1/+62
2010-09-15Don't traverse inactive GCtrace objects.Mike Pall1-2/+2
2010-09-15Show names of IR calls in disassembler output.Mike Pall2-3/+19
2010-09-14Add IR_VLOAD for vararg loads.Mike Pall5-9/+13
2010-09-14Improve alias analysis for vararg loads.Mike Pall1-8/+11
2010-09-14Avoid unnecessary vararg loads.Mike Pall1-1/+2
2010-09-14PPC: Fix line number in stack overflow error.Mike Pall1-0/+1
2010-09-14PPC: Fix write barrier in BC_TSETV.Mike Pall1-1/+1
2010-09-14PPC: Fix KBASE restore in BC_CALLT.Mike Pall1-1/+1