diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-12-19 11:09:15 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-12-19 11:09:15 +0000 |
commit | 8b7c89f2d49dbce6832ba89b991a7134769e84fc (patch) | |
tree | 22b285a498bb82a8f44334c37638d6036c7a7c9a /lib/Transforms/Vectorize/LoopVectorize.h | |
parent | fc8657be3470e5b3b63705c9252251acba3c1606 (diff) |
LoopVectorize: Make iteration over induction variables not depend on pointer values.
MapVector is a bit heavyweight, but I don't see a simpler way. Also the
InductionList is unlikely to be large. This should help 3-stage selfhost
compares (PR14647).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Vectorize/LoopVectorize.h')
-rw-r--r-- | lib/Transforms/Vectorize/LoopVectorize.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.h b/lib/Transforms/Vectorize/LoopVectorize.h index e5ef29052e..cae1093a55 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.h +++ b/lib/Transforms/Vectorize/LoopVectorize.h @@ -47,12 +47,12 @@ #define LV_NAME "loop-vectorize" #define DEBUG_TYPE LV_NAME -#include "llvm/Analysis/ScalarEvolution.h" -#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/MapVector.h" #include "llvm/ADT/SmallPtrSet.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/Analysis/ScalarEvolution.h" #include "llvm/IRBuilder.h" - #include <algorithm> using namespace llvm; @@ -304,7 +304,7 @@ public: /// InductionList saves induction variables and maps them to the /// induction descriptor. - typedef DenseMap<PHINode*, InductionInfo> InductionList; + typedef MapVector<PHINode*, InductionInfo> InductionList; /// Returns true if it is legal to vectorize this loop. /// This does not mean that it is profitable to vectorize this |