mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +02:00
* libguile/__scm.h: * libguile/alist.h: * libguile/array-handle.h: * libguile/array-map.h: * libguile/arrays.h: * libguile/async.h: * libguile/backtrace.h: * libguile/bitvectors.h: * libguile/boolean.h: * libguile/chars.h: * libguile/chooks.h: * libguile/continuations.h: * libguile/debug-malloc.h: * libguile/debug.h: * libguile/deprecation.h: * libguile/dynl.h: * libguile/dynstack.h: * libguile/dynwind.h: * libguile/eq.h: * libguile/error.h: * libguile/eval.h: * libguile/evalext.h: * libguile/expand.h: * libguile/extensions.h: * libguile/feature.h: * libguile/filesys.h: * libguile/fluids.h: * libguile/fports.h: * libguile/gc-inline.h: * libguile/gc.h: * libguile/generalized-arrays.h: * libguile/generalized-vectors.h: * libguile/gettext.h: * libguile/goops.h: * libguile/gsubr.h: * libguile/guardians.h: * libguile/hash.h: * libguile/hashtab.h: * libguile/hooks.h: * libguile/i18n.h: * libguile/init.h: * libguile/inline.h: * libguile/ioext.h: * libguile/iselect.h: * libguile/keywords.h: * libguile/list.h: * libguile/load.h: * libguile/macros.h: * libguile/mallocs.c: * libguile/mallocs.h: * libguile/memoize.h: * libguile/modules.h: * libguile/net_db.h: * libguile/null-threads.h: * libguile/numbers.h: * libguile/objprop.h: * libguile/options.h: * libguile/pairs.h: * libguile/poll.h: * libguile/ports.h: * libguile/posix-w32.h: * libguile/posix.h: * libguile/print.h: * libguile/procprop.h: * libguile/procs.h: * libguile/promises.h: * libguile/pthread-threads.h: * libguile/random.h: * libguile/rdelim.h: * libguile/read.h: * libguile/regex-posix.h: * libguile/rw.h: * libguile/scmsigs.h: * libguile/script.h: * libguile/simpos.h: * libguile/smob.h: * libguile/snarf.h: * libguile/socket.h: * libguile/sort.h: * libguile/srcprop.h: * libguile/stackchk.h: * libguile/stacks.h: * libguile/stime.h: * libguile/strings.h: * libguile/strorder.h: * libguile/strports.h: * libguile/struct.h: * libguile/symbols.h: * libguile/syscalls.h: * libguile/tags.h: * libguile/threads.h: * libguile/throw.h: * libguile/trees.h: * libguile/unicode.h: * libguile/uniform.h: * libguile/values.h: * libguile/variable.h: * libguile/vectors.h: * libguile/vports.h: * libguile/weak-list.h: * libguile/weak-set.h: * libguile/weak-table.h: * libguile/weak-vector.h: Remove "classes: h_files". Reformat copyrights if needed.
85 lines
3.4 KiB
C
85 lines
3.4 KiB
C
#ifndef SCM_INLINE_H
|
|
#define SCM_INLINE_H
|
|
|
|
/* Copyright (C) 2001-2004,2006,2008-2013,2018
|
|
* Free Software Foundation, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation; either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA
|
|
*/
|
|
|
|
/* This file is for inline functions. On platforms that don't support
|
|
inlining functions, they are turned into ordinary functions. On
|
|
platforms that do support inline functions, the definitions are still
|
|
compiled into the library, once, in inline.c. */
|
|
|
|
#include "libguile/__scm.h"
|
|
|
|
/* We would like gnu89 extern inline semantics, not C99 extern inline
|
|
semantics, so that we can be sure to avoid reifying definitions of
|
|
inline functions in all compilation units, which is a possibility at
|
|
low optimization levels, or if a user takes the address of an inline
|
|
function.
|
|
|
|
Hence the `__gnu_inline__' attribute, in accordance with:
|
|
http://gcc.gnu.org/gcc-4.3/porting_to.html .
|
|
|
|
With GCC 4.2, `__GNUC_STDC_INLINE__' is never defined (because C99 inline
|
|
semantics are not supported), but a warning is issued in C99 mode if
|
|
`__gnu_inline__' is not used.
|
|
|
|
Apple's GCC build >5400 (since Xcode 3.0) doesn't support GNU inline in
|
|
C99 mode and doesn't define `__GNUC_STDC_INLINE__'. Fall back to "static
|
|
inline" in that case. */
|
|
|
|
# if (defined __GNUC__) && (!(((defined __APPLE_CC__) && (__APPLE_CC__ > 5400)) && __STDC_VERSION__ >= 199901L))
|
|
# if (defined __GNUC_STDC_INLINE__) || (__GNUC__ == 4 && __GNUC_MINOR__ == 2)
|
|
# define SCM_C_EXTERN_INLINE \
|
|
extern __inline__ __attribute__ ((__gnu_inline__))
|
|
# else
|
|
# define SCM_C_EXTERN_INLINE extern __inline__
|
|
# endif
|
|
# endif
|
|
|
|
/* SCM_INLINE is a macro prepended to all public inline function
|
|
declarations. Implementations of those functions should also be in
|
|
the header file, prefixed by SCM_INLINE_IMPLEMENTATION, and protected
|
|
by SCM_CAN_INLINE. Non-inline definitions will be reified into
|
|
inline.c. See strings.h for an example usage, for scm_is_string. */
|
|
|
|
#if defined SCM_IMPLEMENT_INLINES
|
|
/* Reifying functions to a file, whether or not inlining is available. */
|
|
# define SCM_CAN_INLINE 0
|
|
# define SCM_INLINE SCM_API
|
|
# define SCM_INLINE_IMPLEMENTATION
|
|
#elif defined SCM_C_INLINE
|
|
/* Declarations when inlining is available. */
|
|
# define SCM_CAN_INLINE 1
|
|
# ifdef SCM_C_EXTERN_INLINE
|
|
# define SCM_INLINE SCM_C_EXTERN_INLINE
|
|
# else
|
|
/* Fall back to static inline if GNU "extern inline" is unavailable. */
|
|
# define SCM_INLINE static SCM_C_INLINE
|
|
# endif
|
|
# define SCM_INLINE_IMPLEMENTATION SCM_INLINE
|
|
#else
|
|
/* Declarations when inlining is not available. */
|
|
# define SCM_CAN_INLINE 0
|
|
# define SCM_INLINE SCM_API
|
|
/* Don't define SCM_INLINE_IMPLEMENTATION; it should never be seen in
|
|
this case. */
|
|
#endif
|
|
|
|
#endif /* SCM_INLINE_H */
|