From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- dom/media/webaudio/AlignedTArray.h | 115 +++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 dom/media/webaudio/AlignedTArray.h (limited to 'dom/media/webaudio/AlignedTArray.h') diff --git a/dom/media/webaudio/AlignedTArray.h b/dom/media/webaudio/AlignedTArray.h new file mode 100644 index 0000000000..28c0f094ef --- /dev/null +++ b/dom/media/webaudio/AlignedTArray.h @@ -0,0 +1,115 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim:set ts=2 sw=2 sts=2 et cindent: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef AlignedTArray_h__ +#define AlignedTArray_h__ + +#include "mozilla/Alignment.h" +#include "nsTArray.h" + +/** + * E: element type, must be a POD type. + * N: N bytes alignment for the first element, defaults to 32 + * S: S bytes of inline storage + */ +template +class AlignedAutoTArray : private AutoTArray { + static_assert((N & (N - 1)) == 0, "N must be power of 2"); + typedef AutoTArray base_type; + + public: + typedef E value_type; + typedef typename base_type::size_type size_type; + typedef typename base_type::index_type index_type; + + AlignedAutoTArray() = default; + explicit AlignedAutoTArray(size_type capacity) + : base_type(capacity + sExtra) {} + value_type* Elements() { return getAligned(base_type::Elements()); } + const value_type* Elements() const { + return getAligned(base_type::Elements()); + } + value_type& operator[](index_type i) { return Elements()[i]; } + const value_type& operator[](index_type i) const { return Elements()[i]; } + + void SetLength(size_type newLen) { base_type::SetLength(newLen + sExtra); } + + [[nodiscard]] bool SetLength(size_type newLen, const mozilla::fallible_t&) { + return base_type::SetLength(newLen + sExtra, mozilla::fallible); + } + + size_type Length() const { + return base_type::Length() <= sExtra ? 0 : base_type::Length() - sExtra; + } + + using base_type::ShallowSizeOfExcludingThis; + using base_type::ShallowSizeOfIncludingThis; + + private: + AlignedAutoTArray(const AlignedAutoTArray& other) = delete; + void operator=(const AlignedAutoTArray& other) = delete; + + static const size_type sPadding = + N <= MOZ_ALIGNOF(E) ? 0 : N - MOZ_ALIGNOF(E); + static const size_type sExtra = (sPadding + sizeof(E) - 1) / sizeof(E); + + template + static U* getAligned(U* p) { + return reinterpret_cast(((uintptr_t)p + N - 1) & ~(N - 1)); + } +}; + +/** + * E: element type, must be a POD type. + * N: N bytes alignment for the first element, defaults to 32 + */ +template +class AlignedTArray : private nsTArray_Impl { + static_assert((N & (N - 1)) == 0, "N must be power of 2"); + typedef nsTArray_Impl base_type; + + public: + typedef E value_type; + typedef typename base_type::size_type size_type; + typedef typename base_type::index_type index_type; + + AlignedTArray() = default; + explicit AlignedTArray(size_type capacity) : base_type(capacity + sExtra) {} + value_type* Elements() { return getAligned(base_type::Elements()); } + const value_type* Elements() const { + return getAligned(base_type::Elements()); + } + value_type& operator[](index_type i) { return Elements()[i]; } + const value_type& operator[](index_type i) const { return Elements()[i]; } + + void SetLength(size_type newLen) { base_type::SetLength(newLen + sExtra); } + + [[nodiscard]] bool SetLength(size_type newLen, const mozilla::fallible_t&) { + return base_type::SetLength(newLen + sExtra, mozilla::fallible); + } + + size_type Length() const { + return base_type::Length() <= sExtra ? 0 : base_type::Length() - sExtra; + } + + using base_type::ShallowSizeOfExcludingThis; + using base_type::ShallowSizeOfIncludingThis; + + private: + AlignedTArray(const AlignedTArray& other) = delete; + void operator=(const AlignedTArray& other) = delete; + + static const size_type sPadding = + N <= MOZ_ALIGNOF(E) ? 0 : N - MOZ_ALIGNOF(E); + static const size_type sExtra = (sPadding + sizeof(E) - 1) / sizeof(E); + + template + static U* getAligned(U* p) { + return reinterpret_cast(((uintptr_t)p + N - 1) & ~(N - 1)); + } +}; + +#endif // AlignedTArray_h__ -- cgit v1.2.3