2011-01-09 06:57:07 +00:00
|
|
|
/* C++ compatible function declaration macros.
|
2022-01-01 07:45:51 +00:00
|
|
|
Copyright (C) 2010-2022 Free Software Foundation, Inc.
|
2011-01-09 06:57:07 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify it
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
under the terms of the GNU Lesser General Public License as published
|
|
|
|
by the Free Software Foundation; either version 2 of the License, or
|
2011-01-09 06:57:07 +00:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
Lesser General Public License for more details.
|
2011-01-09 06:57:07 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2017-09-13 09:07:03 +00:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2011-01-09 06:57:07 +00:00
|
|
|
|
2011-02-06 22:13:03 +00:00
|
|
|
#ifndef _GL_CXXDEFS_H
|
|
|
|
#define _GL_CXXDEFS_H
|
2011-01-09 06:57:07 +00:00
|
|
|
|
2016-11-20 00:00:57 +00:00
|
|
|
/* Begin/end the GNULIB_NAMESPACE namespace. */
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
# define _GL_BEGIN_NAMESPACE namespace GNULIB_NAMESPACE {
|
|
|
|
# define _GL_END_NAMESPACE }
|
|
|
|
#else
|
|
|
|
# define _GL_BEGIN_NAMESPACE
|
|
|
|
# define _GL_END_NAMESPACE
|
|
|
|
#endif
|
|
|
|
|
2011-01-09 06:57:07 +00:00
|
|
|
/* The three most frequent use cases of these macros are:
|
|
|
|
|
|
|
|
* For providing a substitute for a function that is missing on some
|
|
|
|
platforms, but is declared and works fine on the platforms on which
|
|
|
|
it exists:
|
|
|
|
|
|
|
|
#if @GNULIB_FOO@
|
|
|
|
# if !@HAVE_FOO@
|
|
|
|
_GL_FUNCDECL_SYS (foo, ...);
|
|
|
|
# endif
|
|
|
|
_GL_CXXALIAS_SYS (foo, ...);
|
|
|
|
_GL_CXXALIASWARN (foo);
|
|
|
|
#elif defined GNULIB_POSIXCHECK
|
|
|
|
...
|
|
|
|
#endif
|
|
|
|
|
|
|
|
* For providing a replacement for a function that exists on all platforms,
|
|
|
|
but is broken/insufficient and needs to be replaced on some platforms:
|
|
|
|
|
|
|
|
#if @GNULIB_FOO@
|
|
|
|
# if @REPLACE_FOO@
|
|
|
|
# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
|
|
|
|
# undef foo
|
|
|
|
# define foo rpl_foo
|
|
|
|
# endif
|
|
|
|
_GL_FUNCDECL_RPL (foo, ...);
|
|
|
|
_GL_CXXALIAS_RPL (foo, ...);
|
|
|
|
# else
|
|
|
|
_GL_CXXALIAS_SYS (foo, ...);
|
|
|
|
# endif
|
|
|
|
_GL_CXXALIASWARN (foo);
|
|
|
|
#elif defined GNULIB_POSIXCHECK
|
|
|
|
...
|
|
|
|
#endif
|
|
|
|
|
|
|
|
* For providing a replacement for a function that exists on some platforms
|
|
|
|
but is broken/insufficient and needs to be replaced on some of them and
|
|
|
|
is additionally either missing or undeclared on some other platforms:
|
|
|
|
|
|
|
|
#if @GNULIB_FOO@
|
|
|
|
# if @REPLACE_FOO@
|
|
|
|
# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
|
|
|
|
# undef foo
|
|
|
|
# define foo rpl_foo
|
|
|
|
# endif
|
|
|
|
_GL_FUNCDECL_RPL (foo, ...);
|
|
|
|
_GL_CXXALIAS_RPL (foo, ...);
|
|
|
|
# else
|
|
|
|
# if !@HAVE_FOO@ or if !@HAVE_DECL_FOO@
|
|
|
|
_GL_FUNCDECL_SYS (foo, ...);
|
|
|
|
# endif
|
|
|
|
_GL_CXXALIAS_SYS (foo, ...);
|
|
|
|
# endif
|
|
|
|
_GL_CXXALIASWARN (foo);
|
|
|
|
#elif defined GNULIB_POSIXCHECK
|
|
|
|
...
|
|
|
|
#endif
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* _GL_EXTERN_C declaration;
|
|
|
|
performs the declaration with C linkage. */
|
|
|
|
#if defined __cplusplus
|
|
|
|
# define _GL_EXTERN_C extern "C"
|
|
|
|
#else
|
|
|
|
# define _GL_EXTERN_C extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
|
|
|
|
declares a replacement function, named rpl_func, with the given prototype,
|
|
|
|
consisting of return type, parameters, and attributes.
|
|
|
|
Example:
|
|
|
|
_GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)
|
|
|
|
_GL_ARG_NONNULL ((1)));
|
|
|
|
*/
|
|
|
|
#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
|
|
|
|
_GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
|
|
|
|
#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \
|
|
|
|
_GL_EXTERN_C rettype rpl_func parameters_and_attributes
|
|
|
|
|
|
|
|
/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
|
|
|
|
declares the system function, named func, with the given prototype,
|
|
|
|
consisting of return type, parameters, and attributes.
|
|
|
|
Example:
|
|
|
|
_GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)
|
|
|
|
_GL_ARG_NONNULL ((1)));
|
|
|
|
*/
|
|
|
|
#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
|
|
|
|
_GL_EXTERN_C rettype func parameters_and_attributes
|
|
|
|
|
|
|
|
/* _GL_CXXALIAS_RPL (func, rettype, parameters);
|
|
|
|
declares a C++ alias called GNULIB_NAMESPACE::func
|
|
|
|
that redirects to rpl_func, if GNULIB_NAMESPACE is defined.
|
|
|
|
Example:
|
|
|
|
_GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));
|
2016-11-20 00:00:57 +00:00
|
|
|
|
|
|
|
Wrapping rpl_func in an object with an inline conversion operator
|
|
|
|
avoids a reference to rpl_func unless GNULIB_NAMESPACE::func is
|
|
|
|
actually used in the program. */
|
2011-01-09 06:57:07 +00:00
|
|
|
#define _GL_CXXALIAS_RPL(func,rettype,parameters) \
|
|
|
|
_GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
|
|
|
|
namespace GNULIB_NAMESPACE \
|
|
|
|
{ \
|
2016-11-20 00:00:57 +00:00
|
|
|
static const struct _gl_ ## func ## _wrapper \
|
|
|
|
{ \
|
|
|
|
typedef rettype (*type) parameters; \
|
2016-12-02 05:56:49 +00:00
|
|
|
\
|
|
|
|
inline operator type () const \
|
|
|
|
{ \
|
|
|
|
return ::rpl_func; \
|
|
|
|
} \
|
2016-11-20 00:00:57 +00:00
|
|
|
} func = {}; \
|
2011-01-09 06:57:07 +00:00
|
|
|
} \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
Update from Gnulib
This incorporates:
2020-08-16 time_rz: remove unused functions
2020-08-16 time_rz: fix issues with mktime_z failures
2020-08-16 nstrftime: Guide inlining also on clang
2020-08-16 intprops: Avoid bogus warning on clang
2020-08-16 libc-config: Enable __REDIRECT macro also on clang
2020-08-16 regex: Use initializer shorthand syntax also with clang
2020-08-16 regex: Use space optimization also with clang
2020-08-16 Use _Static_assert and static_assert when present on clang
2020-08-16 Use 'throw ()' for optimization in C++ mode also on clang
2020-08-16 stdio: Don't break attribute 'scanf' on clang
2020-08-16 Fix "warning: 'format' attribute ...: rpl_printf"
2020-08-16 Fix "warning: attribute declaration must precede definition"
2020-08-16 Fix undesired warnings
2020-08-16 Don't use Autoconf quadrigraphsxo
2020-08-16 Fix quoting of AC_LANG_PROGRAM arguments
2020-08-16 Assume autoconf >= 2.64
2020-08-15 nstrftime: be more predictable about errno
2020-08-15 canonicalize: Fix autoconf test on MSVC/clang
2020-08-15 Support compiling without -loldnames on native Windows
2020-08-14 mktime, mktime-internal: Remove obsolete code
2020-08-14 Assume tzset exists
* lib/c++defs.h, lib/canonicalize-lgpl.c, lib/cdefs.h, lib/dup2.c:
* lib/fcntl.in.h, lib/getopt-cdefs.in.h, lib/intprops.h, lib/md5.h:
* lib/mktime.c, lib/nstrftime.c, lib/open.c, lib/regcomp.c:
* lib/regex_internal.h, lib/stdio.in.h, lib/stdlib.in.h:
* lib/strftime.h, lib/string.in.h, lib/sys_select.in.h:
* lib/sys_stat.in.h, lib/sys_time.in.h, lib/time.in.h, lib/time_rz.c:
* lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
* m4/absolute-header.m4, m4/alloca.m4, m4/canonicalize.m4, m4/dup2.m4:
* m4/fchmodat.m4, m4/fcntl.m4, m4/fdopendir.m4, m4/fpending.m4:
* m4/futimens.m4, m4/getdtablesize.m4, m4/getloadavg.m4:
* m4/gnulib-common.m4, m4/include_next.m4, m4/largefile.m4:
* m4/manywarnings.m4, m4/mktime.m4, m4/nstrftime.m4, m4/open-slash.m4:
* m4/pselect.m4, m4/pthread_sigmask.m4, m4/time_h.m4, m4/utimens.m4:
* m4/utimensat.m4, m4/utimes.m4, m4/warnings.m4:
Copy from Gnulib.
* lib/gnulib.mk.in: Regenerate.
2020-08-16 21:22:56 +00:00
|
|
|
/* _GL_CXXALIAS_MDA (func, rettype, parameters);
|
|
|
|
is to be used when func is a Microsoft deprecated alias, on native Windows.
|
|
|
|
It declares a C++ alias called GNULIB_NAMESPACE::func
|
|
|
|
that redirects to _func, if GNULIB_NAMESPACE is defined.
|
|
|
|
Example:
|
|
|
|
_GL_CXXALIAS_MDA (open, int, (const char *filename, int flags, ...));
|
|
|
|
*/
|
|
|
|
#define _GL_CXXALIAS_MDA(func,rettype,parameters) \
|
|
|
|
_GL_CXXALIAS_RPL_1 (func, _##func, rettype, parameters)
|
|
|
|
|
2011-01-09 06:57:07 +00:00
|
|
|
/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
|
|
|
|
is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
|
|
|
|
except that the C function rpl_func may have a slightly different
|
|
|
|
declaration. A cast is used to silence the "invalid conversion" error
|
|
|
|
that would otherwise occur. */
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \
|
|
|
|
namespace GNULIB_NAMESPACE \
|
|
|
|
{ \
|
2016-11-20 00:00:57 +00:00
|
|
|
static const struct _gl_ ## func ## _wrapper \
|
|
|
|
{ \
|
|
|
|
typedef rettype (*type) parameters; \
|
2016-12-02 05:56:49 +00:00
|
|
|
\
|
|
|
|
inline operator type () const \
|
|
|
|
{ \
|
|
|
|
return reinterpret_cast<type>(::rpl_func); \
|
|
|
|
} \
|
2016-11-20 00:00:57 +00:00
|
|
|
} func = {}; \
|
2011-01-09 06:57:07 +00:00
|
|
|
} \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
2020-12-24 15:48:40 +00:00
|
|
|
/* _GL_CXXALIAS_MDA_CAST (func, rettype, parameters);
|
|
|
|
is like _GL_CXXALIAS_MDA (func, rettype, parameters);
|
|
|
|
except that the C function func may have a slightly different declaration.
|
|
|
|
A cast is used to silence the "invalid conversion" error that would
|
|
|
|
otherwise occur. */
|
|
|
|
#define _GL_CXXALIAS_MDA_CAST(func,rettype,parameters) \
|
|
|
|
_GL_CXXALIAS_RPL_CAST_1 (func, _##func, rettype, parameters)
|
|
|
|
|
2011-01-09 06:57:07 +00:00
|
|
|
/* _GL_CXXALIAS_SYS (func, rettype, parameters);
|
|
|
|
declares a C++ alias called GNULIB_NAMESPACE::func
|
|
|
|
that redirects to the system provided function func, if GNULIB_NAMESPACE
|
|
|
|
is defined.
|
|
|
|
Example:
|
|
|
|
_GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));
|
2016-11-20 00:00:57 +00:00
|
|
|
|
|
|
|
Wrapping func in an object with an inline conversion operator
|
|
|
|
avoids a reference to func unless GNULIB_NAMESPACE::func is
|
|
|
|
actually used in the program. */
|
2011-01-09 06:57:07 +00:00
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
2016-11-20 00:00:57 +00:00
|
|
|
# define _GL_CXXALIAS_SYS(func,rettype,parameters) \
|
|
|
|
namespace GNULIB_NAMESPACE \
|
|
|
|
{ \
|
|
|
|
static const struct _gl_ ## func ## _wrapper \
|
|
|
|
{ \
|
|
|
|
typedef rettype (*type) parameters; \
|
2016-12-02 05:56:49 +00:00
|
|
|
\
|
|
|
|
inline operator type () const \
|
|
|
|
{ \
|
|
|
|
return ::func; \
|
|
|
|
} \
|
2016-11-20 00:00:57 +00:00
|
|
|
} func = {}; \
|
2016-12-02 05:56:49 +00:00
|
|
|
} \
|
2011-01-09 06:57:07 +00:00
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIAS_SYS(func,rettype,parameters) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);
|
|
|
|
is like _GL_CXXALIAS_SYS (func, rettype, parameters);
|
|
|
|
except that the C function func may have a slightly different declaration.
|
|
|
|
A cast is used to silence the "invalid conversion" error that would
|
|
|
|
otherwise occur. */
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \
|
|
|
|
namespace GNULIB_NAMESPACE \
|
|
|
|
{ \
|
2016-11-20 00:00:57 +00:00
|
|
|
static const struct _gl_ ## func ## _wrapper \
|
|
|
|
{ \
|
|
|
|
typedef rettype (*type) parameters; \
|
2016-12-02 05:56:49 +00:00
|
|
|
\
|
|
|
|
inline operator type () const \
|
|
|
|
{ \
|
|
|
|
return reinterpret_cast<type>(::func); \
|
|
|
|
} \
|
2016-11-20 00:00:57 +00:00
|
|
|
} func = {}; \
|
2011-01-09 06:57:07 +00:00
|
|
|
} \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);
|
|
|
|
is like _GL_CXXALIAS_SYS (func, rettype, parameters);
|
|
|
|
except that the C function is picked among a set of overloaded functions,
|
|
|
|
namely the one with rettype2 and parameters2. Two consecutive casts
|
|
|
|
are used to silence the "cannot find a match" and "invalid conversion"
|
|
|
|
errors that would otherwise occur. */
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
/* The outer cast must be a reinterpret_cast.
|
|
|
|
The inner cast: When the function is defined as a set of overloaded
|
|
|
|
functions, it works as a static_cast<>, choosing the designated variant.
|
|
|
|
When the function is defined as a single variant, it works as a
|
|
|
|
reinterpret_cast<>. The parenthesized cast syntax works both ways. */
|
|
|
|
# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \
|
|
|
|
namespace GNULIB_NAMESPACE \
|
|
|
|
{ \
|
2016-11-20 00:00:57 +00:00
|
|
|
static const struct _gl_ ## func ## _wrapper \
|
|
|
|
{ \
|
|
|
|
typedef rettype (*type) parameters; \
|
|
|
|
\
|
2016-12-02 05:56:49 +00:00
|
|
|
inline operator type () const \
|
|
|
|
{ \
|
|
|
|
return reinterpret_cast<type>((rettype2 (*) parameters2)(::func)); \
|
|
|
|
} \
|
2016-11-20 00:00:57 +00:00
|
|
|
} func = {}; \
|
2011-01-09 06:57:07 +00:00
|
|
|
} \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* _GL_CXXALIASWARN (func);
|
|
|
|
causes a warning to be emitted when ::func is used but not when
|
|
|
|
GNULIB_NAMESPACE::func is used. func must be defined without overloaded
|
|
|
|
variants. */
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
# define _GL_CXXALIASWARN(func) \
|
|
|
|
_GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)
|
|
|
|
# define _GL_CXXALIASWARN_1(func,namespace) \
|
|
|
|
_GL_CXXALIASWARN_2 (func, namespace)
|
2017-09-13 09:07:03 +00:00
|
|
|
/* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,
|
2011-01-09 06:57:07 +00:00
|
|
|
we enable the warning only when not optimizing. */
|
Update from Gnulib
This incorporates:
2020-08-06 libgmp: add <gmp/gmp.h> support
2020-08-06 Consider that clang defines __OPTIMIZE__ like GCC does
2020-08-06 Use __builtin_expect with clang everywhere
2020-08-05 Use __builtin_clz{,l,ll} with clang, also on Windows
2020-08-05 Use __builtin_ctz{,l,ll} and __builtin_ffs{,l,ll} with clang
2020-07-31 _GL_CMP: Improve documentation
2020-07-30 alloca, largefile: sync with Autoconf master
* lib/c++defs.h, lib/cdefs.h, lib/count-leading-zeros.h:
* lib/count-trailing-zeros.h, m4/alloca.m4, m4/gnulib-common.m4:
* m4/largefile.m4, m4/libgmp.m4:
Copy from Gnulib.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
2020-08-06 22:24:47 +00:00
|
|
|
# if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__)
|
2011-01-09 06:57:07 +00:00
|
|
|
# define _GL_CXXALIASWARN_2(func,namespace) \
|
|
|
|
_GL_WARN_ON_USE (func, \
|
|
|
|
"The symbol ::" #func " refers to the system function. " \
|
|
|
|
"Use " #namespace "::" #func " instead.")
|
|
|
|
# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING
|
|
|
|
# define _GL_CXXALIASWARN_2(func,namespace) \
|
|
|
|
extern __typeof__ (func) func
|
|
|
|
# else
|
|
|
|
# define _GL_CXXALIASWARN_2(func,namespace) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIASWARN(func) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);
|
|
|
|
causes a warning to be emitted when the given overloaded variant of ::func
|
|
|
|
is used but not when GNULIB_NAMESPACE::func is used. */
|
|
|
|
#if defined __cplusplus && defined GNULIB_NAMESPACE
|
|
|
|
# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \
|
|
|
|
_GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \
|
|
|
|
GNULIB_NAMESPACE)
|
|
|
|
# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \
|
|
|
|
_GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)
|
2017-09-13 09:07:03 +00:00
|
|
|
/* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,
|
2011-01-09 06:57:07 +00:00
|
|
|
we enable the warning only when not optimizing. */
|
Update from Gnulib
This incorporates:
2020-08-06 libgmp: add <gmp/gmp.h> support
2020-08-06 Consider that clang defines __OPTIMIZE__ like GCC does
2020-08-06 Use __builtin_expect with clang everywhere
2020-08-05 Use __builtin_clz{,l,ll} with clang, also on Windows
2020-08-05 Use __builtin_ctz{,l,ll} and __builtin_ffs{,l,ll} with clang
2020-07-31 _GL_CMP: Improve documentation
2020-07-30 alloca, largefile: sync with Autoconf master
* lib/c++defs.h, lib/cdefs.h, lib/count-leading-zeros.h:
* lib/count-trailing-zeros.h, m4/alloca.m4, m4/gnulib-common.m4:
* m4/largefile.m4, m4/libgmp.m4:
Copy from Gnulib.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
2020-08-06 22:24:47 +00:00
|
|
|
# if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__)
|
2011-01-09 06:57:07 +00:00
|
|
|
# define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \
|
Update from Gnulib
This incorporates:
2020-08-11 Use expression statements also on clang
2020-08-10 Use many __attribute__s with clang
2020-08-09 Use attribute __aligned__ with clang
2020-08-09 Use __alignof__ with clang
2020-08-09 ignore-value: Simplify on clang
2020-08-09 Use __typeof__ with clang
2020-08-09 intprops: Fix typo in comment
2020-08-09 Silence warnings from clang 10 with -Wimplicit-fallthrough
2020-08-09 count-one-bits: Use __builtin_popcount{,l,ll} on clang
2020-08-09 string: Fix build error in C++ mode with clang
2020-08-09 Add ability to emit user-defined diagnostics with clang
2020-08-07 alloca: No need to compile alloca.c with clang
2020-08-06 Use __builtin_assume with clang
* lib/alloca.in.h, lib/arg-nonnull.h, lib/c++defs.h, lib/cdefs.h:
* lib/count-one-bits.h, lib/dirent.in.h, lib/ignore-value.h:
* lib/intprops.h, lib/malloca.h, lib/regex_internal.h:
* lib/stdalign.in.h, lib/stddef.in.h, lib/stdio.in.h:
* lib/stdlib.in.h, lib/string.in.h, lib/verify.h, lib/warn-on-use.h:
* m4/gnulib-common.m4, m4/stddef_h.m4, m4/stdint.m4:
Copy from Gnulib.
2020-08-11 17:58:35 +00:00
|
|
|
_GL_WARN_ON_USE_CXX (func, rettype, rettype, parameters_and_attributes, \
|
2011-01-09 06:57:07 +00:00
|
|
|
"The symbol ::" #func " refers to the system function. " \
|
|
|
|
"Use " #namespace "::" #func " instead.")
|
|
|
|
# else
|
|
|
|
# define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \
|
|
|
|
_GL_EXTERN_C int _gl_cxxalias_dummy
|
|
|
|
#endif
|
|
|
|
|
2011-02-06 22:13:03 +00:00
|
|
|
#endif /* _GL_CXXDEFS_H */
|