etl/test/test_alignment.cpp
Roland Reichwein 6ed64f7b21
Support const pointers in etl::is_aligned() (#1082)
* Add Zephyr build system module.yml (#1074)

The Zephyr build system requires that modules have a `module.yml` file to specify where the module cmake and kconfig files are located. 
These can also be explicitly set as "external" meaning that they do not exist within the module tree, itself. These build file can still be specified elsewhere via cmake variables, explained more in-depth here: https://docs.zephyrproject.org/latest/develop/modules.html#modules-module-ext-root
This change makes it such that ETL can be included more easily in zephyr projects running on embedded systems. A similar change can be observed in the public nanopb repository, where the repo only requires its own `zephyr/module.yml` file to be found by the zephyr build system, but the kconfig and cmake additions can exist outside of the library repository.

* Support const pointers to etl::is_aligned()

---------

Co-authored-by: Zach Van Camp <marshmilo100@gmail.com>
2025-04-30 12:22:38 +01:00

218 lines
6.3 KiB
C++

/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2014 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#include "unit_test_framework.h"
#include "etl/alignment.h"
#include "etl/type_traits.h"
#include <type_traits>
#include <utility>
#include <string>
#include <ostream>
#if defined(ETL_COMPILER_MICROSOFT)
#pragma warning(disable : 4996)
#endif
#ifdef ETL_COMPILER_GCC
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
void f(int)
{
}
struct A_t
{
A_t(uint32_t v_x, uint8_t v_y)
: x(v_x)
, y(v_y)
{
}
bool operator==(A_t& other)
{
return other.x == x && other.y == y;
}
uint32_t x;
uint8_t y;
};
namespace
{
SUITE(test_alignment)
{
//*************************************************************************
TEST(test_aligned_storage)
{
size_t alignment;
size_t expected;
typedef etl::aligned_storage<sizeof(uint16_t), etl::alignment_of<uint32_t>::value>::type storage32_t;
static storage32_t data32[10];
alignment = etl::alignment_of<storage32_t>::value;
expected = std::alignment_of<uint32_t>::value;
CHECK_EQUAL(expected, alignment);
for (int i = 0; i < 10; ++i)
{
CHECK_EQUAL(0U, size_t(&data32[1]) % expected);
}
etl::aligned_storage<100, 8>::type data9;
f(static_cast<int>(data9));
}
//*************************************************************************
TEST(test_aligned_storage_conversion_operators)
{
typedef etl::aligned_storage<sizeof(uint32_t), etl::alignment_of<uint32_t>::value>::type storage32_t;
static storage32_t data;
void* pdata = &data.data;
uint32_t& ref = data;
const uint32_t& cref = data;
CHECK(&ref == pdata);
CHECK(&cref == pdata);
uint32_t* ptr = data;
const uint32_t* cptr = data;
CHECK(ptr == pdata);
CHECK(cptr == pdata);
uint32_t& ref2 = data.get_reference<uint32_t>();
const uint32_t& cref2 = data.get_reference<const uint32_t>();
CHECK(&ref2 == pdata);
CHECK(&cref2 == pdata);
uint32_t* ptr2 = data.get_address<uint32_t>();
const uint32_t* cptr2 = data.get_address<const uint32_t>();
CHECK(ptr2 == pdata);
CHECK(cptr2 == pdata);
}
//*************************************************************************
TEST(test_aligned_storage_as)
{
size_t alignment;
size_t expected;
typedef etl::aligned_storage_as<sizeof(uint16_t), uint32_t>::type storage32_t;
static storage32_t data32[10];
alignment = etl::alignment_of<storage32_t>::value;
expected = std::alignment_of<uint32_t>::value;
CHECK_EQUAL(expected, alignment);
for (int i = 0; i < 10; ++i)
{
CHECK_EQUAL(0U, size_t(&data32[1]) % expected);
}
etl::aligned_storage<100, 8>::type data9;
f(static_cast<int>(data9));
}
//*************************************************************************
TEST(test_is_aligned_tests)
{
alignas(uint32_t) char buffer[2U * sizeof(uint32_t)];
char* p = buffer;
CHECK_TRUE(etl::is_aligned(p, std::alignment_of<uint32_t>()));
CHECK_TRUE(etl::is_aligned<alignof(uint32_t)>(p));
CHECK_TRUE(etl::is_aligned<uint32_t>(p));
++p;
CHECK_FALSE(etl::is_aligned(p, std::alignment_of<uint32_t>()));
CHECK_FALSE(etl::is_aligned<alignof(uint32_t)>(p));
CHECK_FALSE(etl::is_aligned<uint32_t>(p));
}
//*************************************************************************
TEST(test_is_aligned_tests_const)
{
alignas(uint32_t) const char buffer[2U * sizeof(uint32_t)] = {0, 1};
const char* p = buffer;
CHECK_TRUE(etl::is_aligned(p, std::alignment_of<const uint32_t>()));
CHECK_TRUE(etl::is_aligned<alignof(const uint32_t)>(p));
CHECK_TRUE(etl::is_aligned<const uint32_t>(p));
++p;
CHECK_FALSE(etl::is_aligned(p, std::alignment_of<const uint32_t>()));
CHECK_FALSE(etl::is_aligned<alignof(const uint32_t)>(p));
CHECK_FALSE(etl::is_aligned<const uint32_t>(p));
}
//*************************************************************************
TEST(test_type_with_alignment)
{
CHECK_EQUAL(1, alignof(etl::type_with_alignment_t<1>));
CHECK_EQUAL(2, alignof(etl::type_with_alignment_t<2>));
CHECK_EQUAL(4, alignof(etl::type_with_alignment_t<4>));
CHECK_EQUAL(8, alignof(etl::type_with_alignment_t<8>));
CHECK_EQUAL(16, alignof(etl::type_with_alignment_t<16>));
CHECK_EQUAL(32, alignof(etl::type_with_alignment_t<32>));
CHECK_EQUAL(64, alignof(etl::type_with_alignment_t<64>));
}
//*************************************************************************
TEST(test_typed_storage)
{
etl::typed_storage<A_t> a;
CHECK_EQUAL(false, a.has_value());
auto& b = a.create(123, 4);
CHECK_EQUAL(true, a.has_value());
CHECK_EQUAL(a->x, 123);
CHECK_EQUAL(a->y, 4);
CHECK_EQUAL(b.x, 123);
CHECK_EQUAL(b.y, 4);
CHECK_TRUE(*a == b);
CHECK_EQUAL(true, a.has_value());
a.destroy();
CHECK_EQUAL(false, a.has_value());
}
};
}