summaryrefslogtreecommitdiff
path: root/src/lj_ccall.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* FFI: Fix calling conventions for ARM hard-float EABI.Mike Pall2013-05-161-2/+6
| | | | Properly classify nested (non-transparent) structs.
* FFI: Fix calling conventions for 32 bit OSX and iOS simulator.Mike Pall2013-05-161-0/+58
| | | | | OSX uses -freg-struct-return, which returns small structs in regs. Thanks to Adriano Bertucci.
* Add partial support for building with MingW64 GCC 4.8-SEH.Mike Pall2013-05-151-2/+2
| | | | | Error handling works, C++ interoperability generally works. C++ destructors in libs compiled with G++ cause trouble (ok with MSVC).
* Bump copyright date to 2013.Mike Pall2013-02-111-1/+1
|
* FFI: Fix handling of qualified transparent structs/unions.Mike Pall2013-02-031-2/+2
|
* FFI: Don't keep CType * across call. Callback may reallocate table.Mike Pall2012-08-121-0/+2
|
* ARM: Add hard-float ABI support to the FFI (interpreter).Mike Pall2012-07-301-4/+112
|
* FFI: Box all accessed or returned enums.Mike Pall2012-07-171-1/+0
|
* Avoid pesky compiler warnings about C++ keywords (eh?).Mike Pall2012-07-031-2/+2
|
* Bump copyright date to 2012.Mike Pall2012-01-231-1/+1
|
* MIPS: Add interpreter. Enable MIPS build rules.Mike Pall2012-01-231-3/+56
|
* FFI: Add callback support (for x86/x64).Mike Pall2011-11-141-1/+8
|
* FFI: Compile calls to stdcall, fastcall and vararg functions.Mike Pall2011-10-271-2/+2
|
* FFI: Fix call argument and return handling for I8/U8/I16/U16 types.Mike Pall2011-10-131-7/+15
|
* Fix (harmless) typo.Mike Pall2011-09-211-1/+1
|
* FFI/x64: Fix struct-by-value calling conventions.Mike Pall2011-08-251-1/+1
|
* PPCSPE: Save/restore cr2, cr3 and cr4 when entering/leaving VM.Mike Pall2011-08-101-1/+1
|
* PPC: Add machine-specific part of FFI.Mike Pall2011-08-011-1/+52
|
* Fix compiler warning.Mike Pall2011-05-161-0/+2
|
* ARM: Add partial support for FFI.Mike Pall2011-04-161-0/+41
|
* Avoid compiler warning.Mike Pall2011-03-281-0/+2
|
* DUALNUM: Handle integer type in FFI.Mike Pall2011-02-271-1/+1
|
* FFI: Improve conversion error messages.Mike Pall2011-02-191-6/+7
|
* FFI: Implement POSIX/x64 struct-by-value calling conventions.Mike Pall2011-01-291-9/+126
|
* FFI: Convert enum return value of C function to underlying type.Mike Pall2011-01-261-0/+1
|
* FFI: Add symbol name redirection.Mike Pall2011-01-261-1/+9
| | | | | This works like the GCC extension, e.g.: FILE *fopen(const char *fn, const char *mode) __asm__("" "fopen64");
* FFI: Untangle and fix calling convention definitions.Mike Pall2011-01-121-69/+129
|
* FFI: Fix C calls with complex values on x64.Mike Pall2011-01-111-13/+20
|
* FFI: Auto-detect __stdcall and fix up C function declarations.Mike Pall2011-01-101-1/+9
|
* FFI: Fix function pointer lookup for calls.Mike Pall2011-01-101-4/+5
|
* Bump copyright date to 2011.Mike Pall2011-01-091-1/+1
|
* FFI: Add missing GC steps for C function calls.Mike Pall2011-01-091-11/+23
|
* FFI: Add support for calling C functions.Mike Pall2011-01-061-0/+349