/** \file ducc0/infra/aligned_array.h * * \copyright Copyright (C) 2019-2022 Max-Planck-Society * \author Martin Reinecke */ /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-or-later */ /* All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * This code is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this code; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef DUCC0_ALIGNED_ARRAY_H #define DUCC0_ALIGNED_ARRAY_H #include #include namespace ducc0 { namespace detail_aligned_array { using namespace std; // std::aligned_alloc is a bit cursed ... it doesn't exist on MacOS < 10.15 // and in musl. Let's unconditionally work around it for now. //#if ((__cplusplus >= 201703L) && (!defined(__APPLE__))) #define DUCC0_WORKAROUND_ALIGNED_ALLOC //#endif /// Bare bones array class. /** Mostly useful for uninitialized temporary buffers. * \note Since this class operates on raw memory, it should only be used with * POD types, and even then only with caution! */ template class array_base { private: T *p; size_t sz; static T *ralloc(size_t num) { if constexpr(alignment<=alignof(max_align_t)) { void *res = malloc(num*sizeof(T)); if (!res) throw bad_alloc(); return reinterpret_cast(res); } else { if (num==0) return nullptr; #if (!defined(DUCC0_WORKAROUND_ALIGNED_ALLOC)) // aligned_alloc requires the allocated size to be a multiple of the // requested alignment, so increase size if necessary void *res = aligned_alloc(alignment,((num*sizeof(T)+alignment-1)/alignment)*alignment); if (!res) throw bad_alloc(); #else // portable emulation void *ptr = malloc(num*sizeof(T)+alignment); if (!ptr) throw bad_alloc(); void *res = reinterpret_cast((reinterpret_cast(ptr) & ~(size_t(alignment-1))) + alignment); (reinterpret_cast(res))[-1] = ptr; #endif return reinterpret_cast(res); } } static void dealloc(T *ptr) { if constexpr(alignment<=alignof(max_align_t)) free(ptr); else #if (!defined(DUCC0_WORKAROUND_ALIGNED_ALLOC)) free(ptr); #else if (ptr) free((reinterpret_cast(ptr))[-1]); #endif } #undef DUCC0_WORKAROUND_ALIGNED_ALLOC public: /// Creates a zero-sized array with no associated memory. array_base() : p(nullptr), sz(0) {} /// Creates an array with \a n entries. /** \note Memory is not initialized! */ array_base(size_t n) : p(ralloc(n)), sz(n) {} array_base(const array_base &) = delete; array_base(array_base &&other) : p(other.p), sz(other.sz) { other.p=nullptr; other.sz=0; } ~array_base() { dealloc(p); } array_base &operator=(const array_base &) = delete; array_base &operator=(array_base &&other) { swap(p, other.p); swap(sz, other.sz); return *this; } /// If \a n is different from the current size, resizes the array to hold /// \a n elements. /** \note No data content is copied, the new array is uninitialized! */ void resize(size_t n) { if (n==sz) return; dealloc(p); p = ralloc(n); sz = n; } /// Returns a writeable reference to the element at index \a idx. T &operator[](size_t idx) { return p[idx]; } /// Returns a read-only reference to the element at index \a idx. const T &operator[](size_t idx) const { return p[idx]; } /// Returns a writeable pointer to the array data. T *data() { return p; } /// Returns a read-only pointer to the array data. const T *data() const { return p; } /// Returns the size of the array. size_t size() const { return sz; } }; template using quick_array = array_base; template using aligned_array = array_base; } using detail_aligned_array::aligned_array; using detail_aligned_array::quick_array; } #endif