retroforth/vm/nga-c/dev-ffi.c
crc 5e9ce5ca1a update header comment block in vm/nga-c
FossilOrigin-Name: be070c1d49c1757084eab0447e037f641953d4b345a808a97b3f2ebdf07dafb7
2023-10-03 12:45:12 +00:00

55 lines
1.3 KiB
C

/**************************************************************
_ __ _ _
_ __ ___| |_ _ __ ___ / _| ___ _ __| |_| |__
| '__/ _ \ __| '__/ _ \| |_ / _ \| '__| __| '_ \
| | | __/ |_| | | (_) | _| (_) | | | |_| | | |
|_| \___|\__|_| \___/|_| \___/|_| \__|_| |_|
for nga
(c) Charles Childers, Luke Parrish, Marc Simpsonn,
Jay Skeer, Kenneth Keating
**************************************************************/
#ifdef ENABLE_FFI
#include <dlfcn.h>
typedef void (*External)(void *);
void *handles[32];
External funcs[32000];
int nlibs, nffi;
void open_library(NgaState *vm) {
handles[nlibs] = dlopen(string_extract(vm, stack_pop(vm)), RTLD_LAZY);
stack_push(vm, nlibs);
nlibs++;
}
void map_symbol(NgaState *vm) {
int h;
h = stack_pop(vm);
char *s = string_extract(vm, stack_pop(vm));
funcs[nffi] = dlsym(handles[h], s);
stack_push(vm, nffi);
nffi++;
}
void invoke(NgaState *vm) {
funcs[stack_pop(vm)](vm);
}
void io_ffi(NgaState *vm) {
switch (stack_pop(vm)) {
case 0: open_library(vm); break;
case 1: map_symbol(vm); break;
case 2: invoke(vm); break;
}
}
void query_ffi(NgaState *vm) {
stack_push(vm, 0);
stack_push(vm, 8100); /* device type 8100 */
}
#endif