mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5e22f873ed
Saves comitters' daily life by avoid #include-ing everything from internal.h to make each file do so instead. This would significantly speed up incremental builds. We take the following inclusion order in this changeset: 1. "ruby/config.h", where _GNU_SOURCE is defined (must be the very first thing among everything). 2. RUBY_EXTCONF_H if any. 3. Standard C headers, sorted alphabetically. 4. Other system headers, maybe guarded by #ifdef 5. Everything else, sorted alphabetically. Exceptions are those win32-related headers, which tend not be self- containing (headers have inclusion order dependencies).
91 lines
2.8 KiB
C
91 lines
2.8 KiB
C
#ifndef INTERNAL_VARIABLE_H /* -*- C -*- */
|
|
#define INTERNAL_VARIABLE_H
|
|
/**
|
|
* @file
|
|
* @brief Internal header for variables.
|
|
* @author \@shyouhei
|
|
* @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.
|
|
*/
|
|
#include "ruby/config.h"
|
|
#include <stddef.h> /* for size_t */
|
|
#include "constant.h" /* for rb_const_entry_t */
|
|
#include "internal/stdbool.h" /* for bool */
|
|
#include "ruby/ruby.h" /* for VALUE */
|
|
|
|
/* global variable */
|
|
|
|
#define ROBJECT_TRANSIENT_FLAG FL_USER13
|
|
|
|
struct rb_global_variable; /* defined in variable.c */
|
|
|
|
struct rb_global_entry {
|
|
struct rb_global_variable *var;
|
|
ID id;
|
|
};
|
|
|
|
/* variable.c */
|
|
void rb_gc_mark_global_tbl(void);
|
|
size_t rb_generic_ivar_memsize(VALUE);
|
|
VALUE rb_search_class_path(VALUE);
|
|
VALUE rb_attr_delete(VALUE, ID);
|
|
VALUE rb_ivar_lookup(VALUE obj, ID id, VALUE undef);
|
|
void rb_autoload_str(VALUE mod, ID id, VALUE file);
|
|
VALUE rb_autoload_at_p(VALUE, ID, int);
|
|
void rb_deprecate_constant(VALUE mod, const char *name);
|
|
NORETURN(VALUE rb_mod_const_missing(VALUE,VALUE));
|
|
rb_gvar_getter_t *rb_gvar_getter_function_of(const struct rb_global_entry *);
|
|
rb_gvar_setter_t *rb_gvar_setter_function_of(const struct rb_global_entry *);
|
|
bool rb_gvar_is_traced(const struct rb_global_entry *);
|
|
void rb_gvar_readonly_setter(VALUE v, ID id, VALUE *_);
|
|
static inline bool ROBJ_TRANSIENT_P(VALUE obj);
|
|
static inline void ROBJ_TRANSIENT_SET(VALUE obj);
|
|
static inline void ROBJ_TRANSIENT_UNSET(VALUE obj);
|
|
|
|
RUBY_SYMBOL_EXPORT_BEGIN
|
|
/* variable.c (export) */
|
|
void rb_mark_generic_ivar(VALUE);
|
|
void rb_mv_generic_ivar(VALUE src, VALUE dst);
|
|
VALUE rb_const_missing(VALUE klass, VALUE name);
|
|
int rb_class_ivar_set(VALUE klass, ID vid, VALUE value);
|
|
void rb_iv_tbl_copy(VALUE dst, VALUE src);
|
|
RUBY_SYMBOL_EXPORT_END
|
|
|
|
MJIT_SYMBOL_EXPORT_BEGIN
|
|
struct rb_global_entry *rb_global_entry(ID);
|
|
VALUE rb_gvar_get(struct rb_global_entry *);
|
|
VALUE rb_gvar_set(struct rb_global_entry *, VALUE);
|
|
VALUE rb_gvar_defined(struct rb_global_entry *);
|
|
struct st_table *rb_ivar_generic_ivtbl(void);
|
|
void rb_const_warn_if_deprecated(const rb_const_entry_t *, VALUE, ID);
|
|
MJIT_SYMBOL_EXPORT_END
|
|
|
|
static inline bool
|
|
ROBJ_TRANSIENT_P(VALUE obj)
|
|
{
|
|
#if USE_TRANSIENT_HEAP
|
|
return FL_TEST_RAW(obj, ROBJECT_TRANSIENT_FLAG);
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
static inline void
|
|
ROBJ_TRANSIENT_SET(VALUE obj)
|
|
{
|
|
#if USE_TRANSIENT_HEAP
|
|
FL_SET_RAW(obj, ROBJECT_TRANSIENT_FLAG);
|
|
#endif
|
|
}
|
|
|
|
static inline void
|
|
ROBJ_TRANSIENT_UNSET(VALUE obj)
|
|
{
|
|
#if USE_TRANSIENT_HEAP
|
|
FL_UNSET_RAW(obj, ROBJECT_TRANSIENT_FLAG);
|
|
#endif
|
|
}
|
|
|
|
#endif /* INTERNAL_VARIABLE_H */
|