1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/*
* Copyright 2019 WebAssembly Community Group participants
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//
// A vector of elements, which may be small, and uses a fixed space
// for those small elements.
//
#ifndef wasm_support_small_vector_h
#define wasm_support_small_vector_h
#include <array>
#include <cassert>
#include <iterator>
#include <vector>
namespace wasm {
template<typename T, size_t N> class SmallVector {
// fixed-space storage
size_t usedFixed = 0;
std::array<T, N> fixed;
// flexible additional storage
std::vector<T> flexible;
public:
using value_type = T;
SmallVector() {}
T& operator[](size_t i) {
return const_cast<T&>(static_cast<const SmallVector<T, N>&>(*this)[i]);
}
const T& operator[](size_t i) const {
if (i < N) {
return fixed[i];
} else {
return flexible[i - N];
}
}
void push_back(const T& x) {
if (usedFixed < N) {
fixed[usedFixed++] = x;
} else {
flexible.push_back(x);
}
}
template<typename... ArgTypes> void emplace_back(ArgTypes&&... Args) {
if (usedFixed < N) {
new (&fixed[usedFixed++]) T(std::forward<ArgTypes>(Args)...);
} else {
flexible.emplace_back(std::forward<ArgTypes>(Args)...);
}
}
void pop_back() {
if (flexible.empty()) {
assert(usedFixed > 0);
usedFixed--;
} else {
flexible.pop_back();
}
}
T& back() {
if (flexible.empty()) {
assert(usedFixed > 0);
return fixed[usedFixed - 1];
} else {
return flexible.back();
}
}
const T& back() const {
if (flexible.empty()) {
assert(usedFixed > 0);
return fixed[usedFixed - 1];
} else {
return flexible.back();
}
}
size_t size() const { return usedFixed + flexible.size(); }
bool empty() const { return size() == 0; }
void clear() {
usedFixed = 0;
flexible.clear();
}
bool operator==(const SmallVector<T, N>& other) const {
if (usedFixed != other.usedFixed) {
return false;
}
for (size_t i = 0; i < usedFixed; i++) {
if (fixed[i] != other.fixed[i]) {
return false;
}
}
return flexible == other.flexible;
}
bool operator!=(const SmallVector<T, N>& other) const {
return !(*this == other);
}
// iteration
struct Iterator {
typedef T value_type;
typedef long difference_type;
typedef T& reference;
const SmallVector<T, N>* parent;
size_t index;
Iterator(const SmallVector<T, N>* parent, size_t index)
: parent(parent), index(index) {}
bool operator!=(const Iterator& other) const {
return index != other.index || parent != other.parent;
}
void operator++() { index++; }
Iterator& operator+=(difference_type off) {
index += off;
return *this;
}
const Iterator operator+(difference_type off) const {
return Iterator(*this) += off;
}
const value_type operator*() const { return (*parent)[index]; }
};
Iterator begin() const {
return Iterator(static_cast<const SmallVector<T, N>*>(this), 0);
}
Iterator end() const {
return Iterator(static_cast<const SmallVector<T, N>*>(this), size());
}
};
} // namespace wasm
#endif // wasm_support_small_vector_h
|