/* * Copyright (C) 2011-2014 Daniel Scharrer * * This software is provided 'as-is', without any express or implied * warranty. In no event will the author(s) be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * 3. This notice may not be removed or altered from any source distribution. */ /*! * \file * * Utility functions for dealing with alignment of objects. */ #ifndef INNOEXTRACT_UTIL_ALIGN_HPP #define INNOEXTRACT_UTIL_ALIGN_HPP #include #include "util/math.hpp" #include "configure.hpp" namespace util { //! Get the alignment of a type. template unsigned int alignment_of() { #if INNOEXTRACT_HAVE_ALIGNOF return alignof(T); #elif defined(_MSC_VER) && _MSC_VER >= 1300 return __alignof(T); #elif defined(__GNUC__) return __alignof__(T); #else return sizeof(T); #endif } //! Check if a pointer has aparticular alignment. inline bool is_aligned_on(const void * p, size_t alignment) { return alignment == 1 || (is_power_of_2(alignment) ? mod_power_of_2(size_t(p), alignment) == 0 : size_t(p) % alignment == 0); } //! Check if a pointer is aligned for a specific type. template bool is_aligned(const void * p) { return is_aligned_on(p, alignment_of()); } } // namespace util #endif // INNOEXTRACT_UTIL_ALIGN_HPP