Hi, What's the status of LLVM on Visual Studio? In particular, our application would like to generate some LLVM code, then call into it. Is this possible with the JIT compiler? Is it possible by creating & loading a .dll? Thanks, Martin
"Martin C. Martin" <martin at martincmartin.com> writes:> What's the status of LLVM on Visual Studio? > > In particular, our application would like to generate some LLVM code, > then call into it. Is this possible with the JIT compiler?Yes.> Is it possible by creating & loading a .dll?AFAIK, not yet. In any case, generating code and calling into it is what the JIT is for.
"Martin C.Martin" <martin at martincmartin.com> writes:>>> In particular, our application would like to generate some LLVM code, >>> then call into it. Is this possible with the JIT compiler? >> >> Yes. > > Great! I assume the JITed code can call back into my application?Yes.