diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-11-25 09:09:26 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-11-25 09:09:26 +0000 |
commit | bf5173460f06e98023fa8d68a70eb812dbb65690 (patch) | |
tree | 202084b22658f63e3a42f1a5651fe03832c4f57c /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | ea3824f1607e9a484673beee0188dd6963b5efe3 (diff) | |
download | bcm5719-llvm-bf5173460f06e98023fa8d68a70eb812dbb65690.tar.gz bcm5719-llvm-bf5173460f06e98023fa8d68a70eb812dbb65690.zip |
The induction-pointer work is inspired by a research paper. This commit adds a reference.
llvm-svn: 168559
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index f9064325b53..84516eb61bb 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/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 |