You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ken
22abc7086e
|
4 years ago | |
---|---|---|
.. | ||
doc | 4 years ago | |
include | 4 years ago | |
libffi.xcodeproj | 4 years ago | |
m4 | 4 years ago | |
man | 4 years ago | |
src | 4 years ago | |
testsuite | 4 years ago | |
.gitignore | 4 years ago | |
.travis.yml | 4 years ago | |
ChangeLog.libffi | 4 years ago | |
ChangeLog.libffi-3.1 | 4 years ago | |
ChangeLog.libgcj | 4 years ago | |
ChangeLog.v1 | 4 years ago | |
LICENSE | 4 years ago | |
Makefile.am | 4 years ago | |
README | 4 years ago | |
acinclude.m4 | 4 years ago | |
autogen.sh | 4 years ago | |
configure.ac | 4 years ago | |
configure.host | 4 years ago | |
generate-darwin-source-and-headers.py | 4 years ago | |
libffi.pc.in | 4 years ago | |
libtool-version | 4 years ago | |
msvcc.sh | 4 years ago | |
stamp-h.in | 4 years ago | |
texinfo.tex | 4 years ago |
README
Status
======
libffi-4?? was released on TBD. Check the libffi web
page for updates: <URL:http://sourceware.org/libffi/>.
What is libffi?
===============
Compilers for high level languages generate code that follow certain
conventions. These conventions are necessary, in part, for separate
compilation to work. One such convention is the "calling
convention". The "calling convention" is essentially a set of
assumptions made by the compiler about where function arguments will
be found on entry to a function. A "calling convention" also specifies
where the return value for a function is found.
Some programs may not know at the time of compilation what arguments
are to be passed to a function. For instance, an interpreter may be
told at run-time about the number and types of arguments used to call
a given function. Libffi can be used in such programs to provide a
bridge from the interpreter program to compiled code.
The libffi library provides a portable, high level programming
interface to various calling