File: span.h

package info (click to toggle)
spirv-tools 2025.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,244 kB
  • sloc: cpp: 462,457; javascript: 5,893; python: 3,326; ansic: 487; sh: 450; ruby: 88; makefile: 18; lisp: 9
file content (72 lines) | stat: -rw-r--r-- 2,252 bytes parent folder | download | duplicates (14)
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
// 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_SPAN_H_
#define SOURCE_UTIL_SPAN_H_

#include <cstddef>
#include <iterator>
#include <type_traits>

namespace spvtools {
namespace utils {

// Implement a subset of the C++20 std::span, using at most C++17 functionality.
// Replace this when SPIRV-Tools can use C++20.
template <class T>
class Span {
 public:
  using element_type = T;
  using value_type = std::remove_cv_t<T>;
  using size_type = std::size_t;
  using difference_type = std::ptrdiff_t;
  using pointer = T*;
  using const_pointer = const T*;
  using reference = T&;
  using const_reference = const T&;
  using iterator = T*;
  using const_iterator = const T*;

  Span() {}
  Span(iterator first, size_type count) : first_(first), count_(count) {}

  iterator begin() const { return first_; }
  iterator end() const { return first_ ? first_ + count_ : nullptr; }
  const_iterator cbegin() const { return first_; }
  const_iterator cend() const { return first_ ? first_ + count_ : nullptr; }

  size_type size() const { return count_; }
  size_type size_bytes() const { return count_ * sizeof(T); }
  bool empty() const { return first_ == nullptr || count_ == 0; }

  reference front() const { return *first_; }
  reference back() const { return *(first_ + count_ - 1); }
  pointer data() const { return first_; }
  reference operator[](size_type idx) const { return first_[idx]; }
  Span<T> subspan(size_type offset) const {
    if (count_ > offset) {
      return Span(first_ + offset, count_ - offset);
    }
    return Span<T>();
  }

 private:
  T* first_ = nullptr;
  size_type count_ = 0;
};

}  // namespace utils
}  // namespace spvtools

#endif  // SOURCE_UTIL_SPAN_H_