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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
/******************************************************************************
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)
{
}
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_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>));
}
};
}
|