summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Transforms/Vectorize/VPlan.cpp5
-rw-r--r--llvm/lib/Transforms/Vectorize/VPlan.h7
-rw-r--r--llvm/unittests/Transforms/CMakeLists.txt1
-rw-r--r--llvm/unittests/Transforms/Vectorize/CMakeLists.txt7
-rw-r--r--llvm/unittests/Transforms/Vectorize/VPlanTest.cpp44
5 files changed, 64 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.cpp b/llvm/lib/Transforms/Vectorize/VPlan.cpp
index 50c71a32385..7d07ae09902 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -220,6 +220,11 @@ void VPRegionBlock::execute(VPTransformState *State) {
State->Instance.reset();
}
+void VPRecipeBase::insertBefore(VPRecipeBase *InsertPos) {
+ InsertPos->getParent()->getRecipeList().insert(InsertPos->getIterator(),
+ this);
+}
+
void VPInstruction::generateInstruction(VPTransformState &State,
unsigned Part) {
IRBuilder<> &Builder = State.Builder;
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 6bc49dbbcb6..c19fbe28196 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -552,6 +552,10 @@ public:
/// Each recipe prints itself.
virtual void print(raw_ostream &O, const Twine &Indent) const = 0;
+
+ /// Insert an unlinked recipe into a basic block immediately before
+ /// the specified recipe.
+ void insertBefore(VPRecipeBase *InsertPos);
};
/// This is a concrete Recipe that models a single VPlan-level instruction.
@@ -923,6 +927,9 @@ public:
inline const VPRecipeBase &back() const { return Recipes.back(); }
inline VPRecipeBase &back() { return Recipes.back(); }
+ /// Returns a reference to the list of recipes.
+ RecipeListTy &getRecipeList() { return Recipes; }
+
/// Returns a pointer to a member of the recipe list.
static RecipeListTy VPBasicBlock::*getSublistAccess(VPRecipeBase *) {
return &VPBasicBlock::Recipes;
diff --git a/llvm/unittests/Transforms/CMakeLists.txt b/llvm/unittests/Transforms/CMakeLists.txt
index e2570a3b653..b7f1817849a 100644
--- a/llvm/unittests/Transforms/CMakeLists.txt
+++ b/llvm/unittests/Transforms/CMakeLists.txt
@@ -1,3 +1,4 @@
add_subdirectory(IPO)
add_subdirectory(Scalar)
add_subdirectory(Utils)
+add_subdirectory(Vectorize)
diff --git a/llvm/unittests/Transforms/Vectorize/CMakeLists.txt b/llvm/unittests/Transforms/Vectorize/CMakeLists.txt
new file mode 100644
index 00000000000..0bb63562f42
--- /dev/null
+++ b/llvm/unittests/Transforms/Vectorize/CMakeLists.txt
@@ -0,0 +1,7 @@
+set(LLVM_LINK_COMPONENTS
+ Vectorize
+ )
+
+add_llvm_unittest(VectorizeTests
+ VPlanTest.cpp
+ )
diff --git a/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp b/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp
new file mode 100644
index 00000000000..761f7d79664
--- /dev/null
+++ b/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp
@@ -0,0 +1,44 @@
+//===- llvm/unittests/Transforms/Vectorize/VPlanTest.cpp - VPlan tests ----===//
+//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "../lib/Transforms/Vectorize/VPlan.h"
+#include "llvm/IR/Instruction.h"
+#include "llvm/IR/Instructions.h"
+#include "gtest/gtest.h"
+
+namespace llvm {
+namespace {
+
+#define CHECK_ITERATOR(Range1, ...) \
+ do { \
+ std::vector<VPInstruction *> Tmp = {__VA_ARGS__}; \
+ EXPECT_EQ((size_t)std::distance(Range1.begin(), Range1.end()), \
+ Tmp.size()); \
+ for (auto Pair : zip(Range1, make_range(Tmp.begin(), Tmp.end()))) \
+ EXPECT_EQ(&std::get<0>(Pair), std::get<1>(Pair)); \
+ } while (0)
+
+TEST(VPInstructionTest, insertBefore) {
+ VPInstruction *I1 = new VPInstruction(0, {});
+ VPInstruction *I2 = new VPInstruction(1, {});
+ VPInstruction *I3 = new VPInstruction(2, {});
+
+ VPBasicBlock VPBB1;
+ VPBB1.appendRecipe(I1);
+
+ I2->insertBefore(I1);
+ CHECK_ITERATOR(VPBB1, I2, I1);
+
+ I3->insertBefore(I2);
+ CHECK_ITERATOR(VPBB1, I3, I2, I1);
+}
+
+} // namespace
+} // namespace llvm
OpenPOWER on IntegriCloud