2011-05-18 09:41:54 -04:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
internal.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Tue May 17 11:42:20 JST 2011
|
|
|
|
|
|
|
|
Copyright (C) 2011 Yukihiro Matsumoto
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#ifndef RUBY_INTERNAL_H
|
|
|
|
#define RUBY_INTERNAL_H 1
|
|
|
|
|
2019-12-02 00:48:42 -05:00
|
|
|
#include "ruby/config.h"
|
2014-11-15 06:49:06 -05:00
|
|
|
|
2019-12-02 00:48:42 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# error not for C++
|
2011-05-18 09:41:54 -04:00
|
|
|
#endif
|
|
|
|
|
2016-04-23 03:15:25 -04:00
|
|
|
#define LIKELY(x) RB_LIKELY(x)
|
|
|
|
#define UNLIKELY(x) RB_UNLIKELY(x)
|
|
|
|
|
* internal.h (numberof): Gathered from various files.
* array.c, math.c, thread_pthread.c, iseq.c, enum.c, string.c, io.c,
load.c, compile.c, struct.c, eval.c, gc.c, parse.y, process.c,
error.c, ruby.c: Remove the definitions of numberof.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-06-07 06:01:19 -04:00
|
|
|
#define numberof(array) ((int)(sizeof(array) / sizeof((array)[0])))
|
2019-12-03 00:42:53 -05:00
|
|
|
#define roomof(x, y) (((x) + (y) - 1) / (y))
|
|
|
|
#define type_roomof(x, y) roomof(sizeof(x), sizeof(y))
|
* internal.h (numberof): Gathered from various files.
* array.c, math.c, thread_pthread.c, iseq.c, enum.c, string.c, io.c,
load.c, compile.c, struct.c, eval.c, gc.c, parse.y, process.c,
error.c, ruby.c: Remove the definitions of numberof.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-06-07 06:01:19 -04:00
|
|
|
|
2018-08-13 17:34:20 -04:00
|
|
|
/* Prevent compiler from reordering access */
|
|
|
|
#define ACCESS_ONCE(type,x) (*((volatile type *)&(x)))
|
|
|
|
|
2019-12-04 03:16:30 -05:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
|
|
|
|
/* Folowing macros were formerlly defined in this header but moved to somewhere
|
|
|
|
* else. In order to detect them we undef here. */
|
|
|
|
|
|
|
|
/* internal/error.h */
|
|
|
|
#undef Check_Type
|
|
|
|
|
|
|
|
/* internal/class.h */
|
|
|
|
#undef RClass
|
|
|
|
#undef RCLASS_SUPER
|
|
|
|
|
|
|
|
/* internal/gc.h */
|
|
|
|
#undef NEWOBJ_OF
|
|
|
|
#undef RB_NEWOBJ_OF
|
|
|
|
#undef RB_OBJ_WRITE
|
|
|
|
|
|
|
|
/* internal/hash.h */
|
|
|
|
#undef RHASH_IFNONE
|
|
|
|
#undef RHASH_SIZE
|
|
|
|
|
|
|
|
/* internal/struct.h */
|
|
|
|
#undef RSTRUCT_LEN
|
|
|
|
#undef RSTRUCT_PTR
|
|
|
|
#undef RSTRUCT_SET
|
|
|
|
#undef RSTRUCT_GET
|
|
|
|
|
|
|
|
/* Also, we keep the following macros here. They are expected to be
|
|
|
|
* overridden in each headers. */
|
|
|
|
|
|
|
|
/* internal/array.h */
|
|
|
|
#define rb_ary_new_from_args(...) rb_nonexistent_symbol(__VA_ARGS__)
|
|
|
|
|
|
|
|
/* internal/io.h */
|
|
|
|
#define rb_io_fptr_finalize(...) rb_nonexistent_symbol(__VA_ARGS__)
|
|
|
|
|
|
|
|
/* internal/string.h */
|
|
|
|
#define rb_fstring_cstr(...) rb_nonexistent_symbol(__VA_ARGS__)
|
|
|
|
|
|
|
|
/* internal/symbol.h */
|
|
|
|
#define rb_sym_intern_ascii_cstr(...) rb_nonexistent_symbol(__VA_ARGS__)
|
|
|
|
|
|
|
|
/* internal/vm.h */
|
|
|
|
#define rb_funcallv(...) rb_nonexistent_symbol(__VA_ARGS__)
|
|
|
|
#define rb_method_basic_definition_p(...) rb_nonexistent_symbol(__VA_ARGS__)
|
2019-05-31 02:58:50 -04:00
|
|
|
|
2011-05-18 09:41:54 -04:00
|
|
|
#endif /* RUBY_INTERNAL_H */
|