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
AgeCommit message (Expand)Author
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-28Don't require semicolon for a single statement to match luajit.Sam Gross
2015-04-28Include line number in require_token failure.Sam Gross
2015-04-28Dynamic libraries are .dylib on Darwin.Sam Gross
2015-04-28Create complex numbers from lua tables.Sam Gross
2015-04-18Allow any casts and support character literal constants.Sam Gross
2013-11-09Merge pull request #64 from justincormack/pointersJames McKaskill
2013-11-09Merge pull request #65 from justincormack/rtldJames McKaskill
2013-11-08LuaJIT dlopens ffi libraries with RTLD_LAZY not RTLD_NOW so do the same hereJustin Cormack
2013-11-05fix pointer types so they call metatypes; also a Lua stack error the test foundJustin Cormack
2013-11-05add test for metatypes accessible through pointerJustin Cormack
2013-10-24Merge pull request #63 from justincormack/pairsJames McKaskill
2013-10-24default to lua 5.2 in build as metatables work better with 5.2Justin Cormack
2013-10-24add __pairs and __ipairsJustin Cormack
2013-10-07Merge pull request #58 from justincormack/newJames McKaskill
2013-10-07add __new metamethod supportJustin Cormack
2013-07-29Fix a stack overflow bug introduced in 0b0f2eed4597f0b09950e97b8540dff1cd3ba115Joshua Jensen
2013-05-04Merge pull request #53 from jjensen/fix-const-typedefsJames McKaskill
2013-05-04Merge pull request #52 from jjensen/support-unsigned-static-constJames McKaskill
2013-05-04Support 8-, 16-, and 32-bit numeric types when parsing static const valuesJoshua Jensen
2013-05-04Fix a const preservation issue when using typedefsJoshua Jensen
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-22Renamed README.txt to README.mdJames McKaskill
2012-05-14Update .gitignoreJames R. McKaskill
2012-05-13Add support for complex.re and .im fields.James R. McKaskill
2012-05-11Off by one when copying submembers of unnamed unions.James R. McKaskill
2012-05-09Strip out some more inline functions in test_include.shJames R. McKaskill
2012-05-09Handle __attribute__((aligned))James R. McKaskill
2012-05-09Don't overwrite the previous value of rdi in fastcall callbacksJames R. McKaskill
2012-05-01Use ptrdiff_t instead of int for struct offsetsJames R. McKaskill
2012-05-01Win64: Fix call to lua_pushboolean for float arguments for callbacksJames R. McKaskill
2012-05-01Win64: Off by 8 for the shadow space. Was overwriting the return address.James R. McKaskill
2012-05-01bools are uint8 and so should be zero extendedJames R. McKaskill