summaryrefslogtreecommitdiff
path: root/src/lj_asm.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Many soft-float-related fixes to SPLIT pass and assembler backend.Mike Pall2011-06-021-10/+11
|
* ARM: Tune rematerialization scheduler.Mike Pall2011-05-311-23/+27
|
* Fix compiler warning.Mike Pall2011-05-271-1/+3
|
* ARM: Fix rematerialization scheduler.Mike Pall2011-05-261-3/+4
|
* ARM: Flush instruction cache in assembler backend.Mike Pall2011-05-261-1/+14
|
* ARM: Add ARM-specific tuning to generic assembler backend.Mike Pall2011-05-221-4/+35
|
* ARM: Add rematerialization scheduler for constants to backend.Mike Pall2011-05-221-11/+88
|
* Split up FP IR instructions with SPLIT pass for soft-float targets.Mike Pall2011-05-221-27/+85
|
* More portability cleanups for assembler backend.Mike Pall2011-05-221-13/+23
|
* Move IR_CALL* definitions to lj_ircall.h.Mike Pall2011-05-221-0/+1
|
* Portability cleanups for assembler backend.Mike Pall2011-05-171-3/+3
|
* Cleanup of target dependencies.Mike Pall2011-05-161-2/+2
|
* Add target-specific macro for stack alignment in assembler backend.Mike Pall2011-05-161-1/+1
|
* Move x86/x64 parts of JIT assembler backend to extra files.Mike Pall2011-05-121-3120/+41
|
* Disentangle target-specific parts of JIT assembler backend.Mike Pall2011-05-121-154/+187
|
* FFI: Compile C function calls with 64 bit args/results in 32 bit mode.Mike Pall2011-04-291-0/+1
|
* x86: Pop unused FP result from x87 stack.Mike Pall2011-04-291-0/+2
|
* FFI: Fix cdata finalization.Mike Pall2011-04-131-5/+1
|
* FFI: Add ctype metamethods and ffi.metatype().Mike Pall2011-04-121-1/+5
|
* Fuse XLOAD/XSTORE operands more aggressively.Mike Pall2011-04-051-3/+4
|
* Fix code generation for PHIs with type IRT_FLOAT.Mike Pall2011-04-051-1/+1
|
* 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
| | | | | | Only handles cdecl and fixarg C functions. Doesn't handle pass-by-value aggregates. Doesn't handle 64 bit args/returns on 32 bit CPUs.
* FFI: Rename IR_CNEWP to IR_CNEWI and use it to box 64 bit integers.Mike Pall2011-02-031-25/+42
| | | | | Generates smaller IR and DCE eliminates many intermediate boxes. Needs allocation sinking to eliminate the boxes kept alive by PHIs.
* 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
| | | | | | | 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.
* 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
| | | | | | | IR_KPTR holds a const pointer to possibly non-const content. IR_KKPTR holds a const pointer to definitely const content. Note that only content known by the VM to be const qualifies. Content tagged as const by users (e.g. const char *) doesn't.
* 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
|