mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-10 08:33:32 +00:00
In order to remove the kMaxBindingsPerGroup limit in Dawn, some static ityp::arrays need to be made dynamically sized. This CL adds ityp::vector wrapping std::vector. This CL also fixes the assumption that ityp::stack_vec iterators are pointers Bug: dawn:442, dawn:443 Change-Id: I8698cbba3ea80ac063ab918a77f223c527720d08 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/24480 Commit-Queue: Austin Eng <enga@chromium.org> Reviewed-by: Stephen White <senorblanco@chromium.org>
109 lines
3.1 KiB
C++
109 lines
3.1 KiB
C++
// Copyright 2020 The Dawn Authors
|
|
//
|
|
// 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.
|
|
|
|
#ifndef COMMON_ITYP_VECTOR_H_
|
|
#define COMMON_ITYP_VECTOR_H_
|
|
|
|
#include "common/TypedInteger.h"
|
|
#include "common/UnderlyingType.h"
|
|
|
|
#include <type_traits>
|
|
#include <vector>
|
|
|
|
namespace ityp {
|
|
|
|
// ityp::vector is a helper class that wraps std::vector with the restriction that
|
|
// indices must be a particular type |Index|.
|
|
template <typename Index, typename Value>
|
|
class vector : public std::vector<Value> {
|
|
using I = UnderlyingType<Index>;
|
|
using Base = std::vector<Value>;
|
|
|
|
private:
|
|
// Disallow access to base constructors and untyped index/size-related operators.
|
|
using Base::Base;
|
|
using Base::operator=;
|
|
using Base::operator[];
|
|
using Base::at;
|
|
using Base::reserve;
|
|
using Base::resize;
|
|
using Base::size;
|
|
|
|
public:
|
|
vector() : Base() {
|
|
}
|
|
|
|
explicit vector(Index size) : Base(static_cast<I>(size)) {
|
|
}
|
|
|
|
vector(Index size, const Value& init) : Base(static_cast<I>(size), init) {
|
|
}
|
|
|
|
vector(const vector& rhs) : Base(static_cast<const Base&>(rhs)) {
|
|
}
|
|
|
|
vector(vector&& rhs) : Base(static_cast<Base&&>(rhs)) {
|
|
}
|
|
|
|
vector(std::initializer_list<Value> init) : Base(init) {
|
|
}
|
|
|
|
vector& operator=(const vector& rhs) {
|
|
Base::operator=(static_cast<const Base&>(rhs));
|
|
return *this;
|
|
}
|
|
|
|
vector& operator=(vector&& rhs) noexcept {
|
|
Base::operator=(static_cast<Base&&>(rhs));
|
|
return *this;
|
|
}
|
|
|
|
Value& operator[](Index i) {
|
|
ASSERT(i >= Index(0) && i < size());
|
|
return Base::operator[](static_cast<I>(i));
|
|
}
|
|
|
|
constexpr const Value& operator[](Index i) const {
|
|
ASSERT(i >= Index(0) && i < size());
|
|
return Base::operator[](static_cast<I>(i));
|
|
}
|
|
|
|
Value& at(Index i) {
|
|
ASSERT(i >= Index(0) && i < size());
|
|
return Base::at(static_cast<I>(i));
|
|
}
|
|
|
|
constexpr const Value& at(Index i) const {
|
|
ASSERT(i >= Index(0) && i < size());
|
|
return Base::at(static_cast<I>(i));
|
|
}
|
|
|
|
constexpr Index size() const {
|
|
ASSERT(std::numeric_limits<I>::max() >= Base::size());
|
|
return Index(static_cast<I>(Base::size()));
|
|
}
|
|
|
|
void resize(Index size) {
|
|
Base::resize(static_cast<I>(size));
|
|
}
|
|
|
|
void reserve(Index size) {
|
|
Base::reserve(static_cast<I>(size));
|
|
}
|
|
};
|
|
|
|
} // namespace ityp
|
|
|
|
#endif // COMMON_ITYP_VECTOR_H_
|