summaryrefslogtreecommitdiff
path: root/src/lj_asm.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* DUALNUM: Add integer variant of MIN/MAX.Mike Pall2011-03-111-2/+23
* DUALNUM: Handle integer type in JIT compiler.Mike Pall2011-03-101-14/+21
* x86/x64: Fix code generation for fused IR_MUL/IR_MULOV.Mike Pall2011-03-101-1/+1
* FFI: Fix x86 code generation for ffi.string().Mike Pall2011-03-101-1/+1
* Fix code generation for bit.bnot().Mike Pall2011-03-071-1/+1
* DUALNUM: Make overflow guards weak. Add IR_USE and IR_MULOV.Mike Pall2011-03-071-0/+3
* Fix code generation for Intel Atom in x64 mode.Mike Pall2011-03-031-1/+1
* FFI: Fix compiled ffi.string() semantics.Mike Pall2011-02-281-1/+1
* Add IR_XBAR, a barrier against XLOAD/XSTORE optimizations.Mike Pall2011-02-071-1/+1
* FFI: Record simple C function calls.Mike Pall2011-02-051-25/+92
* FFI: Rename IR_CNEWP to IR_CNEWI and use it to box 64 bit integers.Mike Pall2011-02-031-25/+42
* Rename IR_POWI to IR_POW.Mike Pall2011-02-021-4/+4
* FFI: Record 64 bit integer divide and modulo.Mike Pall2011-02-021-5/+26
* Add SPLIT pass to split 64 bit IR instructions for 32 bit CPUs.Mike Pall2011-02-021-81/+363
* Combine i8/u8 XLOAD with BAND+comparison into test byte mrm, imm8.Mike Pall2011-01-191-0/+20
* Differentiate between IR_KPTR and IR_KKPTR.Mike Pall2011-01-191-3/+3
* FFI: Record 64 bit integer comparisons and pointer comparisons.Mike Pall2011-01-171-1/+1
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
* Fix handling of floats in x86/x64 backend.Mike Pall2011-01-051-13/+17
* Add support for non-constant integer IR_MUL to backend.Mike Pall2011-01-031-27/+13
* Add support for integer IR_NEG to backend.Mike Pall2011-01-031-4/+9
* Improve uint64_t <-> FP conversions in x64 backend.Mike Pall2011-01-021-13/+17
* Add support for uint64_t <-> FP conversions to x64 backend.Mike Pall2011-01-021-15/+34
* Add 8/16 to 32 bit sign/zero-extension variants to CONV.Mike Pall2010-12-311-1/+24
* Fix register allocation for FP <- int conversion.Mike Pall2010-12-311-1/+1
* Refactoring of conversion ops, part 5: drop TOINT/TOI64/TONUM.Mike Pall2010-12-311-44/+2
* Copy destination type for CONV from ir->t to op2, too.Mike Pall2010-12-311-1/+1
* Add support for IRT_FLOAT to XLOAD/XSTORE.Mike Pall2010-12-301-2/+5
* Refactoring of conversion ops, part 1: add IR_CONV.Mike Pall2010-12-301-1/+95
* Improve register allocation for loops with variable shifts.Mike Pall2010-12-231-1/+4
* Fix XSTORE for IRT_NUM constants.Mike Pall2010-12-201-1/+2
* FFI: Drop IR_CNEWI. Add IR_CNEWP only for pointers/refs.Mike Pall2010-12-171-58/+32
* FFI: Add IR_CNEW/IR_CNEWI to allocate/init cdata objects.Mike Pall2010-12-111-1/+90
* x86/x64 backend: keep invariants on the right rather than fusing loads.Mike Pall2010-12-091-3/+6
* Avoid fusing loads if there are multiple references.Mike Pall2010-12-081-8/+13
* Fix IRT_NUM support for XLOAD/XSTORE.Mike Pall2010-12-081-2/+3
* FFI: Turn cdata indexing into x86/x64 [base+idx*sz+ofs] addressing.Mike Pall2010-12-081-4/+36
* Fix x64 code generation for A16+REX prefixed instructions.Mike Pall2010-12-081-0/+1
* Fix register allocation for 8 bit stores in x86 backend.Mike Pall2010-12-071-2/+10
* Add IRT_NUM support to XLOAD/XSTORE.Mike Pall2010-12-061-2/+4
* Add IR_TOI64.Mike Pall2010-12-061-0/+19
* Fix 64 bit shifts in backend. Fix shift by 0.Mike Pall2010-12-061-2/+2
* Fix XLOAD/XSTORE references.Mike Pall2010-12-061-2/+3
* Add support for integer IR_MUL.Mike Pall2010-12-061-1/+31
* Support all kinds of XLOAD/XSTORE references in backend.Mike Pall2010-12-061-6/+13
* Avoid warning.Mike Pall2010-12-061-0/+1
* Add IR_XSTORE.Mike Pall2010-12-061-4/+9
* Add support for 64 bit integer arithmetic to x64 backend.Mike Pall2010-12-061-33/+51
* Fix xmm spill/restore broken by b1fb71fb.Mike Pall2010-12-051-7/+16
* Add IR_KINT64.Mike Pall2010-12-051-21/+44