rockbox/firmware/include/gcc_extensions.h
Aidan MacDonald d02ad9b749 pcm: improve workaround for false -Warray-bounds in pcm_switch_sink
Change-Id: I81ff414ed07bbc61367250c25dc99c11e79d21d2
2026-04-23 20:43:07 -04:00

95 lines
3 KiB
C

/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
*
* Copyright © 2010 Rafaël Carré
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#ifndef _GCC_EXTENSIONS_H_
#define _GCC_EXTENSIONS_H_
/* Support for some GCC extensions */
/* Compile time check of format for printf/scanf like functions */
#if defined(__GNUC__) && (__GNUC__ != 7)
#define ATTRIBUTE_PRINTF(fmt, arg1) __attribute__( ( format( printf, fmt, arg1 ) ) )
#define ATTRIBUTE_SCANF(fmt, arg1) __attribute__( ( format( scanf, fmt, arg1 ) ) )
#else
#define ATTRIBUTE_PRINTF(fmt, arg1)
#define ATTRIBUTE_SCANF(fmt, arg1)
#endif
/* Use to give gcc hints on which branch is most likely taken */
#if defined(__GNUC__) && __GNUC__ >= 3
#define LIKELY(x) __builtin_expect(!!(x), 1)
#define UNLIKELY(x) __builtin_expect(!!(x), 0)
#else
#define LIKELY(x) (x)
#define UNLIKELY(x) (x)
#endif
#if defined(__GNUC__) && (__GNUC__ >= 3 || \
(__GNUC__ >= 2 && __GNUC_MINOR__ >= 5))
#define NORETURN_ATTR __attribute__((noreturn))
#else
#define NORETURN_ATTR
#endif
#if defined(__GNUC__)
#define FORCE_INLINE inline __attribute__((always_inline))
#else
#define FORCE_INLINE inline
#endif
#if defined(__GNUC__)
#define NO_INLINE __attribute__((noinline))
#else
#define NO_INLINE
#endif
/* Version information from http://ohse.de/uwe/articles/gcc-attributes.html */
#if defined(__GNUC__) && (__GNUC__ >= 4 || \
(__GNUC__ >= 3 && __GNUC_MINOR__ >= 1))
#define USED_ATTR __attribute__((used))
#else
#define USED_ATTR
#endif
#if defined(__GNUC__) && (__GNUC__ >= 3)
#define UNUSED_ATTR __attribute__((unused))
#else
#define UNUSED_ATTR
#endif
/*
* Tell the compiler to assume 'x' is true. With a new enough GCC
* there's an attribute for this based on C++23's assume attribute.
* On older GCC we need to play tricks with __builtin_unreachable().
* As a result 'x' may or may not be evaluated at runtime and should
* be side-effect free to ensure it doesn't have any runtime impact.
*/
#if defined(__GNUC__) && (__GNUC__ >= 13)
# define ASSUME(x) __attribute__((assume((x))))
#elif defined(__GNUC__)
# define ASSUME(x) do { if(!(x)) __builtin_unreachable(); } while (0)
#else
# define ASSUME(x)
#endif
#endif /* _GCC_EXTENSIONS_H_ */