| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | RELEASE LuaJIT-2.0.2v2.0.2 | Mike Pall | 2013-06-03 | 1 | -1/+1 |
| | | |||||
| * | Add partial support for building with MingW64 GCC 4.8-SEH. | Mike Pall | 2013-05-15 | 1 | -1/+2 |
| | | | | | | Error handling works, C++ interoperability generally works. C++ destructors in libs compiled with G++ cause trouble (ok with MSVC). | ||||
| * | Clarify comments in Makefile on -DLUAJIT_ENABLE_LUA52COMPAT. | Mike Pall | 2012-10-04 | 1 | -3/+4 |
| | | |||||
| * | Move load/dump functions to lj_load.c. Add load modes. | Mike Pall | 2012-09-21 | 1 | -1/+1 |
| | | |||||
| * | Remove old Makefile rules. | Mike Pall | 2012-08-26 | 1 | -5/+1 |
| | | |||||
| * | Replace strtod() with builtin string to number conversion. | Mike Pall | 2012-08-25 | 1 | -2/+2 |
| | | |||||
| * | Handle cross-compiles with FPU/no-FPU or hard-fp/soft-fp ABI mismatch. | Mike Pall | 2012-07-29 | 1 | -1/+7 |
| | | |||||
| * | Change DynASM bit operations to use Lua BitOp. | Mike Pall | 2012-07-08 | 1 | -1/+1 |
| | | |||||
| * | Add allocation sinking and store sinking optimization. | Mike Pall | 2012-07-02 | 1 | -1/+1 |
| | | |||||
| * | Fix build issues on Cygwin and MinGW with optional MSys. | Mike Pall | 2012-06-22 | 1 | -13/+23 |
| | | |||||
| * | CONSOLE: Handle P64, GPR64, TOC* and PPE (PS3) in PPC interpreter. | Mike Pall | 2012-06-13 | 1 | -1/+4 |
| | | | | | PS3 build command: make HOST_CC="gcc -m32" CROSS=ppu-lv2- | ||||
| * | x64: Fix DynASM defines. | Mike Pall | 2012-06-12 | 1 | -1/+3 |
| | | |||||
| * | OSX: Change dylib names to be consistent with other platforms. | Mike Pall | 2012-06-11 | 1 | -1/+1 |
| | | |||||
| * | ARM: Cleanup interpreter. | Mike Pall | 2012-06-11 | 1 | -0/+6 |
| | | | | | Use DynASM defines instead of C defines. | ||||
| * | x86/x64: Clean up interpreter. | Mike Pall | 2012-06-10 | 1 | -17/+2 |
| | | | | | | Use DynASM defines instead of C defines. Remove support for ancient CPUs without CMOV (before Pentium Pro). | ||||
| * | Pass various build, arch and OS flags to DynASM. | Mike Pall | 2012-06-10 | 1 | -6/+39 |
| | | |||||
| * | CONSOLE: Fix PS3 build. | Mike Pall | 2012-06-10 | 1 | -3/+17 |
| | | |||||
| * | Reorganize build process. | Mike Pall | 2012-06-09 | 1 | -92/+75 |
| | | | | | | | | | | Drop pre-translated buildvm_*.h. Rename buildvm_*.dasc to vm_*.dasc. Move buildvm* to host directory. Build minilua, unless HOST_LUA is set. Use HOST_LUA to run DynASM. Translate only vm_*.dasc for target architecture. | ||||
| * | Move lib/* to src/jit/*. | Mike Pall | 2012-06-08 | 1 | -1/+1 |
| | | |||||
| * | Split-off large-file support flags to TARGET_LFSFLAGS. | Mike Pall | 2012-06-05 | 1 | -1/+2 |
| | | |||||
| * | Add more comparison variants to Valgrind suppressions file. | Mike Pall | 2012-04-26 | 1 | -0/+1 |
| | | |||||
| * | Fix OSX build issues. Bump minimum required OSX version to 10.4 | Mike Pall | 2012-03-28 | 1 | -5/+8 |
| | | | | | | Only set MACOSX_DEPLOYMENT_TARGET to 10.4 if not set. Always force -fno-stack-protector. | ||||
| * | Bump copyright date to 2012. | Mike Pall | 2012-01-23 | 1 | -1/+1 |
| | | |||||
| * | MIPS: Add interpreter. Enable MIPS build rules. | Mike Pall | 2012-01-23 | 1 | -3/+2 |
| | | |||||
| * | MIPS: Add build rules (non-functional, yet). | Mike Pall | 2011-12-15 | 1 | -1/+17 |
| | | |||||
| * | Auto-detect target arch via cross-compiler. Drop TARGET=arch. | Mike Pall | 2011-12-15 | 1 | -4/+5 |
| | | |||||
| * | FFI: Add callback support (for x86/x64). | Mike Pall | 2011-11-14 | 1 | -2/+2 |
| | | |||||
| * | Allow selection of single-number vs. dual-number mode in Makefile. | Mike Pall | 2011-10-24 | 1 | -0/+6 |
| | | |||||
| * | Fix install_name and versioning on OSX. | Mike Pall | 2011-07-03 | 1 | -9/+6 |
| | | |||||
| * | PPC: Add build rules for PPC interpreter (non-functional, yet). | Mike Pall | 2011-07-03 | 1 | -1/+13 |
| | | |||||
| * | PPC: Separate PPC vs. PPCSPE interpreter source files. | Mike Pall | 2011-07-03 | 1 | -4/+4 |
| | | |||||
| * | RELEASE LuaJIT-2.0.0-beta8 (fixed)v2.0.0-beta8-fixed | Mike Pall | 2011-06-23 | 1 | -2/+2 |
| | | |||||
| * | RELEASE LuaJIT-2.0.0-beta8v2.0.0-beta8 | Mike Pall | 2011-06-23 | 1 | -2/+2 |
| | | |||||
| * | More fixes for the Solaris/x86 build. Thanks to Will Metcalf. | Mike Pall | 2011-06-14 | 1 | -1/+6 |
| | | |||||
| * | Add support for bytecode loading/saving. | Mike Pall | 2011-06-13 | 1 | -1/+1 |
| | | |||||
| * | Move debugging/introspection functionality to lj_debug.c. | Mike Pall | 2011-06-07 | 1 | -1/+1 |
| | | |||||
| * | Move math helpers to lj_vmmath.c. Add missing log2/exp2 for Symbian. | Mike Pall | 2011-06-03 | 1 | -1/+1 |
| | | |||||
| * | Move x86/x64 parts of JIT assembler backend to extra files. | Mike Pall | 2011-05-12 | 1 | -1/+3 |
| | | |||||
| * | Improve target OS selection for buildvm. | Mike Pall | 2011-04-29 | 1 | -4/+20 |
| | | |||||
| * | ARM: Fix ABI and build issues for iOS. Now works on iOS 3.0+. | Mike Pall | 2011-04-28 | 1 | -0/+18 |
| | | |||||
| * | Add common TARGET_FLAGS option to Makefile. | Mike Pall | 2011-04-17 | 1 | -4/+4 |
| | | |||||
| * | ARM: Enable ARM port. | Mike Pall | 2011-04-17 | 1 | -2/+2 |
| | | |||||
| * | ARM: Add build rules (still disabled). | Mike Pall | 2011-04-07 | 1 | -0/+7 |
| | | |||||
| * | Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs. | Mike Pall | 2011-02-02 | 1 | -1/+1 |
| | | | | | | | | Add generic HIOP instruction for extra backend functionality. Add support for HIOP to x86 backend. Use POWI for 64 bit integer x^k, too. POWI is lowered to a call by SPLIT or the x64 backend. | ||||
| * | FFI: Move code for cdata arithmetic to lj_carith.c. | Mike Pall | 2011-01-26 | 1 | -1/+2 |
| | | |||||
| * | ARM: Add ARM target architecture selection (disabled). | Mike Pall | 2011-01-25 | 1 | -0/+6 |
| | | |||||
| * | FFI: Add ffi.load() and ffi.C default namespace. | Mike Pall | 2011-01-10 | 1 | -1/+1 |
| | | |||||
| * | Bump copyright date to 2011. | Mike Pall | 2011-01-09 | 1 | -1/+1 |
| | | |||||
| * | FFI: Add support for calling C functions. | Mike Pall | 2011-01-06 | 1 | -1/+1 |
| | | |||||
| * | FFI: Record cdata index operations (preliminary, lots of NYI cases). | Mike Pall | 2010-12-08 | 1 | -1/+1 |
| | | |||||
