Auto-Vectorizing LLVMpipe For Performance Gains

Posted by Michael Larabel on June 03, 2012

Here's a hint that may allow for some notable performance gains out of the Gallium3D LLVMpipe driver for multi-core systems.

Recently I wrote about the Gallium3D LLVMpipe Driver On LLVM 3.1. There wasn't really any major performance changes to note for this Gallium3D "software rasterizer" driver that uses the CPU and not the GPU as a means of fallback support, but this Sunday I received a message from Hal Finkel. This developer from the Argonne National Laboratory wrote the new basic-block auto-vectorization pass for LLVM 3.1. Below is the message he sent over to me regarding this work and LLVMpipe.
Michael,

I looked through your benchmark results on "Gallium3D LLVMpipe Driver On LLVM 3.1", and, as author of LLVM's new basic-block autovectorization pass, I wonder if turning on autovectorization would improve the 3.1 results.

If you're curious about the autovectorization pass, you can see my presentation at the developer's conference earlier this year: http://llvm.org/devmtg/2012-04-12/

It seems like llvmpipe uses its own pass manager, which is probably not a bad thing, but it is either intentionally minimalistic, or is pretty out of date (or both). There are many other optimization passes available (see PassManagerBuilder::populateModulePassManager in lib/Transforms/IPO/PassManagerBuilder.cpp to get an idea of what is available). It looks like the current pass manager used by llvmpipe is in create_pass_manager in src/gallium/auxiliary/gallivm/lp_bld_init.c and it adds only a few optimization passes.

To add autovectorization to llvmpipe, I think adding something like this after the call to LLVMAddGVNPass(gallivm->passmgr); will work:

#if HAVE_LLVM >= 0x301
LLVMAddBBVectorizePass(gallivm->passmgr);
/* BBVectorize depends on other passes for cleanup... */
LLVMAddInstructionCombiningPass(gallivm->passmgr);
LLVMAddEarlyCSEPass(gallivm->passmgr);
#endif

I've never really used the C API, and I'm not really sure how to pass tuning parameters through (and some tuning might be helpful or necessary here -- integration between the optimization passes and the backends is not as good yet as it should be), but this would be a start.

Thanks in advance,
Hal

P.S. Please feel free to forward or repost this message elsewhere if you feel that would be helpful or more appropriate.
I'm still out of the country on this nearly month-long business trip, but hopefully a few Phoronix readers would be interested in poking around with making these code changes as it could yield some interesting performance gains for this promising GPU fallback driver. LLVMpipe is now used as the fallback for Ubuntu and Fedora when no hardware GPU driver is available.

Discuss this article in our forums, IRC channel, or email the author. You can also follow our content via RSS and on social networks like Facebook, Identi.ca, and Twitter (@Phoronix and @MichaelLarabel). Subscribe to Phoronix Premium to view our content without advertisements, view entire articles on a single page, and experience other benefits.
Latest Hardware Reviews
  1. Sumo Lounge Emperor
  2. Gallium3D Continues Improving OpenGL For Older Radeon GPUs
  3. 15-Way Open vs. Closed Source NVIDIA/AMD Linux GPU Comparison
  4. Nouveau vs. NVIDIA Linux Comparison Shows Shortcomings
Latest Software Articles
  1. GCC 4.8.0 vs. LLVM Clang 3.3 Compiler Performance
  2. Intel Linux OpenGL Driver Leading Over Apple OS X
  3. The Cost Of Ubuntu Disk Encryption
  4. Btrfs vs. EXT4 vs. XFS vs. F2FS On Linux 3.10
Latest Linux News
  1. A New X.Org-Free Wayland LiveCD Released
  2. Unity 8, Mir Made Progress This Week On Features
  3. LLVM Clang 3.3 RC2 Is Ready For Testing
  4. AMD RadeonSI Gallium3D Begins Simple CL Demos
  5. Intel Shows Off GNOME3-Based Tizen Shell
  6. Linux Desktop Security Could Be A Whole Lot Better
  7. KDE 4.11 Will Be The Last Major KDE4 Workspaces Feature Release
  8. New NVIDIA Linux Driver Supports The GeForce GTX 780
  9. Chrome 28 To Offer More Speed Improvements
  10. Digia Announces "Boot To Qt" Project
  11. X.Org Libraries Hit By Round Of Security Issues
Latest Forum Talk
  1. GCC 4.8.0 vs. LLVM Clang 3.3 Compiler Performance
  2. Unity 8, Mir Made Progress This Week On Features
  3. AMD RadeonSI Gallium3D Begins Simple CL Demos
  4. Debian GNU/Hurd 2013 Release Brings New Packages
  5. Steam: No used games...
  6. KDE 4.11 Will Be The Last Major KDE4 Workspaces...
  1. Computers
  2. Display Drivers
  3. Graphics Cards
  4. Motherboards
  5. Peripherals
  6. Processors
  7. Software
  8. Operating Systems
  9. All Articles
  1. Linux Benchmarking
  2. OpenBenchmarking.org
  3. Phoronix Test Suite