Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/facebook/luaffifb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ffi.c
AgeCommit message (Expand)Author
2016-06-27Fixing memleak: jit->pages not free'dAlexander Kiranov
2016-06-17Changed cdata to native Lua 5.3 numbersAlexander Kiranov
2016-04-11Port to PPC64elGustavo Serra Scalet
2016-01-02Add support for Lua 5.3Sam Gross
2015-11-17Fixes for Lua 5.1Sam Gross
2015-11-13Convert io.* file handles to FILE* pointers.Sam Gross
2015-09-16Fix LICENSE and PATENTS fileSam Gross
2015-08-17Fix compiler warningSam Gross
2015-08-17Add ffi.NULL as a copy of ffi.C.NULLSam Gross
2015-08-12Allow FFI number types as sizes to ffi.stringSam Gross
2015-08-04Add Facebook LICENSE, PATENTS, and CONTRIBUTING filesSam Gross
2015-07-21Remove reference flag when ereferencing a pointer in a structSam Gross
2015-05-06TEMP: Don't free the JIT-compiled binding code.Sam Gross
2015-05-01Additional support for references.Sam Gross
2015-05-01Support casting ffi.C functions to cdata numbers.Sam Gross
2015-04-28Overload type() to return "cdata" for cdata.Sam Gross
2015-04-28Complex numbers may have metatypes.Sam Gross
2015-04-28Allow pointers to be index with boxed integer types.Sam Gross
2015-04-28Don't use try packed/unpacked pattern to create cdata.Sam Gross
2015-04-28Initalize struct ctype argument to zero in to_cdata.Sam Gross
2015-04-28Support complex numbers in cdata index op.Sam Gross
2015-04-28Support C++ reference types.Sam Gross
2015-04-28Don't include ctype pointer in string representation.Sam Gross
2015-04-28Allow void* values to be assigned to any pointer type.Sam Gross
2015-04-28Create complex numbers from lua tables.Sam Gross
2013-11-05fix pointer types so they call metatypes; also a Lua stack error the test foundJustin Cormack
2013-10-24add __pairs and __ipairsJustin Cormack
2013-10-07add __new metamethod supportJustin Cormack
2013-03-15Add a cast from int64_t -> intptr_t before casting to void* to get the compil...James McKaskill
2012-06-05Fix two argument form of ffi.fillJames R. McKaskill
2012-06-05Refactor unsigned types into the signed types with an is_unsigned flagJames R. McKaskill
2012-06-05Fix two argument ffi.copyJames R. McKaskill
2012-06-05Treat variable arrays where the user hasn't specified a size as pointers (mos...James R. McKaskill
2012-06-05cleanup debug tostringJames R. McKaskill
2012-06-04Relax cast rules from numbersJames R. McKaskill
2012-06-04ffi.new and ffi.cast now support more than argument for structs and arraysJames R. McKaskill
2012-06-04Allow ffi.cast to cast from pointers to integral typesJames R. McKaskill
2012-06-04Improve handling of boxed ints < 64 bitsJames R. McKaskill
2012-06-04cdata_tostring should chain user provided __tostringJames R. McKaskill
2012-06-04ffi_number should call tonumber with all args and retsJames R. McKaskill
2012-05-13Add support for complex.re and .im fields.James R. McKaskill
2012-05-01Use ptrdiff_t instead of int for struct offsetsJames R. McKaskill
2012-04-30Refactor function parsing to handle functions returning function pointers.James R. McKaskill
2012-04-30fix parsing of long double with msvcJames R. McKaskill
2012-04-27Fix some ffi.istype casesJames R. McKaskill
2012-04-25Add partial long double support.James R. McKaskill
2012-04-25Add gcc mode attributeJames R. McKaskill
2012-04-25Add va_list as an anon struct for cases where its not sizeof(void*)James R. McKaskill
2012-04-25A few places got missed in split of functions and function pointersJames R. McKaskill
2012-04-23Add support for exported global variables.James R. McKaskill