Quake 2 will be playable, but it works without llvm. Btw. what's the point of this? If someone has old PC without graphic acceleration he has slow CPU as well and with llvm his desktop will be slow as crap.
Phoronix: LLVMpipe Still Doesn't Work For Linux Gaming
For those curious what OpenGL gaming frame-rates are like if trying to run LLVMpipe on the latest Intel Ivy Bridge processors, here are some numbers...
http://www.phoronix.com/vr.php?view=MTEwODM
Quake 2 will be playable, but it works without llvm. Btw. what's the point of this? If someone has old PC without graphic acceleration he has slow CPU as well and with llvm his desktop will be slow as crap.
Last edited by kraftman; 05-28-2012 at 02:54 AM.
Is there any roadmap for LLVMpipe?
What does the future hold for LLVMpipe?
How can LLVMpipe be improved?
Can new functionality be added? If so, what?
Can it be speed up? If so, how?
Not really, no.
Well, the next major milestone is GL 3 support. It seems like it's pretty close, so hopefully it makes it as part of the Mesa 8.1 release, but no one has actually committed to making sure that happens.What does the future hold for LLVMpipe?
I think the main thing is just adding new features, like GL3. I'm not sure anyone has thought about the best way to bring OpenCL support to it yet.How can LLVMpipe be improved?
Can new functionality be added? If so, what?
There was that one project to add a kernel side to the driver, which would let it avoid making a bunch of memory copies that it currently has to do. I'm not sure what the status of that was, if it's in with some of the DMA-BUF work or what. Beyond that, I don't think anyone is particularly focused on the performance of the driver. Just adding new features seems to be what most people are looking at.Can it be speed up? If so, how?
Does LLVMpipe use GEM? TTM? KMS? video acceleration?
Are multiple threads being used or only a single thread?
KMS is something that would be used by your DDX, not really by LLVMpipe. LLVMpipe just uses LLVM's optimizing compiler (although how much optimization it does is debatable, considering the poor performance of its generated code at least for x86 binaries) to back OpenGL calls and produce "efficient" native code to run on the CPU for these calls. It could probably support other state trackers, but right not there's no point.
It doesn't use/support GEM or TTM because that would require an LLVMpipe kernel module which doesn't exist (yet?).
Video acceleration would be pointless, since you could write an equally-fast (or faster) software decoder for the formats you want, or just use ffmpeg's, which are probably going to be the fastest software decoders available.
Again, the whole point of llvmpipe is that there's no GPU hardware being used, so any features you can think of that are obviated by existing software solutions (such as video decoding) are probably not going to be worked on.
And now for a repeat of these LLVMpipe benchmarks with LLVM 3.1?