diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-04-15 05:53:23 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-04-15 05:53:23 +0000 |
commit | fc175d97ffd4a8de2525173a653caca62321a0c4 (patch) | |
tree | 505e4e284f6ee5c16b443e1b9a4a2718af8f2c98 /docs | |
parent | 1129a832e6ef5291b0144e9f22c76b2599cd5587 (diff) |
Docs: merge the description of the BB and SLP vectorizers and document the -fslp-vectorize-aggressive flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Vectorizers.rst | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/docs/Vectorizers.rst b/docs/Vectorizers.rst index 42e03d2978..693a148fa5 100644 --- a/docs/Vectorizers.rst +++ b/docs/Vectorizers.rst @@ -292,25 +292,15 @@ And Linpack-pc with the same configuration. Result is Mflops, higher is better. .. image:: linpack-pc.png -.. _bb-vectorizer: - -The Basic Block Vectorizer -========================== - -Usage ------- - -The Basic Block Vectorizer is not enabled by default, but it can be enabled -through clang using the command line flag: - -.. code-block:: console +.. _slp-vectorizer: - $ clang -fslp-vectorize file.c +The SLP Vectorizer +================== Details ------- -The goal of basic-block vectorization (a.k.a. superword-level parallelism) is +The goal of SLP vectorization (a.k.a. superword-level parallelism) is to combine similar independent instructions within simple control-flow regions into vector instructions. Memory accesses, arithemetic operations, comparison operations and some math functions can all be vectorized using this technique @@ -322,22 +312,30 @@ into vector operations. .. code-block:: c++ - int foo(int a1, int a2, int b1, int b2) { - int r1 = a1*(a1 + b1)/b1 + 50*b1/a1; - int r2 = a2*(a2 + b2)/b2 + 50*b2/a2; - return r1 + r2; + void foo(int a1, int a2, int b1, int b2, int *A) { + A[0] = a1*(a1 + b1)/b1 + 50*b1/a1; + A[1] = a2*(a2 + b2)/b2 + 50*b2/a2; } -.. _slp-vectorizer: +Usage +------ -The SLP Vectorizer -========================== +The SLP Vectorizer is not enabled by default, but it can be enabled +through clang using the command line flag: + +.. code-block:: console + + $ clang -fslp-vectorize file.c + +LLVM has a second phase basic block vectorization phase +which is more compile-time intensive (The BB vectorizer). This optimization +can be enabled through clang using the command line flag: + +.. code-block:: console + + $ clang -fslp-vectorize-aggressive file.c -The SLP vectorizer (superword-level parallelism) is a new experimental -infrastructure for vectorizing code and rolling loops. -A major focus of the work on the SLP vectorizer is to make it fast and -flexible. It is designed as a library that can be used by other passes. The SLP vectorizer is in early development stages but can already vectorize and accelerate many programs in the LLVM test suite. |