search for: classexecutionengin

Displaying 2 results from an estimated 2 matches for "classexecutionengin".

Did you mean: classexecutionengine
2003 Nov 02
2
[LLVMdev] Re: LLVM and PyPy
...a lot of sense. :) > driving LLVM from LLVM code is closer to our needs. Is there a specific > interface to do that? Sure, what exactly do you mean by driving LLVM code from LLVM? The main interface for executing LLVM code is the ExecutionEngine interface: http://llvm.cs.uiuc.edu/doxygen/classExecutionEngine.html There are concrete implementations of this interface for the JIT and for the interpreter. Note that we will probably need to add some additional methods to this class to enable all of the functionality that you need (that's not a problem though :). > Is it possible to extract from L...
2003 Oct 31
5
[LLVMdev] Re: LLVM and PyPy
On Fri, 31 Oct 2003, Armin Rigo wrote: > Hello Chris, > > We have been investigating your project and the good documentation > and are very impressed. If we understood your goals correctly > this seems like a good match for our ongoing and active PyPy project, > a reimplementation of the Python language in Python. Cool. We are all big fans of Python here. :) > We'll