Hello everyone,
I want to do a LLVM server which is multi-thread, translating independent LLVM IR files per thread in parallel.
I am curious about the status of multi-thread LLVM. Any replies is appreciated.
Ching
Hello everyone,
I want to do a LLVM server which is multi-thread, translating independent LLVM IR files per thread in parallel.
I am curious about the status of multi-thread LLVM. Any replies is appreciated.
Ching
I want to do a LLVM server which is multi-thread, translating independent LLVM
IR files per thread in parallel.
I am curious about the status of multi-thread LLVM. Any replies is appreciated.
I suppose you want to know LLVM JIT status. If so, please see [1]. There is a
paper using LLVM JIT in parallel [2], you might want to take a look. As for
multithreading LLVM itself, say pipeling LLVM optimization passes, I don't know
what the status is [3].
HTH,
chenwj
[1] http://llvm.org/docs/ProgrammersManual.html#threading
[2] http://groups.inf.ed.ac.uk/pasta/papers/pldi044-bohm.pdf
[3] http://llvm.org/docs/WritingAnLLVMPass.html#SMP