blob: 849b6f1d09791815298d3936b6b6245ace633877 [file] [log] [blame]
Chandler Carruthe8529c22016-08-19 02:07:51 +00001//===- STLExtrasTest.cpp - Unit tests for STL extras ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/ADT/STLExtras.h"
11#include "gtest/gtest.h"
12
Zachary Turner4f20a0a2016-09-30 15:43:59 +000013#include <vector>
14
Chandler Carruthe8529c22016-08-19 02:07:51 +000015using namespace llvm;
16
17namespace {
18
19int f(rank<0>) { return 0; }
20int f(rank<1>) { return 1; }
21int f(rank<2>) { return 2; }
22int f(rank<4>) { return 4; }
23
24TEST(STLExtrasTest, Rank) {
25 // We shouldn't get ambiguities and should select the overload of the same
26 // rank as the argument.
27 EXPECT_EQ(0, f(rank<0>()));
28 EXPECT_EQ(1, f(rank<1>()));
29 EXPECT_EQ(2, f(rank<2>()));
30
31 // This overload is missing so we end up back at 2.
32 EXPECT_EQ(2, f(rank<3>()));
33
34 // But going past 3 should work fine.
35 EXPECT_EQ(4, f(rank<4>()));
36
37 // And we can even go higher and just fall back to the last overload.
38 EXPECT_EQ(4, f(rank<5>()));
39 EXPECT_EQ(4, f(rank<6>()));
40}
41
Zachary Turneraa0a5622016-10-05 16:54:09 +000042TEST(STLExtrasTest, EnumerateLValue) {
43 // Test that a simple LValue can be enumerated and gives correct results with
44 // multiple types, including the empty container.
Zachary Turner4f20a0a2016-09-30 15:43:59 +000045 std::vector<char> foo = {'a', 'b', 'c'};
Zachary Turneraad15832016-10-05 17:04:36 +000046 typedef std::pair<std::size_t, char> CharPairType;
47 std::vector<CharPairType> CharResults;
Zachary Turner4f20a0a2016-09-30 15:43:59 +000048
49 for (auto X : llvm::enumerate(foo)) {
Zachary Turneraa0a5622016-10-05 16:54:09 +000050 CharResults.emplace_back(X.Index, X.Value);
Zachary Turner4f20a0a2016-09-30 15:43:59 +000051 }
Zachary Turneraa0a5622016-10-05 16:54:09 +000052 ASSERT_EQ(3u, CharResults.size());
Zachary Turneraad15832016-10-05 17:04:36 +000053 EXPECT_EQ(CharPairType(0u, 'a'), CharResults[0]);
54 EXPECT_EQ(CharPairType(1u, 'b'), CharResults[1]);
55 EXPECT_EQ(CharPairType(2u, 'c'), CharResults[2]);
Zachary Turner4f20a0a2016-09-30 15:43:59 +000056
Zachary Turneraa0a5622016-10-05 16:54:09 +000057 // Test a const range of a different type.
Zachary Turneraad15832016-10-05 17:04:36 +000058 typedef std::pair<std::size_t, int> IntPairType;
59 std::vector<IntPairType> IntResults;
Zachary Turneraa0a5622016-10-05 16:54:09 +000060 const std::vector<int> bar = {1, 2, 3};
Zachary Turner4f20a0a2016-09-30 15:43:59 +000061 for (auto X : llvm::enumerate(bar)) {
Zachary Turneraa0a5622016-10-05 16:54:09 +000062 IntResults.emplace_back(X.Index, X.Value);
Zachary Turner4f20a0a2016-09-30 15:43:59 +000063 }
Zachary Turneraa0a5622016-10-05 16:54:09 +000064 ASSERT_EQ(3u, IntResults.size());
Zachary Turneraad15832016-10-05 17:04:36 +000065 EXPECT_EQ(IntPairType(0u, 1), IntResults[0]);
66 EXPECT_EQ(IntPairType(1u, 2), IntResults[1]);
67 EXPECT_EQ(IntPairType(2u, 3), IntResults[2]);
Zachary Turner4f20a0a2016-09-30 15:43:59 +000068
Zachary Turneraa0a5622016-10-05 16:54:09 +000069 // Test an empty range.
70 IntResults.clear();
Zachary Turner4f20a0a2016-09-30 15:43:59 +000071 const std::vector<int> baz;
72 for (auto X : llvm::enumerate(baz)) {
Zachary Turneraa0a5622016-10-05 16:54:09 +000073 IntResults.emplace_back(X.Index, X.Value);
Zachary Turner4f20a0a2016-09-30 15:43:59 +000074 }
Zachary Turneraa0a5622016-10-05 16:54:09 +000075 EXPECT_TRUE(IntResults.empty());
Zachary Turner4f20a0a2016-09-30 15:43:59 +000076}
77
Zachary Turneraa0a5622016-10-05 16:54:09 +000078TEST(STLExtrasTest, EnumerateModifyLValue) {
79 // Test that you can modify the underlying entries of an lvalue range through
80 // the enumeration iterator.
Zachary Turner4f20a0a2016-09-30 15:43:59 +000081 std::vector<char> foo = {'a', 'b', 'c'};
82
83 for (auto X : llvm::enumerate(foo)) {
84 ++X.Value;
85 }
Zachary Turner4f20a0a2016-09-30 15:43:59 +000086 EXPECT_EQ('b', foo[0]);
87 EXPECT_EQ('c', foo[1]);
88 EXPECT_EQ('d', foo[2]);
89}
Zachary Turneraa0a5622016-10-05 16:54:09 +000090
91TEST(STLExtrasTest, EnumerateRValueRef) {
92 // Test that an rvalue can be enumerated.
Zachary Turneraad15832016-10-05 17:04:36 +000093 typedef std::pair<std::size_t, int> PairType;
94 std::vector<PairType> Results;
Zachary Turneraa0a5622016-10-05 16:54:09 +000095
96 auto Enumerator = llvm::enumerate(std::vector<int>{1, 2, 3});
97
98 for (auto X : llvm::enumerate(std::vector<int>{1, 2, 3})) {
99 Results.emplace_back(X.Index, X.Value);
100 }
101
102 ASSERT_EQ(3u, Results.size());
Zachary Turneraad15832016-10-05 17:04:36 +0000103 EXPECT_EQ(PairType(0u, 1), Results[0]);
104 EXPECT_EQ(PairType(1u, 2), Results[1]);
105 EXPECT_EQ(PairType(2u, 3), Results[2]);
Zachary Turneraa0a5622016-10-05 16:54:09 +0000106}
107
108TEST(STLExtrasTest, EnumerateModifyRValue) {
109 // Test that when enumerating an rvalue, modification still works (even if
110 // this isn't terribly useful, it at least shows that we haven't snuck an
111 // extra const in there somewhere.
Zachary Turneraad15832016-10-05 17:04:36 +0000112 typedef std::pair<std::size_t, char> PairType;
113 std::vector<PairType> Results;
Zachary Turneraa0a5622016-10-05 16:54:09 +0000114
115 for (auto X : llvm::enumerate(std::vector<char>{'1', '2', '3'})) {
116 ++X.Value;
117 Results.emplace_back(X.Index, X.Value);
118 }
119
120 ASSERT_EQ(3u, Results.size());
Zachary Turneraad15832016-10-05 17:04:36 +0000121 EXPECT_EQ(PairType(0u, '2'), Results[0]);
122 EXPECT_EQ(PairType(1u, '3'), Results[1]);
123 EXPECT_EQ(PairType(2u, '4'), Results[2]);
Zachary Turneraa0a5622016-10-05 16:54:09 +0000124}
125
126template <bool B> struct CanMove {};
127template <> struct CanMove<false> {
128 CanMove(CanMove &&) = delete;
129
130 CanMove() = default;
131 CanMove(const CanMove &) = default;
132};
133
134template <bool B> struct CanCopy {};
135template <> struct CanCopy<false> {
136 CanCopy(const CanCopy &) = delete;
137
138 CanCopy() = default;
139 CanCopy(CanCopy &&) = default;
140};
141
142template <bool Moveable, bool Copyable>
143struct Range : CanMove<Moveable>, CanCopy<Copyable> {
144 explicit Range(int &C, int &M, int &D) : C(C), M(M), D(D) {}
145 Range(const Range &R) : CanCopy<Copyable>(R), C(R.C), M(R.M), D(R.D) { ++C; }
146 Range(Range &&R) : CanMove<Moveable>(std::move(R)), C(R.C), M(R.M), D(R.D) {
147 ++M;
148 }
149 ~Range() { ++D; }
150
151 int &C;
152 int &M;
153 int &D;
154
155 int *begin() { return nullptr; }
156 int *end() { return nullptr; }
157};
158
159TEST(STLExtrasTest, EnumerateLifetimeSemantics) {
160 // Test that when enumerating lvalues and rvalues, there are no surprise
161 // copies or moves.
162
163 // With an rvalue, it should not be destroyed until the end of the scope.
164 int Copies = 0;
165 int Moves = 0;
166 int Destructors = 0;
167 {
168 auto E1 = enumerate(Range<true, false>(Copies, Moves, Destructors));
169 // Doesn't compile. rvalue ranges must be moveable.
170 // auto E2 = enumerate(Range<false, true>(Copies, Moves, Destructors));
171 EXPECT_EQ(0, Copies);
172 EXPECT_EQ(1, Moves);
173 EXPECT_EQ(1, Destructors);
174 }
175 EXPECT_EQ(0, Copies);
176 EXPECT_EQ(1, Moves);
177 EXPECT_EQ(2, Destructors);
178
179 Copies = Moves = Destructors = 0;
180 // With an lvalue, it should not be destroyed even after the end of the scope.
181 // lvalue ranges need be neither copyable nor moveable.
182 Range<false, false> R(Copies, Moves, Destructors);
183 {
184 auto Enumerator = enumerate(R);
185 (void)Enumerator;
186 EXPECT_EQ(0, Copies);
187 EXPECT_EQ(0, Moves);
188 EXPECT_EQ(0, Destructors);
189 }
190 EXPECT_EQ(0, Copies);
191 EXPECT_EQ(0, Moves);
192 EXPECT_EQ(0, Destructors);
193}
Chandler Carruthe8529c22016-08-19 02:07:51 +0000194}