diff options
| -rw-r--r-- | llvm/include/llvm/ADT/STLExtras.h | 24 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/ARMException.cpp | 3 | ||||
| -rw-r--r-- | llvm/unittests/ADT/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | llvm/unittests/ADT/RangeAdapterTest.cpp | 77 |
4 files changed, 103 insertions, 2 deletions
diff --git a/llvm/include/llvm/ADT/STLExtras.h b/llvm/include/llvm/ADT/STLExtras.h index b68345a1dcf..0605e522d7e 100644 --- a/llvm/include/llvm/ADT/STLExtras.h +++ b/llvm/include/llvm/ADT/STLExtras.h @@ -196,6 +196,30 @@ inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) { return mapped_iterator<ItTy, FuncTy>(I, F); } +// Returns an iterator_range over the given container which iterates in reverse. +// Note that the container must have rbegin()/rend() methods for this to work. +template<typename ContainerTy> +auto reverse(ContainerTy &C)->decltype(make_range(C.rbegin(), C.rend())) { + return make_range(C.rbegin(), C.rend()); +} + +// Returns a std::reverse_iterator wrapped around the given iterator. +template<typename IteratorTy> +std::reverse_iterator<IteratorTy> make_reverse_iterator(IteratorTy It) { + return std::reverse_iterator<IteratorTy>(It); +} + +// Returns an iterator_range over the given container which iterates in reverse. +// Note that the container must have begin()/end() methods which return +// bidirectional iterators for this to work. +template<typename ContainerTy> +auto reverse(ContainerTy &&C) + ->decltype(make_range(make_reverse_iterator(std::end(C)), + make_reverse_iterator(std::begin(C)))) { + return make_range(make_reverse_iterator(std::end(C)), + make_reverse_iterator(std::begin(C))); +} + //===----------------------------------------------------------------------===// // Extra additions to <utility> //===----------------------------------------------------------------------===// diff --git a/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp b/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp index 5f91763f27b..462e5d19c8d 100644 --- a/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp @@ -115,8 +115,7 @@ void ARMException::emitTypeInfos(unsigned TTypeEncoding) { Entry = TypeInfos.size(); } - for (const GlobalValue *GV : make_range(TypeInfos.rbegin(), - TypeInfos.rend())) { + for (const GlobalValue *GV : reverse(TypeInfos)) { if (VerboseAsm) Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--)); Asm->EmitTTypeReference(GV, TTypeEncoding); diff --git a/llvm/unittests/ADT/CMakeLists.txt b/llvm/unittests/ADT/CMakeLists.txt index cbcb0848556..cb878c61b85 100644 --- a/llvm/unittests/ADT/CMakeLists.txt +++ b/llvm/unittests/ADT/CMakeLists.txt @@ -28,6 +28,7 @@ set(ADTSources PointerIntPairTest.cpp PointerUnionTest.cpp PostOrderIteratorTest.cpp + RangeAdapterTest.cpp SCCIteratorTest.cpp SmallPtrSetTest.cpp SmallStringTest.cpp diff --git a/llvm/unittests/ADT/RangeAdapterTest.cpp b/llvm/unittests/ADT/RangeAdapterTest.cpp new file mode 100644 index 00000000000..7547f84ce49 --- /dev/null +++ b/llvm/unittests/ADT/RangeAdapterTest.cpp @@ -0,0 +1,77 @@ +//===- RangeAdapterTest.cpp - Unit tests for range adapters --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/ADT/iterator_range.h" +#include "llvm/ADT/STLExtras.h" +#include "gtest/gtest.h" + +#include <iterator> +#include <list> +#include <vector> + +using namespace llvm; + +namespace { + +// A wrapper around vector which exposes rbegin(), rend(). +class ReverseOnlyVector { + std::vector<int> Vec; +public: + ReverseOnlyVector(std::initializer_list<int> list) : Vec(list) { } + + typedef std::vector<int>::reverse_iterator reverse_iterator; + reverse_iterator rbegin() { return Vec.rbegin(); } + reverse_iterator rend() { return Vec.rend(); } +}; + +// A wrapper around vector which exposes begin(), end(), rbegin() and rend(). +// begin() and end() don't have implementations as this ensures that we will +// get a linker error if reverse() chooses begin()/end() over rbegin(), rend(). +class BidirectionalVector { + std::vector<int> Vec; + +public: + BidirectionalVector(std::initializer_list<int> list) : Vec(list) { } + + typedef std::vector<int>::iterator iterator; + iterator begin(); + iterator end(); + + typedef std::vector<int>::reverse_iterator reverse_iterator; + reverse_iterator rbegin() { return Vec.rbegin(); } + reverse_iterator rend() { return Vec.rend(); } +}; + +// Test fixture +template <typename T> +class RangeAdapterTest : public ::testing::Test { }; + +typedef ::testing::Types<std::vector<int>, + std::list<int>, + int[4], + ReverseOnlyVector, + BidirectionalVector, + const std::vector<int>, + const std::list<int>, + const int[4]> RangeAdapterTestTypes; +TYPED_TEST_CASE(RangeAdapterTest, RangeAdapterTestTypes); + +TYPED_TEST(RangeAdapterTest, TrivialOperation) { + TypeParam v = { 0, 1, 2, 3 }; + + int counter = 3; + for (int i : reverse(v)) + EXPECT_EQ(i, counter--); + + counter = 0; + for (int i : reverse(reverse(v))) + EXPECT_EQ(i, counter++); +} + +} // anonymous namespace |

