-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Best way to implement user-defined FFI? #338
Comments
Why not have the user specify C files to include and the names of functions that should be registered? |
Including C source code will not scale well and will fail for anything slightly more complex. What I think most languages do is have the ability to load arbitrary compiled object files (libraries, dlls, etc) and a builtin way of registering functions in that loaded library. Even if dinamically loading libraries is too much (would require a somewhat portable way of calling the system's loader), for statically including libraries that would be enough. |
How do we statically link libraries for the |
We did dylibs in hvm-core and it seemed to work well. Had to do some version checks / warnings though. |
I meant that for statically including FFI, we can rely on the compiler/linker, while dinamically loading is a bit more complicated and harder to support for different platforms. |
As IO is being finalized, my initial thoughts of the design exposed to users would be the following:
There are some remaining implementation questions though:
|
Initial attempt here: #394 |
I've pushed a PR for the initial IO (#336). It works as a simple monadic FFI interface between the interaction net computations and native function calls. The core is functionality is done C, but it is still missing on CUDA. After that, the main challenge becomes: what is the best way to let the user implement their own IO?
One way to do it would be to let the user add C strings in the middle of a HVM (and Bend) file. For example, a custom
put_text
could be implemented as:This would then be treated in two ways:
For the interpreted version, we would invoke a C compiler to generate a dynamic lib, load it on the program, and push it to
book->ffns_buf
.For the compiled version, we would just add it to the book as if they were builtin ffns (see the
book_init
fn).While this works, this sounds a little bit hacky, since the user would have to use internal functions like
read_str
andnode_load
, so, we'd end up coupling the HVM file format to lots of internal functions name and conventions, preventing us from refactoring later. An alternative would be to pre-readback the Port into a C structure (converting λ-encodings to C numbers, strings, trees, etc.). But that introduces complexity and inefficiency. For example, a real-time image renderer probably wants to use a custom, parallelread_img
function which operates directly on the inet memory. And other than these concerns, I'm also not sure including C strings like that from the middle of.hvm
files is really an elegant approach, but I'm not sure what else we could possibly do.The text was updated successfully, but these errors were encountered: