///\file /****************************************************************************** The MIT License(MIT) Embedded Template Library. https://github.com/ETLCPP/etl https://www.etlcpp.com 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. ******************************************************************************/ #if 0 #error THIS HEADER IS A GENERATOR. DO NOT INCLUDE. #endif //*************************************************************************** // This file has been auto generated. Do not edit this file. //*************************************************************************** //*************************************************************************** // To generate to header file, run this at the command line. // Note: You will need Python and COG installed. // // python -m cogapp -d -e -olargest.h -DNTypes= largest_generator.h // Where is the number of types to support. // // e.g. // To generate handlers for up to 16 types... // python -m cogapp -d -e -olargest.h -DNTypes=16 largest_generator.h // // See generate.bat //*************************************************************************** #ifndef __ETL_LARGEST__ #define __ETL_LARGEST__ ///\defgroup largest largest ///\ingroup utilities #include "platform.h" #include "type_traits.h" #include "smallest.h" #include "static_assert.h" namespace etl { //*************************************************************************** /// Template to determine the largest type and size. /// Supports up to 16 types. /// Defines 'value_type' which is the type of the largest parameter. /// Defines 'size' which is the size of the largest parameter. ///\ingroup largest //*************************************************************************** template struct largest_type { // Define 'largest_other' as 'largest_type' with all but the first parameter. typedef typename largest_type::type largest_other; // Set 'type' to be the largest of the first parameter and any of the others. // This is recursive. typedef typename etl::conditional<(sizeof(T1) > sizeof(largest_other)), // Boolean T1, // TrueType largest_other> // FalseType ::type type; // The largest type of the two. // The size of the largest type. enum { size = sizeof(type) }; }; //*************************************************************************** // Specialisation for one template parameter. //*************************************************************************** template struct largest_type { typedef T1 type; enum { size = sizeof(type) }; }; //*************************************************************************** /// Template to determine the largest alignment. /// Supports up to 16 types. /// Defines value which is the largest alignment of all the parameters. ///\ingroup largest //*************************************************************************** template struct largest_alignment { // Define 'largest_other' as 'largest_type' with all but the first parameter. typedef typename largest_alignment::type largest_other; // Set 'type' to be the largest of the first parameter and any of the others. // This is recursive. typedef typename etl::conditional<(etl::alignment_of::value > etl::alignment_of::value), // Boolean T1, // TrueType largest_other> // FalseType ::type type; // The largest type of the two. // The largest alignment. enum { value = etl::alignment_of::value }; }; //*************************************************************************** // Specialisation for one template parameter. //*************************************************************************** template struct largest_alignment { typedef T1 type; enum { value = etl::alignment_of::value }; }; //*************************************************************************** /// Defines a type that is as larger or larger than the specified type. /// Will return the specified type is there is not a larger type. ///\ingroup largest //*************************************************************************** template struct larger_int_type { STATIC_ASSERT(etl::is_integral::value, "Must be an integral type"); typedef typename etl::smallest_int_for_bits::type>::bits + 1>::type type; }; //*************************************************************************** /// Defines a type that is as larger or larger than the specified type. /// Will return the specified type is there is not a larger type. ///\ingroup largest //*************************************************************************** template struct larger_uint_type { STATIC_ASSERT(etl::is_integral::value, "Must be an integral type"); typedef typename etl::smallest_uint_for_bits::type>::bits + 1>::type type; }; //*************************************************************************** /// Defines a type that is as larger or larger than the specified type. /// Will return the specified type is there is not a larger type. /// The returned type will be of the same sign. ///\ingroup largest //*************************************************************************** template ::value> struct larger_type; template struct larger_type { STATIC_ASSERT(etl::is_integral::value, "Must be an integral type"); typedef typename etl::smallest_uint_for_bits::bits + 1>::type type; }; template struct larger_type { STATIC_ASSERT(etl::is_integral::value, "Must be an integral type"); typedef typename etl::smallest_int_for_bits::bits + 1>::type type; }; //*************************************************************************** /// Template to determine the largest type, size and alignment. /// Supports up to 16 types. /// Defines value which is the largest type, size and alignment of all the parameters. ///\ingroup largest //*************************************************************************** template struct largest { typedef typename etl::largest_type::type type; enum { size = etl::largest_type::size, alignment = etl::largest_alignment::value }; }; } #endif