Skip to content

Commit

Permalink
[VPlanRecipeBase] Add insertBefore helper.
Browse files Browse the repository at this point in the history
Reviewers: dcaballe, mkuper, hfinkel, hsaito, mssimpso

Reviewed By: dcaballe

Differential Revision: https://reviews.llvm.org/D48080

llvm-svn: 334933
  • Loading branch information
fhahn committed Jun 18, 2018
1 parent e752fd6 commit 7591e4e
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 0 deletions.
5 changes: 5 additions & 0 deletions llvm/lib/Transforms/Vectorize/VPlan.cpp
Expand Up @@ -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;
Expand Down
7 changes: 7 additions & 0 deletions llvm/lib/Transforms/Vectorize/VPlan.h
Expand Up @@ -552,6 +552,10 @@ class VPRecipeBase : public ilist_node_with_parent<VPRecipeBase, VPBasicBlock> {

/// 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.
Expand Down Expand Up @@ -923,6 +927,9 @@ class VPBasicBlock : public VPBlockBase {
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;
Expand Down
1 change: 1 addition & 0 deletions llvm/unittests/Transforms/CMakeLists.txt
@@ -1,3 +1,4 @@
add_subdirectory(IPO)
add_subdirectory(Scalar)
add_subdirectory(Utils)
add_subdirectory(Vectorize)
7 changes: 7 additions & 0 deletions llvm/unittests/Transforms/Vectorize/CMakeLists.txt
@@ -0,0 +1,7 @@
set(LLVM_LINK_COMPONENTS
Vectorize
)

add_llvm_unittest(VectorizeTests
VPlanTest.cpp
)
44 changes: 44 additions & 0 deletions 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

0 comments on commit 7591e4e

Please sign in to comment.