diff --git a/crates/lune-std-ffi/README.md b/crates/lune-std-ffi/README.md index 3f35d4e..a6ad488 100644 --- a/crates/lune-std-ffi/README.md +++ b/crates/lune-std-ffi/README.md @@ -40,7 +40,7 @@ Define C-ABI type information and provide conversion and casting - [**Struct `CStructInfo`:**](./src/c/struct_info.rs) Represents C Struct type - [**Struct `CTypeInfo`:**](./src/c/type_info.rs) Represents C type, extended in `/c/types` -
Mod helper.rs: C ABI type helper +
Mod helper.rs: C ABI type helper - **Function `get_conv`, `get_conv_list`:** get `FfiConvert` from userdata (CStruct, CArr, CPtr, CTypes) @@ -64,7 +64,7 @@ Define C-ABI type information and provide conversion and casting Export fixed-size source time known types and non-fixed compile time known types mod.rs implememts type-casting for all CTypes -
Mod ctype_helper: c type helper +
Mod ctype_helper: CTypeInfo helper - **Function `get_conv`:** get `FfiConvert` from ctype userdata, used for struct and array conversion diff --git a/tests/ffi/README.md b/tests/ffi/README.md index 47d2779..3298b74 100644 --- a/tests/ffi/README.md +++ b/tests/ffi/README.md @@ -1,4 +1,5 @@ + # `tests/ffi` @@ -24,6 +25,12 @@ gcc for library compiling (for external-\*) - [x] [read_boundary](./read_boundary.luau) - [x] [write_boundary](./write_boundary.luau) +**Types** + +- [x] [arr](./types/arr.luau) +- [x] [ptr](./types/ptr.luau) +- [x] [struct](./types/struct.luau) + **Pretty Print** - [x] [arr](./pretty_print/arr.luau) @@ -39,7 +46,7 @@ gcc for library compiling (for external-\*) > Note: LuaJit's os.clock function returns process CPU time (used) which much smaller then Luau's os.clock output. In this benchmark, luau uses 'time.h' instead of os.clock. See [utility/proc_clock](./utility/proc_clock/init.luau) -### [benchmark/external_call](./benchmark/external_call/init.luau) +

benchmark/external_call

**Target external c function** @@ -102,3 +109,5 @@ Command: `deno run --unstable-ffi --allow-ffi ./tests/ffi/benchmark/external_cal > MEM: 12250MiB 5600 MT/s > KERNEL: 10.0.22631 (Windows 11 x86_64) > HOST: QEMU Standard PC (Q35 + ICH9, 2009) + +