summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2012-11-25 09:09:26 +0000
committerNadav Rotem <nrotem@apple.com>2012-11-25 09:09:26 +0000
commitd7e0b7cdc59d04bec6cf5273cde3d2a16b13800e (patch)
tree54961d59fc04dce2d03cd3520c77e03be69c6ee4 /lib
parent0af63ac245eeb0cce206ed4dbc9abdc0d86742cb (diff)
downloadllvm-d7e0b7cdc59d04bec6cf5273cde3d2a16b13800e.tar.gz
llvm-d7e0b7cdc59d04bec6cf5273cde3d2a16b13800e.tar.bz2
llvm-d7e0b7cdc59d04bec6cf5273cde3d2a16b13800e.tar.xz
The induction-pointer work is inspired by a research paper. This commit adds a reference.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168559 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Vectorize/LoopVectorize.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp
index f9064325b5..84516eb61b 100644
--- a/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -25,6 +25,7 @@
// 4. LoopVectorizationCostModel - A unit that checks for the profitability
// of vectorization. It decides on the optimal vector width, which
// can be one, if vectorization is not profitable.
+//
//===----------------------------------------------------------------------===//
//
// The reduction-variable vectorization is based on the paper:
@@ -36,6 +37,9 @@
// Other ideas/concepts are from:
// A. Zaks and D. Nuzman. Autovectorization in GCC-two years later.
//
+// S. Maleki, Y. Gao, M. Garzaran, T. Wong and D. Padua. An Evaluation of
+// Vectorizing Compilers.
+//
//===----------------------------------------------------------------------===//
#define LV_NAME "loop-vectorize"
#define DEBUG_TYPE LV_NAME