2020-05-04 02:52:56 -04:00
|
|
|
#ifndef RBIMPL_ATTR_CONST_H /*-*-C++-*-vi:se ft=cpp:*/
|
|
|
|
#define RBIMPL_ATTR_CONST_H
|
2020-04-10 01:11:40 -04:00
|
|
|
/**
|
2020-04-08 00:28:13 -04:00
|
|
|
* @file
|
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
2020-05-04 03:27:48 -04:00
|
|
|
* @warning Symbols prefixed with either `RBIMPL` or `rbimpl` are
|
2020-04-08 00:28:13 -04:00
|
|
|
* implementation details. Don't take them as canon. They could
|
|
|
|
* rapidly appear then vanish. The name (path) of this header file
|
|
|
|
* is also an implementation detail. Do not expect it to persist
|
|
|
|
* at the place it is now. Developers are free to move it anywhere
|
|
|
|
* anytime at will.
|
|
|
|
* @note To ruby-core: remember that this header can be possibly
|
|
|
|
* recursively included from extension libraries written in C++.
|
|
|
|
* Do not expect for instance `__VA_ARGS__` is always available.
|
|
|
|
* We assume C99 for ruby itself but we don't assume languages of
|
2021-01-14 01:00:54 -05:00
|
|
|
* extension libraries. They could be written in C++98.
|
2020-05-04 02:52:56 -04:00
|
|
|
* @brief Defines #RBIMPL_ATTR_CONST.
|
2020-04-08 00:28:13 -04:00
|
|
|
*/
|
2020-05-08 05:31:09 -04:00
|
|
|
#include "ruby/internal/compiler_since.h"
|
|
|
|
#include "ruby/internal/has/attribute.h"
|
|
|
|
#include "ruby/internal/has/declspec_attribute.h"
|
2020-04-08 00:28:13 -04:00
|
|
|
|
|
|
|
/** Wraps (or simulates) `__attribute__((const))` */
|
2020-05-04 02:52:56 -04:00
|
|
|
#if RBIMPL_HAS_ATTRIBUTE(const)
|
|
|
|
# define RBIMPL_ATTR_CONST() __attribute__((__const__))
|
|
|
|
#elif RBIMPL_HAS_DECLSPEC_ATTRIBUTE(noalias)
|
2020-04-08 00:28:13 -04:00
|
|
|
# /* If a function can be a const, that is also a noalias. */
|
2020-05-04 02:52:56 -04:00
|
|
|
# define RBIMPL_ATTR_CONST() __declspec(noalias)
|
|
|
|
#elif RBIMPL_COMPILER_SINCE(SunPro, 5, 10, 0)
|
|
|
|
# define RBIMPL_ATTR_CONST() _Pragma("no_side_effect")
|
2020-04-08 00:28:13 -04:00
|
|
|
#else
|
2020-05-04 02:52:56 -04:00
|
|
|
# define RBIMPL_ATTR_CONST() /* void */
|
2020-04-08 00:28:13 -04:00
|
|
|
#endif
|
|
|
|
|
2021-01-06 12:20:03 -05:00
|
|
|
/** Enables #RBIMPL_ATTR_CONST if and only if. ! #RUBY_DEBUG. */
|
2021-04-29 08:31:05 -04:00
|
|
|
#if !defined(RUBY_DEBUG) || !RUBY_DEBUG
|
2020-05-19 22:38:44 -04:00
|
|
|
# define RBIMPL_ATTR_CONST_UNLESS_DEBUG() RBIMPL_ATTR_CONST()
|
2020-04-08 00:28:13 -04:00
|
|
|
#else
|
2020-05-19 22:38:44 -04:00
|
|
|
# define RBIMPL_ATTR_CONST_UNLESS_DEBUG() /* void */
|
2020-04-08 00:28:13 -04:00
|
|
|
#endif
|
2020-04-10 01:11:40 -04:00
|
|
|
|
2020-05-04 02:52:56 -04:00
|
|
|
#endif /* RBIMPL_ATTR_CONST_H */
|