Displaying 2 results from an estimated 2 matches for "plisp".
Did you mean:
pdisp
2019 Mar 08
2
Query about JIT
...logies if this list is not the right venue for this query - suitable
redirection would be appreciated in that case.
I have a JIT use case that I'd like to know the best way to implement using
LLVM.
I am looking to migrate from the existing native compilation option (Tiny C
Compiler - TCC) for pLisp, a Lisp dialect and IDE.
At present, the native compilation is done by converting the Lisp code to
C, storing the C code in a char buffer, and passing it to TCC
programmatically via the API provided. I get a function pointer in return,
which I store and invoke as needed.
Delving into the LLVM doc...
2019 Mar 12
2
Query about JIT
...uery - suitable
> redirection would be appreciated in that case.
>
>
>
> I have a JIT use case that I'd like to know the best way to implement
> using LLVM.
>
>
>
> I am looking to migrate from the existing native compilation option (Tiny
> C Compiler - TCC) for pLisp, a Lisp dialect and IDE.
>
>
>
> At present, the native compilation is done by converting the Lisp code to
> C, storing the C code in a char buffer, and passing it to TCC
> programmatically via the API provided. I get a function pointer in return,
> which I store and invoke as...