2020-10-10 18:37:02 +00:00
|
|
|
#pragma once
|
2019-10-07 18:56:03 +00:00
|
|
|
/**
|
|
|
|
* This file contains some using-declarations that define various kinds of
|
|
|
|
* PODArray.
|
|
|
|
*/
|
|
|
|
|
2021-10-02 07:13:14 +00:00
|
|
|
#include <base/types.h>
|
2019-10-07 18:56:03 +00:00
|
|
|
#include <Common/Allocator_fwd.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
inline constexpr size_t integerRoundUp(size_t value, size_t dividend)
|
|
|
|
{
|
|
|
|
return ((value + dividend - 1) / dividend) * dividend;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, size_t initial_bytes = 4096,
|
|
|
|
typename TAllocator = Allocator<false>, size_t pad_right_ = 0,
|
|
|
|
size_t pad_left_ = 0>
|
|
|
|
class PODArray;
|
|
|
|
|
|
|
|
/** For columns. Padding is enough to read and write xmm-register at the address of the last element. */
|
|
|
|
template <typename T, size_t initial_bytes = 4096, typename TAllocator = Allocator<false>>
|
|
|
|
using PaddedPODArray = PODArray<T, initial_bytes, TAllocator, 15, 16>;
|
|
|
|
|
|
|
|
/** A helper for declaring PODArray that uses inline memory.
|
|
|
|
* The initial size is set to use all the inline bytes, since using less would
|
|
|
|
* only add some extra allocation calls.
|
|
|
|
*/
|
|
|
|
template <typename T, size_t inline_bytes,
|
|
|
|
size_t rounded_bytes = integerRoundUp(inline_bytes, sizeof(T))>
|
|
|
|
using PODArrayWithStackMemory = PODArray<T, rounded_bytes,
|
|
|
|
AllocatorWithStackMemory<Allocator<false>, rounded_bytes, alignof(T)>>;
|
|
|
|
|
|
|
|
}
|