2020-04-10 08:11:40 +03:00
|
|
|
#ifndef RUBY_INTERNAL_H /*-*-C-*-vi:se ft=c:*/
|
2011-05-18 17:41:54 +04:00
|
|
|
#define RUBY_INTERNAL_H 1
|
2020-04-10 08:11:40 +03:00
|
|
|
/**
|
|
|
|
* @author $Author$
|
|
|
|
* @date Tue May 17 11:42:20 JST 2011
|
|
|
|
* @copyright Copyright (C) 2011 Yukihiro Matsumoto
|
|
|
|
* @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-08 12:31:09 +03:00
|
|
|
#include "ruby/internal/config.h"
|
2014-11-15 14:49:06 +03:00
|
|
|
|
2019-12-02 08:48:42 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# error not for C++
|
2011-05-18 17:41:54 +04:00
|
|
|
#endif
|
|
|
|
|
2016-04-23 10:15:25 +03: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 14:01:19 +04:00
|
|
|
#define numberof(array) ((int)(sizeof(array) / sizeof((array)[0])))
|
2019-12-03 08:42:53 +03: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 14:01:19 +04:00
|
|
|
|
2018-08-14 00:34:20 +03:00
|
|
|
/* Prevent compiler from reordering access */
|
|
|
|
#define ACCESS_ONCE(type,x) (*((volatile type *)&(x)))
|
|
|
|
|
2019-12-04 11:16:30 +03:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
|
2020-03-19 12:11:57 +03:00
|
|
|
/* Following macros were formerly defined in this header but moved to somewhere
|
2019-12-04 11:16:30 +03:00
|
|
|
* else. In order to detect them we undef here. */
|
|
|
|
|
2020-08-14 08:45:23 +03:00
|
|
|
/* internal/array.h */
|
|
|
|
#undef RARRAY_AREF
|
|
|
|
|
2019-12-04 11:16:30 +03:00
|
|
|
/* 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
|
2020-08-17 05:12:23 +03:00
|
|
|
#undef RHASH_TBL
|
2020-08-17 05:54:12 +03:00
|
|
|
#undef RHASH_EMPTY_P
|
2019-12-04 11:16:30 +03:00
|
|
|
|
2020-08-17 07:51:23 +03:00
|
|
|
/* internal/object.h */
|
|
|
|
#undef ROBJECT_IV_INDEX_TBL
|
|
|
|
|
2019-12-04 11:16:30 +03:00
|
|
|
/* 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 09:58:50 +03:00
|
|
|
|
2020-01-02 22:46:51 +03:00
|
|
|
|
|
|
|
/* MRI debug support */
|
|
|
|
|
|
|
|
/* gc.c */
|
|
|
|
void rb_obj_info_dump(VALUE obj);
|
|
|
|
void rb_obj_info_dump_loc(VALUE obj, const char *file, int line, const char *func);
|
|
|
|
|
|
|
|
/* debug.c */
|
2020-05-29 05:19:44 +03:00
|
|
|
|
|
|
|
RUBY_SYMBOL_EXPORT_BEGIN
|
2020-01-02 22:46:51 +03:00
|
|
|
void ruby_debug_breakpoint(void);
|
|
|
|
PRINTF_ARGS(void ruby_debug_printf(const char*, ...), 1, 2);
|
2020-05-29 05:19:44 +03:00
|
|
|
RUBY_SYMBOL_EXPORT_END
|
2020-01-02 22:46:51 +03:00
|
|
|
|
|
|
|
// show obj data structure without any side-effect
|
2020-02-21 20:59:46 +03:00
|
|
|
#define rp(obj) rb_obj_info_dump_loc((VALUE)(obj), __FILE__, __LINE__, RUBY_FUNCTION_NAME_STRING)
|
2020-01-02 22:46:51 +03:00
|
|
|
|
|
|
|
// same as rp, but add message header
|
|
|
|
#define rp_m(msg, obj) do { \
|
2021-09-09 17:21:06 +03:00
|
|
|
fputs((msg), stderr); \
|
|
|
|
rb_obj_info_dump((VALUE)(obj)); \
|
2020-01-02 22:46:51 +03:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
// `ruby_debug_breakpoint()` does nothing,
|
|
|
|
// but breakpoint is set in run.gdb, so `make gdb` can stop here.
|
|
|
|
#define bp() ruby_debug_breakpoint()
|
|
|
|
|
2021-08-02 06:06:44 +03:00
|
|
|
#define RBOOL(v) ((v) ? Qtrue : Qfalse)
|
2021-09-03 14:50:12 +03:00
|
|
|
#define RB_BIGNUM_TYPE_P(x) RB_TYPE_P((x), T_BIGNUM)
|
2021-08-02 06:06:44 +03:00
|
|
|
|
2011-05-18 17:41:54 +04:00
|
|
|
#endif /* RUBY_INTERNAL_H */
|