File: index_range.h

package info (click to toggle)
spirv-tools 2026.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 28,900 kB
  • sloc: cpp: 477,281; javascript: 5,908; python: 3,326; ansic: 488; sh: 450; ruby: 88; makefile: 18; lisp: 9
file content (71 lines) | stat: -rw-r--r-- 2,338 bytes parent folder | download | duplicates (13)
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
// Copyright 2025 Google LLC
//
// 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 SOURCE_UTIL_INDEX_RANGE_H_
#define SOURCE_UTIL_INDEX_RANGE_H_

#include <cassert>
#include <cstddef>
#include <cstdint>

#include "source/util/span.h"

namespace spvtools {
namespace utils {

// Implement a range of indicies, to index over an array of values of type T,
// but whose base pointer is supplied externally.  Think of this as a span
// but without the base pointer, which is to be applied later.  Parameterization
// by T makes usage more readable and less error-prone.
template <typename T, class IndexType = uint32_t, class CountType = IndexType>
class IndexRange {
 public:
  static_assert(std::is_integral<IndexType>::value);
  static_assert(std::is_unsigned<IndexType>::value);
  static_assert(std::is_integral<CountType>::value);
  static_assert(std::is_unsigned<CountType>::value);
  using value_type = T;
  using index_type = IndexType;
  using size_type = CountType;

  constexpr IndexRange() {}
  constexpr IndexRange(index_type first, size_type count)
      : first_(first), count_(count) {}

  size_type count() const { return count_; }
  bool empty() const { return count() == size_type(0); }

  IndexType first() const { return first_; }

  // Returns the span of indexed elements using the given base pointer.
  template <typename E>
  spvtools::utils::Span<E> apply(E* base) const {
    using span_type = spvtools::utils::Span<E>;
    return base ? span_type(base + first_, count_) : span_type();
  }
  template <typename E = int>
  spvtools::utils::Span<E> apply(std::nullptr_t) const {
    using span_type = spvtools::utils::Span<E>;
    return span_type();
  }

 private:
  index_type first_ = 0;
  size_type count_ = 0;
};

}  // namespace utils
}  // namespace spvtools

#endif  // SOURCE_UTIL_INDEX_RANGE_H_