///\file /****************************************************************************** The MIT License(MIT) Embedded Template Library. https://github.com/ETLCPP/etl Copyright(c) 2014 jwellbelove 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. ******************************************************************************/ #ifndef __ETL_ALIGNEMENT__ #define __ETL_ALIGNEMENT__ #include #include "type_traits.h" #include "static_assert.h" ///\defgroup alignment alignment /// Creates a variable of the specified type at the specified alignment. /// \ingroup utilities namespace etl { namespace __private_alignment__ { //*************************************************************************** // Matcher. //*************************************************************************** template class type_with_alignment_matcher; // Matching alignment. template class type_with_alignment_matcher { public: typedef T1 type; }; // Non-matching alignment. template class type_with_alignment_matcher { public: typedef typename type_with_alignment_matcher::value, ALIGNMENT, T2, T3, T4, T5, T6, T7, T8, void>::type type; }; // Non-matching alignment, non left. template class type_with_alignment_matcher { public: }; //*************************************************************************** // Helper. //*************************************************************************** template class type_with_alignment_helper { public: typedef typename type_with_alignment_matcher::value, ALIGNMENT, T1, T2, T3, T4, T5, T6, T7, T8>::type type; }; } //*************************************************************************** /// Gets a type that has the same as the specified alignment. ///\ingroup alignment //*************************************************************************** template class type_with_alignment { public: typedef typename __private_alignment__::type_with_alignment_helper::type type; }; //*************************************************************************** /// Aligned storage ///\ingroup alignment //*************************************************************************** template struct aligned_storage { struct type { /// Convert to T reference. template operator T& () { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(*data); } /// Convert to const T reference. template operator const T& () const { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(*data); } /// Convert to T pointer. template operator T* () { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(data); } /// Convert to const T pointer. template operator const T* () const { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(data); } /// Get address as T reference. template T& get_reference() { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(*data); } /// Get address as const T reference. template const T& get_reference() const { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(*data); } /// Get address as T pointer. template T* get_address() { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(data); } /// Get address as const T pointer. template const T* get_address() const { STATIC_ASSERT(ALIGNMENT % etl::alignment_of::value == 0, "Incompatible alignment"); return reinterpret_cast(data); } union { uint8_t data[LENGTH]; typename etl::type_with_alignment::type __etl_alignment_type__; // A POD type that has the same alignment as ALIGNMENT. }; }; }; //*************************************************************************** /// Aligned storage as ///\ingroup alignment //*************************************************************************** template struct aligned_storage_as : public etl::aligned_storage::value> { }; } #endif