2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
gc.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Tue Oct 5 09:44:46 JST 1993
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
2000-05-01 13:42:38 +04:00
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 08:53:16 +04:00
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "ruby/signal.h"
|
|
|
|
#include "ruby/st.h"
|
|
|
|
#include "ruby/node.h"
|
|
|
|
#include "ruby/re.h"
|
2007-11-20 06:16:53 +03:00
|
|
|
#include "ruby/io.h"
|
2008-03-03 11:27:43 +03:00
|
|
|
#include "ruby/util.h"
|
2008-03-12 08:47:10 +03:00
|
|
|
#include "eval_intern.h"
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
#include "vm_core.h"
|
2007-05-29 19:49:30 +04:00
|
|
|
#include "gc.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <setjmp.h>
|
2001-11-19 17:42:45 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-11-19 08:03:03 +03:00
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
|
2004-07-08 14:27:23 +04:00
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2007-07-14 11:19:59 +04:00
|
|
|
#ifdef HAVE_VALGRIND_MEMCHECK_H
|
|
|
|
# include <valgrind/memcheck.h>
|
|
|
|
# ifndef VALGRIND_MAKE_MEM_DEFINED
|
|
|
|
# define VALGRIND_MAKE_MEM_DEFINED(p, n) VALGRIND_MAKE_READABLE(p, n)
|
|
|
|
# endif
|
2007-08-19 08:34:44 +04:00
|
|
|
# ifndef VALGRIND_MAKE_MEM_UNDEFINED
|
|
|
|
# define VALGRIND_MAKE_MEM_UNDEFINED(p, n) VALGRIND_MAKE_WRITABLE(p, n)
|
|
|
|
# endif
|
2007-07-14 11:19:59 +04:00
|
|
|
#else
|
|
|
|
# define VALGRIND_MAKE_MEM_DEFINED(p, n) /* empty */
|
2007-08-19 08:34:44 +04:00
|
|
|
# define VALGRIND_MAKE_MEM_UNDEFINED(p, n) /* empty */
|
2007-07-14 11:19:59 +04:00
|
|
|
#endif
|
|
|
|
|
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile.
* ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h,
ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c,
ext/readline/readline.c, ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 13:30:50 +03:00
|
|
|
int rb_io_fptr_finalize(struct rb_io_t*);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2008-03-31 21:58:41 +04:00
|
|
|
#define rb_setjmp(env) RUBY_SETJMP(env)
|
|
|
|
#define rb_jmp_buf rb_jmpbuf_t
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-02-11 10:12:02 +03:00
|
|
|
/* Make alloca work the best possible way. */
|
2002-10-25 22:39:30 +04:00
|
|
|
#ifdef __GNUC__
|
|
|
|
# ifndef atarist
|
|
|
|
# ifndef alloca
|
|
|
|
# define alloca __builtin_alloca
|
|
|
|
# endif
|
|
|
|
# endif /* atarist */
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_ALLOCA_H
|
2001-02-11 10:12:02 +03:00
|
|
|
# include <alloca.h>
|
2001-03-26 12:57:16 +04:00
|
|
|
# else
|
2006-12-31 18:02:22 +03:00
|
|
|
# ifdef _AIX
|
|
|
|
#pragma alloca
|
|
|
|
# else
|
2001-03-26 12:57:16 +04:00
|
|
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
|
|
|
void *alloca ();
|
|
|
|
# endif
|
2002-10-25 22:39:30 +04:00
|
|
|
# endif /* AIX */
|
|
|
|
# endif /* HAVE_ALLOCA_H */
|
|
|
|
#endif /* __GNUC__ */
|
2001-02-11 10:12:02 +03:00
|
|
|
|
2002-10-10 19:26:58 +04:00
|
|
|
#ifndef GC_MALLOC_LIMIT
|
|
|
|
#if defined(MSDOS) || defined(__human68k__)
|
|
|
|
#define GC_MALLOC_LIMIT 200000
|
|
|
|
#else
|
|
|
|
#define GC_MALLOC_LIMIT 8000000
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-06-15 13:17:06 +04:00
|
|
|
#define nomem_error GET_VM()->special_exceptions[ruby_error_nomemory]
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#define MARK_STACK_MAX 1024
|
|
|
|
|
2007-06-25 06:44:20 +04:00
|
|
|
int ruby_gc_debug_indent = 0;
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#undef GC_DEBUG
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__CYGWIN__)
|
|
|
|
#pragma pack(push, 1) /* magic for reducing sizeof(RVALUE): 24 -> 20 */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct RVALUE {
|
|
|
|
union {
|
|
|
|
struct {
|
2007-06-25 15:20:45 +04:00
|
|
|
VALUE flags; /* always 0 for freed obj */
|
2006-12-31 18:02:22 +03:00
|
|
|
struct RVALUE *next;
|
|
|
|
} free;
|
|
|
|
struct RBasic basic;
|
|
|
|
struct RObject object;
|
|
|
|
struct RClass klass;
|
|
|
|
struct RFloat flonum;
|
|
|
|
struct RString string;
|
|
|
|
struct RArray array;
|
|
|
|
struct RRegexp regexp;
|
|
|
|
struct RHash hash;
|
|
|
|
struct RData data;
|
|
|
|
struct RStruct rstruct;
|
|
|
|
struct RBignum bignum;
|
|
|
|
struct RFile file;
|
|
|
|
struct RNode node;
|
|
|
|
struct RMatch match;
|
2008-03-16 03:23:43 +03:00
|
|
|
struct RRational rational;
|
|
|
|
struct RComplex complex;
|
2006-12-31 18:02:22 +03:00
|
|
|
} as;
|
|
|
|
#ifdef GC_DEBUG
|
|
|
|
char *file;
|
|
|
|
int line;
|
|
|
|
#endif
|
|
|
|
} RVALUE;
|
|
|
|
|
|
|
|
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__CYGWIN__)
|
|
|
|
#pragma pack(pop)
|
|
|
|
#endif
|
|
|
|
|
2008-04-14 07:47:04 +04:00
|
|
|
struct heaps_slot {
|
2006-12-31 18:02:22 +03:00
|
|
|
void *membase;
|
|
|
|
RVALUE *slot;
|
|
|
|
int limit;
|
2008-04-14 07:47:04 +04:00
|
|
|
};
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#define HEAP_MIN_SLOTS 10000
|
|
|
|
#define FREE_MIN 4096
|
|
|
|
|
2008-04-14 07:47:04 +04:00
|
|
|
struct gc_list {
|
|
|
|
VALUE *varptr;
|
|
|
|
struct gc_list *next;
|
|
|
|
};
|
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
#define CALC_EXACT_MALLOC_SIZE 0
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
typedef struct rb_objspace {
|
2008-04-14 07:47:04 +04:00
|
|
|
struct {
|
2008-05-12 10:28:43 +04:00
|
|
|
size_t limit;
|
|
|
|
size_t increase;
|
2008-06-08 14:27:06 +04:00
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
size_t allocated_size;
|
|
|
|
size_t allocations;
|
|
|
|
#endif
|
|
|
|
} malloc_params;
|
2008-04-14 07:47:04 +04:00
|
|
|
struct {
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t increment;
|
2008-04-14 07:47:04 +04:00
|
|
|
struct heaps_slot *ptr;
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t length;
|
|
|
|
size_t used;
|
2008-04-14 07:47:04 +04:00
|
|
|
RVALUE *freelist;
|
|
|
|
RVALUE *range[2];
|
2008-04-25 13:03:32 +04:00
|
|
|
RVALUE *freed;
|
2008-04-14 07:47:04 +04:00
|
|
|
} heap;
|
|
|
|
struct {
|
|
|
|
int dont_gc;
|
|
|
|
int during_gc;
|
|
|
|
} flags;
|
|
|
|
struct {
|
|
|
|
st_table *table;
|
|
|
|
RVALUE *deferred;
|
|
|
|
} final;
|
|
|
|
struct {
|
|
|
|
VALUE buffer[MARK_STACK_MAX];
|
|
|
|
VALUE *ptr;
|
|
|
|
int overflow;
|
|
|
|
} markstack;
|
|
|
|
struct gc_list *global_list;
|
2008-04-27 10:28:08 +04:00
|
|
|
unsigned int count;
|
2008-06-13 19:09:22 +04:00
|
|
|
int gc_stress;
|
2008-04-14 07:47:04 +04:00
|
|
|
} rb_objspace_t;
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
|
|
|
|
#define rb_objspace (*GET_VM()->objspace)
|
2008-06-14 02:57:41 +04:00
|
|
|
static int ruby_initial_gc_stress = 0;
|
|
|
|
int *ruby_initial_gc_stress_ptr = &ruby_initial_gc_stress;
|
2008-04-27 07:20:35 +04:00
|
|
|
#else
|
2008-04-14 07:47:04 +04:00
|
|
|
static rb_objspace_t rb_objspace = {{GC_MALLOC_LIMIT}, {HEAP_MIN_SLOTS}};
|
2008-06-14 02:57:41 +04:00
|
|
|
int *ruby_initial_gc_stress_ptr = &rb_objspace.gc_stress;
|
2008-04-27 07:20:35 +04:00
|
|
|
#endif
|
2008-06-08 14:27:06 +04:00
|
|
|
#define malloc_limit objspace->malloc_params.limit
|
|
|
|
#define malloc_increase objspace->malloc_params.increase
|
2008-04-14 07:47:04 +04:00
|
|
|
#define heap_slots objspace->heap.slots
|
|
|
|
#define heaps objspace->heap.ptr
|
|
|
|
#define heaps_length objspace->heap.length
|
|
|
|
#define heaps_used objspace->heap.used
|
|
|
|
#define freelist objspace->heap.freelist
|
|
|
|
#define lomem objspace->heap.range[0]
|
|
|
|
#define himem objspace->heap.range[1]
|
2008-04-25 13:03:32 +04:00
|
|
|
#define heaps_inc objspace->heap.increment
|
|
|
|
#define heaps_freed objspace->heap.freed
|
2008-04-14 07:47:04 +04:00
|
|
|
#define dont_gc objspace->flags.dont_gc
|
|
|
|
#define during_gc objspace->flags.during_gc
|
|
|
|
#define finalizer_table objspace->final.table
|
|
|
|
#define deferred_final_list objspace->final.deferred
|
|
|
|
#define mark_stack objspace->markstack.buffer
|
|
|
|
#define mark_stack_ptr objspace->markstack.ptr
|
|
|
|
#define mark_stack_overflow objspace->markstack.overflow
|
|
|
|
#define global_List objspace->global_list
|
2008-06-13 19:09:22 +04:00
|
|
|
#define ruby_gc_stress objspace->gc_stress
|
2008-04-14 07:47:04 +04:00
|
|
|
|
2008-06-30 13:57:07 +04:00
|
|
|
#define need_call_final (finalizer_table && finalizer_table->num_entries)
|
|
|
|
|
2008-06-05 18:41:41 +04:00
|
|
|
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
|
2008-04-14 07:47:04 +04:00
|
|
|
rb_objspace_t *
|
|
|
|
rb_objspace_alloc(void)
|
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = malloc(sizeof(rb_objspace_t));
|
2008-04-14 07:47:04 +04:00
|
|
|
memset(objspace, 0, sizeof(*objspace));
|
|
|
|
malloc_limit = GC_MALLOC_LIMIT;
|
2008-06-14 02:57:41 +04:00
|
|
|
ruby_gc_stress = ruby_initial_gc_stress;
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2008-04-14 07:47:04 +04:00
|
|
|
return objspace;
|
|
|
|
}
|
2008-06-05 18:41:41 +04:00
|
|
|
#endif
|
2008-04-14 07:47:04 +04:00
|
|
|
|
2008-04-25 13:03:32 +04:00
|
|
|
/* tiny heap size */
|
|
|
|
/* 32KB */
|
|
|
|
/*#define HEAP_SIZE 0x8000 */
|
|
|
|
/* 128KB */
|
|
|
|
/*#define HEAP_SIZE 0x20000 */
|
|
|
|
/* 64KB */
|
|
|
|
/*#define HEAP_SIZE 0x10000 */
|
|
|
|
/* 16KB */
|
|
|
|
#define HEAP_SIZE 0x4000
|
|
|
|
/* 8KB */
|
|
|
|
/*#define HEAP_SIZE 0x2000 */
|
|
|
|
/* 4KB */
|
|
|
|
/*#define HEAP_SIZE 0x1000 */
|
|
|
|
/* 2KB */
|
|
|
|
/*#define HEAP_SIZE 0x800 */
|
|
|
|
|
|
|
|
#define HEAP_OBJ_LIMIT (HEAP_SIZE / sizeof(struct RVALUE))
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
extern st_table *rb_class_tbl;
|
|
|
|
|
2008-06-13 19:09:22 +04:00
|
|
|
int ruby_disable_gc_stress = 0;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
static void run_final(rb_objspace_t *objspace, VALUE obj);
|
|
|
|
static int garbage_collect(rb_objspace_t *objspace);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-04-24 08:54:16 +04:00
|
|
|
void
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_global_variable(VALUE *var)
|
1999-12-14 09:50:43 +03:00
|
|
|
{
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_gc_register_address(var);
|
|
|
|
}
|
2000-12-29 05:47:07 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
void
|
|
|
|
rb_memerror(void)
|
|
|
|
{
|
2008-03-12 08:47:10 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
if (!nomem_error ||
|
|
|
|
(rb_thread_raised_p(th, RAISED_NOMEMORY) && rb_safe_level() < 4)) {
|
2002-04-24 08:54:16 +04:00
|
|
|
fprintf(stderr, "[FATAL] failed to allocate memory\n");
|
2008-06-13 09:24:40 +04:00
|
|
|
exit(EXIT_FAILURE);
|
1999-12-14 09:50:43 +03:00
|
|
|
}
|
2008-06-15 13:17:06 +04:00
|
|
|
if (rb_thread_raised_p(th, RAISED_NOMEMORY)) {
|
|
|
|
rb_thread_raised_clear(th);
|
|
|
|
GET_THREAD()->errinfo = nomem_error;
|
|
|
|
JUMP_TAG(TAG_RAISE);
|
|
|
|
}
|
2008-03-12 08:47:10 +03:00
|
|
|
rb_thread_raised_set(th, RAISED_NOMEMORY);
|
2002-04-24 08:54:16 +04:00
|
|
|
rb_exc_raise(nomem_error);
|
1999-12-14 09:50:43 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2006-01-10 01:32:55 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.stress => true or false
|
|
|
|
*
|
|
|
|
* returns current status of GC stress mode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
gc_stress_get(VALUE self)
|
|
|
|
{
|
2008-06-13 19:09:22 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2007-06-29 11:57:24 +04:00
|
|
|
return ruby_gc_stress ? Qtrue : Qfalse;
|
2006-01-10 01:32:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.stress = bool => bool
|
|
|
|
*
|
|
|
|
* updates GC stress mode.
|
|
|
|
*
|
|
|
|
* When GC.stress = true, GC is invoked for all GC opportunity:
|
|
|
|
* all memory and object allocation.
|
|
|
|
*
|
|
|
|
* Since it makes Ruby very slow, it is only for debugging.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
gc_stress_set(VALUE self, VALUE bool)
|
|
|
|
{
|
2008-06-13 19:09:22 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2006-01-10 01:32:55 +03:00
|
|
|
rb_secure(2);
|
2007-06-29 11:57:24 +04:00
|
|
|
ruby_gc_stress = RTEST(bool);
|
2006-01-10 01:32:55 +03:00
|
|
|
return bool;
|
|
|
|
}
|
2005-12-12 03:36:54 +03:00
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
static void *
|
|
|
|
vm_xmalloc(rb_objspace_t *objspace, size_t size)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
void *mem;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (size < 0) {
|
2000-01-05 07:41:21 +03:00
|
|
|
rb_raise(rb_eNoMemError, "negative allocation size (or too big)");
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (size == 0) size = 1;
|
2000-09-25 21:51:29 +04:00
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
size += sizeof(size_t);
|
|
|
|
#endif
|
|
|
|
|
2008-06-13 19:09:22 +04:00
|
|
|
if ((ruby_gc_stress && !ruby_disable_gc_stress) ||
|
|
|
|
(malloc_increase+size) > malloc_limit) {
|
2008-07-05 11:15:41 +04:00
|
|
|
garbage_collect(objspace);
|
2002-10-10 19:26:58 +04:00
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
RUBY_CRITICAL(mem = malloc(size));
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!mem) {
|
2008-07-05 11:15:41 +04:00
|
|
|
if (garbage_collect(objspace)) {
|
2005-09-16 17:44:59 +04:00
|
|
|
RUBY_CRITICAL(mem = malloc(size));
|
|
|
|
}
|
1999-12-14 09:50:43 +03:00
|
|
|
if (!mem) {
|
2002-04-24 08:54:16 +04:00
|
|
|
rb_memerror();
|
1999-12-14 09:50:43 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-05-12 10:28:43 +04:00
|
|
|
malloc_increase += size;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
objspace->malloc_params.allocated_size += size;
|
|
|
|
objspace->malloc_params.allocations++;
|
|
|
|
((size_t *)mem)[0] = size;
|
|
|
|
mem = (size_t *)mem + 1;
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
static void *
|
|
|
|
vm_xrealloc(rb_objspace_t *objspace, void *ptr, size_t size)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
void *mem;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (size < 0) {
|
|
|
|
rb_raise(rb_eArgError, "negative re-allocation size");
|
|
|
|
}
|
2005-10-05 20:15:16 +04:00
|
|
|
if (!ptr) return ruby_xmalloc(size);
|
1999-01-20 07:59:39 +03:00
|
|
|
if (size == 0) size = 1;
|
2008-06-13 19:09:22 +04:00
|
|
|
if (ruby_gc_stress && !ruby_disable_gc_stress) garbage_collect(objspace);
|
2008-06-08 14:27:06 +04:00
|
|
|
|
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
size += sizeof(size_t);
|
|
|
|
objspace->malloc_params.allocated_size -= size;
|
|
|
|
ptr = (size_t *)ptr - 1;
|
|
|
|
#endif
|
2008-07-05 11:15:41 +04:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
RUBY_CRITICAL(mem = realloc(ptr, size));
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!mem) {
|
2008-07-05 11:15:41 +04:00
|
|
|
if (garbage_collect(objspace)) {
|
2005-09-16 17:44:59 +04:00
|
|
|
RUBY_CRITICAL(mem = realloc(ptr, size));
|
|
|
|
}
|
2001-07-20 19:20:25 +04:00
|
|
|
if (!mem) {
|
2002-04-24 08:54:16 +04:00
|
|
|
rb_memerror();
|
2001-07-20 19:20:25 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-05-12 10:28:43 +04:00
|
|
|
malloc_increase += size;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
objspace->malloc_params.allocated_size += size;
|
|
|
|
((size_t *)mem)[0] = size;
|
|
|
|
mem = (size_t *)mem + 1;
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
static void
|
|
|
|
vm_xfree(rb_objspace_t *objspace, void *ptr)
|
|
|
|
{
|
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
size_t size;
|
|
|
|
ptr = ((size_t *)ptr) - 1;
|
|
|
|
size = ((size_t*)ptr)[0];
|
|
|
|
objspace->malloc_params.allocated_size -= size;
|
|
|
|
objspace->malloc_params.allocations--;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
RUBY_CRITICAL(free(ptr));
|
|
|
|
}
|
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
void *
|
2008-06-08 14:27:06 +04:00
|
|
|
ruby_xmalloc(size_t size)
|
2008-04-27 07:20:35 +04:00
|
|
|
{
|
2008-06-08 14:27:06 +04:00
|
|
|
return vm_xmalloc(&rb_objspace, size);
|
2008-04-27 07:20:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2008-06-08 14:27:06 +04:00
|
|
|
ruby_xmalloc2(size_t n, size_t size)
|
2005-10-05 20:15:16 +04:00
|
|
|
{
|
2005-12-06 10:52:18 +03:00
|
|
|
size_t len = size * n;
|
|
|
|
if (n != 0 && size != len / n) {
|
2008-06-08 14:27:06 +04:00
|
|
|
rb_raise(rb_eArgError, "malloc: possible integer overflow");
|
2005-10-05 20:15:16 +04:00
|
|
|
}
|
2008-06-08 14:27:06 +04:00
|
|
|
return vm_xmalloc(&rb_objspace, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
ruby_xcalloc(size_t n, size_t size)
|
|
|
|
{
|
|
|
|
void *mem = ruby_xmalloc2(n, size);
|
|
|
|
memset(mem, 0, n * size);
|
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
ruby_xrealloc(void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
return vm_xrealloc(&rb_objspace, ptr, size);
|
2008-04-27 07:20:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
ruby_xrealloc2(void *ptr, size_t n, size_t size)
|
|
|
|
{
|
2008-06-08 14:27:06 +04:00
|
|
|
size_t len = size * n;
|
|
|
|
if (n != 0 && size != len / n) {
|
|
|
|
rb_raise(rb_eArgError, "realloc: possible integer overflow");
|
|
|
|
}
|
|
|
|
return ruby_xrealloc(ptr, len);
|
2005-10-05 20:15:16 +04:00
|
|
|
}
|
|
|
|
|
2000-02-08 11:54:01 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
ruby_xfree(void *x)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
if (x)
|
2008-06-08 14:27:06 +04:00
|
|
|
vm_xfree(&rb_objspace, x);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.enable => true or false
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* Enables garbage collection, returning <code>true</code> if garbage
|
|
|
|
* collection was previously disabled.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* GC.disable #=> false
|
|
|
|
* GC.enable #=> true
|
|
|
|
* GC.enable #=> false
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
2001-01-29 08:10:42 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_enable(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
1998-01-16 15:13:05 +03:00
|
|
|
int old = dont_gc;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
dont_gc = Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.disable => true or false
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* Disables garbage collection, returning <code>true</code> if garbage
|
|
|
|
* collection was already disabled.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* GC.disable #=> false
|
|
|
|
* GC.disable #=> true
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
2001-01-29 08:10:42 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_disable(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
1998-01-16 15:13:05 +03:00
|
|
|
int old = dont_gc;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
dont_gc = Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mGC;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
void
|
|
|
|
rb_register_mark_object(VALUE obj)
|
|
|
|
{
|
|
|
|
VALUE ary = GET_THREAD()->vm->mark_object_ary;
|
|
|
|
rb_ary_push(ary, obj);
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_register_address(VALUE *addr)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct gc_list *tmp;
|
|
|
|
|
|
|
|
tmp = ALLOC(struct gc_list);
|
2001-10-31 09:53:22 +03:00
|
|
|
tmp->next = global_List;
|
2000-02-08 11:54:01 +03:00
|
|
|
tmp->varptr = addr;
|
2001-10-31 09:53:22 +03:00
|
|
|
global_List = tmp;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2000-02-08 11:54:01 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_unregister_address(VALUE *addr)
|
2000-02-08 11:54:01 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2001-10-31 09:53:22 +03:00
|
|
|
struct gc_list *tmp = global_List;
|
2000-02-08 11:54:01 +03:00
|
|
|
|
|
|
|
if (tmp->varptr == addr) {
|
2001-10-31 09:53:22 +03:00
|
|
|
global_List = tmp->next;
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(tmp);
|
2000-02-08 11:54:01 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (tmp->next) {
|
|
|
|
if (tmp->next->varptr == addr) {
|
|
|
|
struct gc_list *t = tmp->next;
|
|
|
|
|
|
|
|
tmp->next = tmp->next->next;
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(t);
|
2000-02-08 11:54:01 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-25 13:03:32 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static void
|
2008-05-11 09:44:36 +04:00
|
|
|
allocate_heaps(rb_objspace_t *objspace, size_t next_heaps_length)
|
2008-04-25 13:03:32 +04:00
|
|
|
{
|
|
|
|
struct heaps_slot *p;
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t size;
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2008-05-11 09:44:36 +04:00
|
|
|
size = next_heaps_length*sizeof(struct heaps_slot);
|
2008-04-25 13:03:32 +04:00
|
|
|
RUBY_CRITICAL(
|
|
|
|
if (heaps_used > 0) {
|
2008-05-11 09:44:36 +04:00
|
|
|
p = (struct heaps_slot *)realloc(heaps, size);
|
2008-04-25 13:03:32 +04:00
|
|
|
if (p) heaps = p;
|
|
|
|
}
|
|
|
|
else {
|
2008-05-11 09:44:36 +04:00
|
|
|
p = heaps = (struct heaps_slot *)malloc(size);
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
);
|
2008-08-01 16:36:39 +04:00
|
|
|
if (p == 0) {
|
|
|
|
during_gc = 0;
|
|
|
|
rb_memerror();
|
|
|
|
}
|
2008-05-11 09:44:36 +04:00
|
|
|
heaps_length = next_heaps_length;
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
assign_heap_slot(rb_objspace_t *objspace)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-03-04 04:21:06 +03:00
|
|
|
RVALUE *p, *pend, *membase;
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t hi, lo, mid;
|
2008-04-25 13:03:32 +04:00
|
|
|
int objs;
|
|
|
|
|
|
|
|
objs = HEAP_OBJ_LIMIT;
|
|
|
|
RUBY_CRITICAL(p = (RVALUE*)malloc(HEAP_SIZE));
|
2008-08-01 16:36:39 +04:00
|
|
|
if (p == 0) {
|
|
|
|
during_gc = 0;
|
2008-04-25 13:03:32 +04:00
|
|
|
rb_memerror();
|
2008-08-01 16:36:39 +04:00
|
|
|
}
|
2008-03-04 04:21:06 +03:00
|
|
|
|
2008-05-12 06:15:55 +04:00
|
|
|
membase = p;
|
|
|
|
if ((VALUE)p % sizeof(RVALUE) != 0) {
|
|
|
|
p = (RVALUE*)((VALUE)p + sizeof(RVALUE) - ((VALUE)p % sizeof(RVALUE)));
|
2008-05-12 07:30:34 +04:00
|
|
|
if ((HEAP_SIZE - HEAP_OBJ_LIMIT * sizeof(RVALUE)) < ((char*)p - (char*)membase)) {
|
2008-05-12 06:15:55 +04:00
|
|
|
objs--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-04 04:21:06 +03:00
|
|
|
lo = 0;
|
|
|
|
hi = heaps_used;
|
|
|
|
while (lo < hi) {
|
2008-05-12 06:15:55 +04:00
|
|
|
register RVALUE *mid_membase;
|
2008-03-04 04:21:06 +03:00
|
|
|
mid = (lo + hi) / 2;
|
2008-05-12 06:15:55 +04:00
|
|
|
mid_membase = heaps[mid].membase;
|
|
|
|
if (mid_membase < membase) {
|
2008-03-04 04:21:06 +03:00
|
|
|
lo = mid + 1;
|
|
|
|
}
|
2008-05-12 06:15:55 +04:00
|
|
|
else if (mid_membase > membase) {
|
2008-03-04 04:21:06 +03:00
|
|
|
hi = mid;
|
|
|
|
}
|
|
|
|
else {
|
2008-05-20 06:36:09 +04:00
|
|
|
rb_bug("same heap slot is allocated: %p at %"PRIuVALUE, membase, (VALUE)mid);
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
}
|
2008-03-04 04:21:06 +03:00
|
|
|
if (hi < heaps_used) {
|
2008-03-04 07:42:31 +03:00
|
|
|
MEMMOVE(&heaps[hi+1], &heaps[hi], struct heaps_slot, heaps_used - hi);
|
2001-07-02 12:46:28 +04:00
|
|
|
}
|
2008-03-04 07:42:31 +03:00
|
|
|
heaps[hi].membase = membase;
|
2008-03-04 04:21:06 +03:00
|
|
|
heaps[hi].slot = p;
|
2008-04-25 13:03:32 +04:00
|
|
|
heaps[hi].limit = objs;
|
|
|
|
pend = p + objs;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (lomem == 0 || lomem > p) lomem = p;
|
|
|
|
if (himem < pend) himem = pend;
|
2001-07-02 12:46:28 +04:00
|
|
|
heaps_used++;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
while (p < pend) {
|
2001-02-02 14:38:20 +03:00
|
|
|
p->as.free.flags = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
p->as.free.next = freelist;
|
|
|
|
freelist = p;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
2008-03-03 11:27:43 +03:00
|
|
|
|
2008-04-25 13:03:32 +04:00
|
|
|
static void
|
2008-05-04 21:25:38 +04:00
|
|
|
init_heap(rb_objspace_t *objspace)
|
2008-04-25 13:03:32 +04:00
|
|
|
{
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t add, i;
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2008-05-04 21:25:38 +04:00
|
|
|
add = HEAP_MIN_SLOTS / HEAP_OBJ_LIMIT;
|
2008-04-25 13:03:32 +04:00
|
|
|
|
|
|
|
if ((heaps_used + add) > heaps_length) {
|
2008-05-04 21:25:38 +04:00
|
|
|
allocate_heaps(objspace, heaps_used + add);
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < add; i++) {
|
2008-04-27 07:20:35 +04:00
|
|
|
assign_heap_slot(objspace);
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
heaps_inc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
set_heaps_increment(rb_objspace_t *objspace)
|
2008-04-25 13:03:32 +04:00
|
|
|
{
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t next_heaps_length = heaps_used * 1.8;
|
|
|
|
heaps_inc = next_heaps_length - heaps_used;
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2008-05-11 09:44:36 +04:00
|
|
|
if (next_heaps_length > heaps_length) {
|
|
|
|
allocate_heaps(objspace, next_heaps_length);
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-04-27 07:20:35 +04:00
|
|
|
heaps_increment(rb_objspace_t *objspace)
|
2008-04-25 13:03:32 +04:00
|
|
|
{
|
|
|
|
if (heaps_inc > 0) {
|
2008-04-27 07:20:35 +04:00
|
|
|
assign_heap_slot(objspace);
|
2008-04-25 13:03:32 +04:00
|
|
|
heaps_inc--;
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
#define RANY(o) ((RVALUE*)(o))
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
static VALUE
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_newobj_from_heap(rb_objspace_t *objspace)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
VALUE obj;
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2008-06-13 19:09:22 +04:00
|
|
|
if ((ruby_gc_stress && !ruby_disable_gc_stress) || !freelist) {
|
2008-07-05 11:15:41 +04:00
|
|
|
if (!heaps_increment(objspace) && !garbage_collect(objspace)) {
|
2008-08-01 16:36:39 +04:00
|
|
|
during_gc = 0;
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_memerror();
|
|
|
|
}
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-08-07 09:05:04 +04:00
|
|
|
obj = (VALUE)freelist;
|
|
|
|
freelist = freelist->as.free.next;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2000-08-09 08:32:24 +04:00
|
|
|
MEMZERO((void*)obj, RVALUE, 1);
|
2003-12-20 19:59:09 +03:00
|
|
|
#ifdef GC_DEBUG
|
2007-06-25 00:33:04 +04:00
|
|
|
RANY(obj)->file = rb_sourcefile();
|
|
|
|
RANY(obj)->line = rb_sourceline();
|
2003-12-20 19:59:09 +03:00
|
|
|
#endif
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2000-08-07 09:05:04 +04:00
|
|
|
return obj;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#if USE_VALUE_CACHE
|
|
|
|
static VALUE
|
* blockinlining.c, error.c, eval.c, eval_error.h, eval_intern.h,
eval_jump.h, eval_load.c, eval_safe.h, gc.c, proc.c, signal.c,
thread.c, thread_pthread.ci, thread_win32.ci, vm.c, vm.h,
vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fix typo (rb_thead_t -> rb_thread_t).
* eval_intern.h: remove unused definitions.
* common.mk: fix around vm_opts.h path
and remove harmful argument passed to insns2vm.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-08 09:37:46 +03:00
|
|
|
rb_fill_value_cache(rb_thread_t *th)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2006-12-31 18:02:22 +03:00
|
|
|
int i;
|
|
|
|
VALUE rv;
|
|
|
|
|
* call_cfunc.ci, compile.c, compile.h, debug.h, eval.c,
eval_error.h, eval_jump.h, eval_load.c, eval_thread.c, gc.c,
insnhelper.h, insns.def, iseq.c, main.c, numeric.c, parse.y,
range.c, regenc.h, ruby.h, signal.c, thread.c, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fixed indents and non-C90 comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-02 19:26:04 +03:00
|
|
|
/* LOCK */
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
for (i=0; i<RUBY_VM_VALUE_CACHE_SIZE; i++) {
|
2008-04-27 07:20:35 +04:00
|
|
|
VALUE v = rb_newobj_from_heap(objspace);
|
2008-03-12 06:49:55 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
th->value_cache[i] = v;
|
|
|
|
RBASIC(v)->flags = FL_MARK;
|
|
|
|
}
|
|
|
|
th->value_cache_ptr = &th->value_cache[0];
|
2008-04-27 07:20:35 +04:00
|
|
|
rv = rb_newobj_from_heap(objspace);
|
* call_cfunc.ci, compile.c, compile.h, debug.h, eval.c,
eval_error.h, eval_jump.h, eval_load.c, eval_thread.c, gc.c,
insnhelper.h, insns.def, iseq.c, main.c, numeric.c, parse.y,
range.c, regenc.h, ruby.h, signal.c, thread.c, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fixed indents and non-C90 comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-02 19:26:04 +03:00
|
|
|
/* UNLOCK */
|
2006-12-31 18:02:22 +03:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-07-02 19:18:44 +04:00
|
|
|
int
|
|
|
|
rb_during_gc(void)
|
|
|
|
{
|
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
|
|
|
return during_gc;
|
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
VALUE
|
|
|
|
rb_newobj(void)
|
|
|
|
{
|
2008-06-30 19:49:13 +04:00
|
|
|
#if USE_VALUE_CACHE || (defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE)
|
* blockinlining.c, error.c, eval.c, eval_error.h, eval_intern.h,
eval_jump.h, eval_load.c, eval_safe.h, gc.c, proc.c, signal.c,
thread.c, thread_pthread.ci, thread_win32.ci, vm.c, vm.h,
vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h:
fix typo (rb_thead_t -> rb_thread_t).
* eval_intern.h: remove unused definitions.
* common.mk: fix around vm_opts.h path
and remove harmful argument passed to insns2vm.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-08 09:37:46 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
2008-06-30 19:49:13 +04:00
|
|
|
#endif
|
|
|
|
#if USE_VALUE_CACHE
|
2006-12-31 18:02:22 +03:00
|
|
|
VALUE v = *th->value_cache_ptr;
|
2008-06-30 19:49:13 +04:00
|
|
|
#endif
|
2008-04-27 07:20:35 +04:00
|
|
|
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
|
|
|
|
rb_objspace_t *objspace = th->vm->objspace;
|
|
|
|
#else
|
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
|
|
|
#endif
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2008-06-30 19:49:13 +04:00
|
|
|
if (during_gc) {
|
|
|
|
dont_gc = 1;
|
|
|
|
during_gc = 0;
|
|
|
|
rb_bug("object allocation during garbage collection phase");
|
|
|
|
}
|
2008-06-18 18:09:33 +04:00
|
|
|
|
2008-06-30 19:49:13 +04:00
|
|
|
#if USE_VALUE_CACHE
|
2006-12-31 18:02:22 +03:00
|
|
|
if (v) {
|
|
|
|
RBASIC(v)->flags = 0;
|
|
|
|
th->value_cache_ptr++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
v = rb_fill_value_cache(th);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(GC_DEBUG)
|
|
|
|
printf("cache index: %d, v: %p, th: %p\n",
|
|
|
|
th->value_cache_ptr - th->value_cache, v, th);
|
|
|
|
#endif
|
|
|
|
return v;
|
|
|
|
#else
|
2008-04-27 07:20:35 +04:00
|
|
|
return rb_newobj_from_heap(objspace);
|
2006-12-31 18:02:22 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
NODE*
|
|
|
|
rb_node_newnode(enum node_type type, VALUE a0, VALUE a1, VALUE a2)
|
|
|
|
{
|
|
|
|
NODE *n = (NODE*)rb_newobj();
|
|
|
|
|
|
|
|
n->flags |= T_NODE;
|
|
|
|
nd_set_type(n, type);
|
|
|
|
|
|
|
|
n->u1.value = a0;
|
|
|
|
n->u2.value = a1;
|
|
|
|
n->u3.value = a2;
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_data_object_alloc(VALUE klass, void *datap, RUBY_DATA_FUNC dmark, RUBY_DATA_FUNC dfree)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
NEWOBJ(data, struct RData);
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
if (klass) Check_Type(klass, T_CLASS);
|
1999-01-20 07:59:39 +03:00
|
|
|
OBJSETUP(data, klass, T_DATA);
|
1998-01-16 15:13:05 +03:00
|
|
|
data->data = datap;
|
|
|
|
data->dfree = dfree;
|
|
|
|
data->dmark = dmark;
|
|
|
|
|
|
|
|
return (VALUE)data;
|
|
|
|
}
|
|
|
|
|
2007-06-14 12:35:20 +04:00
|
|
|
#ifdef __ia64
|
2007-07-14 11:19:59 +04:00
|
|
|
#define SET_STACK_END (SET_MACHINE_STACK_END(&th->machine_stack_end), th->machine_register_stack_end = rb_ia64_bsp())
|
2007-06-14 12:35:20 +04:00
|
|
|
#else
|
2007-07-14 11:19:59 +04:00
|
|
|
#define SET_STACK_END SET_MACHINE_STACK_END(&th->machine_stack_end)
|
2007-06-14 12:35:20 +04:00
|
|
|
#endif
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#define STACK_START (th->machine_stack_start)
|
|
|
|
#define STACK_END (th->machine_stack_end)
|
2007-12-15 07:09:24 +03:00
|
|
|
#define STACK_LEVEL_MAX (th->machine_stack_maxsize/sizeof(VALUE))
|
2004-12-13 12:57:41 +03:00
|
|
|
|
2008-02-19 12:37:10 +03:00
|
|
|
#if STACK_GROW_DIRECTION < 0
|
2006-12-31 18:02:22 +03:00
|
|
|
# define STACK_LENGTH (STACK_START - STACK_END)
|
2003-06-28 07:29:00 +04:00
|
|
|
#elif STACK_GROW_DIRECTION > 0
|
2006-12-31 18:02:22 +03:00
|
|
|
# define STACK_LENGTH (STACK_END - STACK_START + 1)
|
2001-11-19 08:03:03 +03:00
|
|
|
#else
|
2006-12-31 18:02:22 +03:00
|
|
|
# define STACK_LENGTH ((STACK_END < STACK_START) ? STACK_START - STACK_END\
|
|
|
|
: STACK_END - STACK_START + 1)
|
2001-11-19 08:03:03 +03:00
|
|
|
#endif
|
2008-06-14 06:59:19 +04:00
|
|
|
#if !STACK_GROW_DIRECTION
|
|
|
|
int ruby_stack_grow_direction;
|
|
|
|
int
|
|
|
|
ruby_get_stack_grow_direction(VALUE *addr)
|
2003-06-28 07:29:00 +04:00
|
|
|
{
|
2008-03-12 06:52:52 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
SET_STACK_END;
|
2003-06-28 07:29:00 +04:00
|
|
|
|
2008-06-14 06:59:19 +04:00
|
|
|
if (STACK_END > addr) return ruby_stack_grow_direction = 1;
|
|
|
|
return ruby_stack_grow_direction = -1;
|
2003-06-28 07:29:00 +04:00
|
|
|
}
|
|
|
|
#endif
|
2001-11-19 08:03:03 +03:00
|
|
|
|
2003-12-13 12:13:39 +03:00
|
|
|
#define GC_WATER_MARK 512
|
2003-04-09 10:44:34 +04:00
|
|
|
|
2001-11-19 08:03:03 +03:00
|
|
|
int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
ruby_stack_length(VALUE **p)
|
2001-11-19 08:03:03 +03:00
|
|
|
{
|
2008-03-12 06:52:52 +03:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
SET_STACK_END;
|
|
|
|
if (p) *p = STACK_UPPER(STACK_END, STACK_START, STACK_END);
|
|
|
|
return STACK_LENGTH;
|
2001-11-19 08:03:03 +03:00
|
|
|
}
|
|
|
|
|
2001-11-21 18:42:12 +03:00
|
|
|
int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
ruby_stack_check(void)
|
2001-11-19 08:03:03 +03:00
|
|
|
{
|
2007-12-15 07:09:24 +03:00
|
|
|
int ret;
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
SET_STACK_END;
|
2008-06-13 09:19:01 +04:00
|
|
|
ret = STACK_LENGTH > STACK_LEVEL_MAX - GC_WATER_MARK;
|
2007-12-15 07:09:24 +03:00
|
|
|
#ifdef __ia64
|
|
|
|
if (!ret) {
|
|
|
|
ret = (VALUE*)rb_ia64_bsp() - th->machine_register_stack_start >
|
2008-06-13 09:19:01 +04:00
|
|
|
th->machine_register_stack_maxsize/sizeof(VALUE) - GC_WATER_MARK;
|
2007-12-15 07:09:24 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return ret;
|
2001-11-19 08:03:03 +03:00
|
|
|
}
|
2001-11-13 11:19:52 +03:00
|
|
|
|
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
init_mark_stack(rb_objspace_t *objspace)
|
2001-11-13 11:19:52 +03:00
|
|
|
{
|
|
|
|
mark_stack_overflow = 0;
|
|
|
|
mark_stack_ptr = mark_stack;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MARK_STACK_EMPTY (mark_stack_ptr == mark_stack)
|
2005-04-30 06:59:44 +04:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
static void gc_mark(rb_objspace_t *objspace, VALUE ptr, int lev);
|
|
|
|
static void gc_mark_children(rb_objspace_t *objspace, VALUE ptr, int lev);
|
2003-04-09 10:44:34 +04:00
|
|
|
|
2001-11-13 11:19:52 +03:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_all(rb_objspace_t *objspace)
|
2001-11-13 11:19:52 +03:00
|
|
|
{
|
|
|
|
RVALUE *p, *pend;
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t i;
|
2001-11-27 13:00:35 +03:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
init_mark_stack(objspace);
|
2001-11-27 13:00:35 +03:00
|
|
|
for (i = 0; i < heaps_used; i++) {
|
2003-10-01 15:49:44 +04:00
|
|
|
p = heaps[i].slot; pend = p + heaps[i].limit;
|
2001-11-27 13:00:35 +03:00
|
|
|
while (p < pend) {
|
|
|
|
if ((p->as.basic.flags & FL_MARK) &&
|
|
|
|
(p->as.basic.flags != FL_MARK)) {
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_children(objspace, (VALUE)p, 0);
|
2001-11-13 11:19:52 +03:00
|
|
|
}
|
2001-11-27 13:00:35 +03:00
|
|
|
p++;
|
2001-11-13 11:19:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-09 12:27:01 +04:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_rest(rb_objspace_t *objspace)
|
2003-04-09 12:27:01 +04:00
|
|
|
{
|
|
|
|
VALUE tmp_arry[MARK_STACK_MAX];
|
|
|
|
VALUE *p;
|
|
|
|
|
|
|
|
p = (mark_stack_ptr - mark_stack) + tmp_arry;
|
2007-09-21 09:51:43 +04:00
|
|
|
MEMCPY(tmp_arry, mark_stack, VALUE, p - tmp_arry);
|
2003-04-09 12:27:01 +04:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
init_mark_stack(objspace);
|
2007-09-21 09:51:43 +04:00
|
|
|
while (p != tmp_arry) {
|
2003-04-09 12:27:01 +04:00
|
|
|
p--;
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_children(objspace, *p, 0);
|
2003-04-09 12:27:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-10 13:07:31 +03:00
|
|
|
static inline int
|
2008-04-27 07:20:35 +04:00
|
|
|
is_pointer_to_heap(rb_objspace_t *objspace, void *ptr)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
register RVALUE *p = RANY(ptr);
|
2008-03-03 11:27:43 +03:00
|
|
|
register struct heaps_slot *heap;
|
2008-05-11 09:44:36 +04:00
|
|
|
register size_t hi, lo, mid;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (p < lomem || p > himem) return Qfalse;
|
2006-03-02 08:22:30 +03:00
|
|
|
if ((VALUE)p % sizeof(RVALUE) != 0) return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-03-03 11:27:43 +03:00
|
|
|
/* check if p looks like a pointer using bsearch*/
|
|
|
|
lo = 0;
|
|
|
|
hi = heaps_used;
|
|
|
|
while (lo < hi) {
|
|
|
|
mid = (lo + hi) / 2;
|
|
|
|
heap = &heaps[mid];
|
|
|
|
if (heap->slot <= p) {
|
|
|
|
if (p < heap->slot + heap->limit)
|
|
|
|
return Qtrue;
|
|
|
|
lo = mid + 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
hi = mid;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_locations_array(rb_objspace_t *objspace, register VALUE *x, register long n)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2005-01-07 12:08:19 +03:00
|
|
|
VALUE v;
|
1998-01-16 15:13:05 +03:00
|
|
|
while (n--) {
|
2005-01-07 12:08:19 +03:00
|
|
|
v = *x;
|
2007-07-14 11:19:59 +04:00
|
|
|
VALGRIND_MAKE_MEM_DEFINED(&v, sizeof(v));
|
2008-04-27 07:20:35 +04:00
|
|
|
if (is_pointer_to_heap(objspace, (void *)v)) {
|
|
|
|
gc_mark(objspace, v, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
x++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
static void
|
|
|
|
gc_mark_locations(rb_objspace_t *objspace, VALUE *start, VALUE *end)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
long n;
|
|
|
|
|
2008-04-18 12:37:50 +04:00
|
|
|
if (end <= start) return;
|
2003-06-28 07:29:00 +04:00
|
|
|
n = end - start;
|
2008-06-30 19:49:13 +04:00
|
|
|
mark_locations_array(objspace, start, n);
|
2008-04-27 07:20:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_gc_mark_locations(VALUE *start, VALUE *end)
|
|
|
|
{
|
|
|
|
gc_mark_locations(&rb_objspace, start, end);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
#define rb_gc_mark_locations(start, end) gc_mark_locations(objspace, start, end)
|
|
|
|
|
|
|
|
struct mark_tbl_arg {
|
|
|
|
rb_objspace_t *objspace;
|
|
|
|
int lev;
|
|
|
|
};
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_entry(ID key, VALUE value, st_data_t data)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
struct mark_tbl_arg *arg = (void*)data;
|
|
|
|
gc_mark(arg->objspace, value, arg->lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2005-10-18 21:35:18 +04:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_tbl(rb_objspace_t *objspace, st_table *tbl, int lev)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
struct mark_tbl_arg arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!tbl) return;
|
2008-04-27 07:20:35 +04:00
|
|
|
arg.objspace = objspace;
|
|
|
|
arg.lev = lev;
|
|
|
|
st_foreach(tbl, mark_entry, (st_data_t)&arg);
|
2003-11-28 17:23:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_mark_tbl(st_table *tbl)
|
2003-11-28 17:23:33 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_tbl(&rb_objspace, tbl, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2007-09-26 23:40:49 +04:00
|
|
|
static int
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_key(VALUE key, VALUE value, st_data_t data)
|
2007-09-26 23:40:49 +04:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
struct mark_tbl_arg *arg = (void*)data;
|
|
|
|
gc_mark(arg->objspace, key, arg->lev);
|
2007-09-26 23:40:49 +04:00
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_set(rb_objspace_t *objspace, st_table *tbl, int lev)
|
2007-09-26 23:40:49 +04:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
struct mark_tbl_arg arg;
|
2007-09-26 23:40:49 +04:00
|
|
|
if (!tbl) return;
|
2008-04-27 07:20:35 +04:00
|
|
|
arg.objspace = objspace;
|
|
|
|
arg.lev = lev;
|
|
|
|
st_foreach(tbl, mark_key, (st_data_t)&arg);
|
2007-09-26 23:40:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_mark_set(st_table *tbl)
|
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_set(&rb_objspace, tbl, 0);
|
2007-09-26 23:40:49 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_keyvalue(VALUE key, VALUE value, st_data_t data)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
struct mark_tbl_arg *arg = (void*)data;
|
|
|
|
gc_mark(arg->objspace, key, arg->lev);
|
|
|
|
gc_mark(arg->objspace, value, arg->lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2005-10-18 21:35:18 +04:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_hash(rb_objspace_t *objspace, st_table *tbl, int lev)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
struct mark_tbl_arg arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!tbl) return;
|
2008-04-27 07:20:35 +04:00
|
|
|
arg.objspace = objspace;
|
|
|
|
arg.lev = lev;
|
|
|
|
st_foreach(tbl, mark_keyvalue, (st_data_t)&arg);
|
2003-11-28 17:23:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_mark_hash(st_table *tbl)
|
2003-11-28 17:23:33 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_hash(&rb_objspace, tbl, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_mark_maybe(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
if (is_pointer_to_heap(&rb_objspace, (void *)obj)) {
|
|
|
|
gc_mark(&rb_objspace, obj, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-28 17:23:33 +03:00
|
|
|
#define GC_LEVEL_MAX 250
|
|
|
|
|
2005-06-19 21:16:14 +04:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(rb_objspace_t *objspace, VALUE ptr, int lev)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-02-21 03:28:04 +03:00
|
|
|
register RVALUE *obj;
|
2001-11-27 13:00:35 +03:00
|
|
|
|
2003-04-09 12:27:01 +04:00
|
|
|
obj = RANY(ptr);
|
|
|
|
if (rb_special_const_p(ptr)) return; /* special const not marked */
|
|
|
|
if (obj->as.basic.flags == 0) return; /* free cell */
|
2005-06-19 21:16:14 +04:00
|
|
|
if (obj->as.basic.flags & FL_MARK) return; /* already marked */
|
2003-04-09 12:27:01 +04:00
|
|
|
obj->as.basic.flags |= FL_MARK;
|
|
|
|
|
2004-11-10 10:17:53 +03:00
|
|
|
if (lev > GC_LEVEL_MAX || (lev == 0 && ruby_stack_check())) {
|
2001-11-27 13:00:35 +03:00
|
|
|
if (!mark_stack_overflow) {
|
2001-11-13 11:19:52 +03:00
|
|
|
if (mark_stack_ptr - mark_stack < MARK_STACK_MAX) {
|
|
|
|
*mark_stack_ptr = ptr;
|
2008-03-12 06:49:55 +03:00
|
|
|
mark_stack_ptr++;
|
2001-11-27 13:00:35 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-11-13 11:19:52 +03:00
|
|
|
mark_stack_overflow = 1;
|
|
|
|
}
|
|
|
|
}
|
2003-02-21 03:28:04 +03:00
|
|
|
return;
|
2001-11-13 11:19:52 +03:00
|
|
|
}
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_children(objspace, ptr, lev+1);
|
2003-11-28 17:23:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_mark(VALUE ptr)
|
2003-11-28 17:23:33 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(&rb_objspace, ptr, 0);
|
2003-04-09 12:27:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_children(rb_objspace_t *objspace, VALUE ptr, int lev)
|
2003-04-09 12:27:01 +04:00
|
|
|
{
|
|
|
|
register RVALUE *obj = RANY(ptr);
|
|
|
|
|
|
|
|
goto marking; /* skip */
|
2001-11-13 11:19:52 +03:00
|
|
|
|
2003-02-21 03:28:04 +03:00
|
|
|
again:
|
|
|
|
obj = RANY(ptr);
|
|
|
|
if (rb_special_const_p(ptr)) return; /* special const not marked */
|
|
|
|
if (obj->as.basic.flags == 0) return; /* free cell */
|
2005-06-19 21:16:14 +04:00
|
|
|
if (obj->as.basic.flags & FL_MARK) return; /* already marked */
|
2003-02-21 03:28:04 +03:00
|
|
|
obj->as.basic.flags |= FL_MARK;
|
|
|
|
|
2003-04-09 12:27:01 +04:00
|
|
|
marking:
|
1999-01-20 07:59:39 +03:00
|
|
|
if (FL_TEST(obj, FL_EXIVAR)) {
|
2003-02-21 03:28:04 +03:00
|
|
|
rb_mark_generic_ivar(ptr);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2008-07-27 09:59:32 +04:00
|
|
|
switch (BUILTIN_TYPE(obj)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_NIL:
|
|
|
|
case T_FIXNUM:
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_bug("rb_gc_mark() called for broken object");
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case T_NODE:
|
|
|
|
switch (nd_type(obj)) {
|
|
|
|
case NODE_IF: /* 1,2,3 */
|
|
|
|
case NODE_FOR:
|
|
|
|
case NODE_ITER:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_WHEN:
|
|
|
|
case NODE_MASGN:
|
|
|
|
case NODE_RESCUE:
|
|
|
|
case NODE_RESBODY:
|
2003-02-19 12:27:49 +03:00
|
|
|
case NODE_CLASS:
|
2006-06-29 18:57:42 +04:00
|
|
|
case NODE_BLOCK_PASS:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u2.node, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
/* fall through */
|
|
|
|
case NODE_BLOCK: /* 1,3 */
|
2006-12-31 18:02:22 +03:00
|
|
|
case NODE_OPTBLOCK:
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_ARRAY:
|
|
|
|
case NODE_DSTR:
|
|
|
|
case NODE_DXSTR:
|
|
|
|
case NODE_DREGX:
|
|
|
|
case NODE_DREGX_ONCE:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_ENSURE:
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_CALL:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_DEFS:
|
|
|
|
case NODE_OP_ASGN1:
|
* parse.y, node.h, compile.c: change node tree structure. a purpose
of this change is to unify argument structure of method and block.
this change prohibits duplicate block parameter name.
new argument infromation:
NODE_ARGS [m: int, o: NODE_OPT_ARG, ->]
NODE_ARGS_AUX [r: ID, b: ID, ->]
NODE_ARGS_AUX [Pst: id, Plen: int, init: NODE*]
optarg information:
NODE_OPT_ARGS [idx, expr, ->]
* vm_macro.def: ditto.
* gc.c: ditto.
* iseq.c: ditto.
* compile.h: fix debug function name.
* test/ripper/test_scanner_events.rb: |_,_,foo| -> |_1,_2,foo|
* test/ruby/test_lambda.rb: disalbe test temporarily.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 05:07:05 +03:00
|
|
|
case NODE_ARGS:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u1.node, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
/* fall through */
|
|
|
|
case NODE_SUPER: /* 3 */
|
|
|
|
case NODE_FCALL:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_DEFN:
|
* parse.y, node.h, compile.c: change node tree structure. a purpose
of this change is to unify argument structure of method and block.
this change prohibits duplicate block parameter name.
new argument infromation:
NODE_ARGS [m: int, o: NODE_OPT_ARG, ->]
NODE_ARGS_AUX [r: ID, b: ID, ->]
NODE_ARGS_AUX [Pst: id, Plen: int, init: NODE*]
optarg information:
NODE_OPT_ARGS [idx, expr, ->]
* vm_macro.def: ditto.
* gc.c: ditto.
* iseq.c: ditto.
* compile.h: fix debug function name.
* test/ripper/test_scanner_events.rb: |_,_,foo| -> |_1,_2,foo|
* test/ruby/test_lambda.rb: disalbe test temporarily.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 05:07:05 +03:00
|
|
|
case NODE_ARGS_AUX:
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = (VALUE)obj->as.node.u3.node;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
case NODE_METHOD: /* 1,2 */
|
|
|
|
case NODE_WHILE:
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_UNTIL:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_AND:
|
|
|
|
case NODE_OR:
|
|
|
|
case NODE_CASE:
|
|
|
|
case NODE_SCLASS:
|
|
|
|
case NODE_DOT2:
|
|
|
|
case NODE_DOT3:
|
|
|
|
case NODE_FLIP2:
|
|
|
|
case NODE_FLIP3:
|
1998-01-16 15:19:22 +03:00
|
|
|
case NODE_MATCH2:
|
|
|
|
case NODE_MATCH3:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_OP_ASGN_OR:
|
|
|
|
case NODE_OP_ASGN_AND:
|
2003-02-19 12:27:49 +03:00
|
|
|
case NODE_MODULE:
|
2004-10-30 10:56:18 +04:00
|
|
|
case NODE_ALIAS:
|
|
|
|
case NODE_VALIAS:
|
2007-09-21 09:51:43 +04:00
|
|
|
case NODE_ARGSCAT:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u1.node, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
/* fall through */
|
2006-12-31 18:02:22 +03:00
|
|
|
case NODE_FBODY: /* 2 */
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_GASGN:
|
|
|
|
case NODE_LASGN:
|
|
|
|
case NODE_DASGN:
|
2000-02-01 06:12:21 +03:00
|
|
|
case NODE_DASGN_CURR:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_IASGN:
|
2007-02-04 22:17:33 +03:00
|
|
|
case NODE_IASGN2:
|
2000-11-21 17:26:25 +03:00
|
|
|
case NODE_CVASGN:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_COLON3:
|
|
|
|
case NODE_OPT_N:
|
2002-07-26 10:12:39 +04:00
|
|
|
case NODE_EVSTR:
|
2004-10-30 10:56:18 +04:00
|
|
|
case NODE_UNDEF:
|
2006-10-30 06:40:11 +03:00
|
|
|
case NODE_POSTEXE:
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = (VALUE)obj->as.node.u2.node;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case NODE_HASH: /* 1 */
|
|
|
|
case NODE_LIT:
|
|
|
|
case NODE_STR:
|
|
|
|
case NODE_XSTR:
|
|
|
|
case NODE_DEFINED:
|
1998-01-16 15:19:22 +03:00
|
|
|
case NODE_MATCH:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_RETURN:
|
2001-07-02 12:46:28 +04:00
|
|
|
case NODE_BREAK:
|
|
|
|
case NODE_NEXT:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_YIELD:
|
|
|
|
case NODE_COLON2:
|
2003-03-26 10:01:14 +03:00
|
|
|
case NODE_SPLAT:
|
2003-10-06 21:59:53 +04:00
|
|
|
case NODE_TO_ARY:
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = (VALUE)obj->as.node.u1.node;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case NODE_SCOPE: /* 2,3 */
|
2003-02-20 06:35:44 +03:00
|
|
|
case NODE_CDECL:
|
* parse.y, node.h, compile.c: change node tree structure. a purpose
of this change is to unify argument structure of method and block.
this change prohibits duplicate block parameter name.
new argument infromation:
NODE_ARGS [m: int, o: NODE_OPT_ARG, ->]
NODE_ARGS_AUX [r: ID, b: ID, ->]
NODE_ARGS_AUX [Pst: id, Plen: int, init: NODE*]
optarg information:
NODE_OPT_ARGS [idx, expr, ->]
* vm_macro.def: ditto.
* gc.c: ditto.
* iseq.c: ditto.
* compile.h: fix debug function name.
* test/ripper/test_scanner_events.rb: |_,_,foo| -> |_1,_2,foo|
* test/ruby/test_lambda.rb: disalbe test temporarily.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-24 05:07:05 +03:00
|
|
|
case NODE_OPT_ARG:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u3.node, lev);
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = (VALUE)obj->as.node.u2.node;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case NODE_ZARRAY: /* - */
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_ZSUPER:
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_CFUNC:
|
|
|
|
case NODE_VCALL:
|
|
|
|
case NODE_GVAR:
|
|
|
|
case NODE_LVAR:
|
|
|
|
case NODE_DVAR:
|
|
|
|
case NODE_IVAR:
|
|
|
|
case NODE_CVAR:
|
|
|
|
case NODE_NTH_REF:
|
|
|
|
case NODE_BACK_REF:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_REDO:
|
|
|
|
case NODE_RETRY:
|
1998-01-16 15:13:05 +03:00
|
|
|
case NODE_SELF:
|
|
|
|
case NODE_NIL:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_TRUE:
|
|
|
|
case NODE_FALSE:
|
2004-01-22 11:31:33 +03:00
|
|
|
case NODE_ERRINFO:
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_ATTRSET:
|
|
|
|
case NODE_BLOCK_ARG:
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
1999-01-20 07:59:39 +03:00
|
|
|
case NODE_ALLOCA:
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_locations_array(objspace,
|
|
|
|
(VALUE*)obj->as.node.u1.value,
|
1999-01-20 07:59:39 +03:00
|
|
|
obj->as.node.u3.cnt);
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = (VALUE)obj->as.node.u2.node;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-02-21 03:28:04 +03:00
|
|
|
default: /* unlisted NODE */
|
2008-04-27 07:20:35 +04:00
|
|
|
if (is_pointer_to_heap(objspace, obj->as.node.u1.node)) {
|
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u1.node, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-04-27 07:20:35 +04:00
|
|
|
if (is_pointer_to_heap(objspace, obj->as.node.u2.node)) {
|
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u2.node, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-04-27 07:20:35 +04:00
|
|
|
if (is_pointer_to_heap(objspace, obj->as.node.u3.node)) {
|
|
|
|
gc_mark(objspace, (VALUE)obj->as.node.u3.node, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return; /* no need to mark class. */
|
|
|
|
}
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, obj->as.basic.klass, lev);
|
2008-07-27 09:59:32 +04:00
|
|
|
switch (BUILTIN_TYPE(obj)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_ICLASS:
|
|
|
|
case T_CLASS:
|
|
|
|
case T_MODULE:
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_tbl(objspace, RCLASS_M_TBL(obj), lev);
|
|
|
|
mark_tbl(objspace, RCLASS_IV_TBL(obj), lev);
|
2007-09-28 10:21:46 +04:00
|
|
|
ptr = RCLASS_SUPER(obj);
|
2003-02-21 03:28:04 +03:00
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case T_ARRAY:
|
2002-09-04 13:23:51 +04:00
|
|
|
if (FL_TEST(obj, ELTS_SHARED)) {
|
2006-11-01 17:42:39 +03:00
|
|
|
ptr = obj->as.array.aux.shared;
|
2003-02-21 03:28:04 +03:00
|
|
|
goto again;
|
2002-09-04 13:23:51 +04:00
|
|
|
}
|
|
|
|
else {
|
2006-09-02 18:42:08 +04:00
|
|
|
long i, len = RARRAY_LEN(obj);
|
|
|
|
VALUE *ptr = RARRAY_PTR(obj);
|
2002-09-04 13:23:51 +04:00
|
|
|
for (i=0; i < len; i++) {
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, *ptr++, lev);
|
2002-09-04 13:23:51 +04:00
|
|
|
}
|
2001-11-13 11:19:52 +03:00
|
|
|
}
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case T_HASH:
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_hash(objspace, obj->as.hash.ntbl, lev);
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = obj->as.hash.ifnone;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case T_STRING:
|
2001-12-11 06:48:08 +03:00
|
|
|
#define STR_ASSOC FL_USER3 /* copied from string.c */
|
2006-09-02 18:42:08 +04:00
|
|
|
if (FL_TEST(obj, RSTRING_NOEMBED) && FL_ANY(obj, ELTS_SHARED|STR_ASSOC)) {
|
2006-08-31 14:47:44 +04:00
|
|
|
ptr = obj->as.string.as.heap.aux.shared;
|
2003-02-21 03:28:04 +03:00
|
|
|
goto again;
|
2001-11-13 11:19:52 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case T_DATA:
|
|
|
|
if (obj->as.data.dmark) (*obj->as.data.dmark)(DATA_PTR(obj));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_OBJECT:
|
2007-09-28 10:21:46 +04:00
|
|
|
{
|
2008-02-25 19:18:18 +03:00
|
|
|
long i, len = ROBJECT_NUMIV(obj);
|
|
|
|
VALUE *ptr = ROBJECT_IVPTR(obj);
|
2007-09-28 10:21:46 +04:00
|
|
|
for (i = 0; i < len; i++) {
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, *ptr++, lev);
|
2007-09-28 10:21:46 +04:00
|
|
|
}
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case T_FILE:
|
2007-11-20 10:25:07 +03:00
|
|
|
if (obj->as.file.fptr)
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, obj->as.file.fptr->tied_io_for_writing, lev);
|
2007-11-20 06:16:53 +03:00
|
|
|
break;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_REGEXP:
|
2008-06-28 16:25:45 +04:00
|
|
|
gc_mark(objspace, obj->as.regexp.src, lev);
|
|
|
|
break;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_FLOAT:
|
|
|
|
case T_BIGNUM:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_MATCH:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, obj->as.match.regexp, lev);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (obj->as.match.str) {
|
2003-02-21 03:28:04 +03:00
|
|
|
ptr = obj->as.match.str;
|
|
|
|
goto again;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-03-16 03:23:43 +03:00
|
|
|
case T_RATIONAL:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, obj->as.rational.num, lev);
|
|
|
|
gc_mark(objspace, obj->as.rational.den, lev);
|
2008-03-16 03:23:43 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case T_COMPLEX:
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, obj->as.complex.real, lev);
|
|
|
|
gc_mark(objspace, obj->as.complex.image, lev);
|
2008-03-16 03:23:43 +03:00
|
|
|
break;
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_STRUCT:
|
2001-11-13 11:19:52 +03:00
|
|
|
{
|
2006-02-05 17:40:01 +03:00
|
|
|
long len = RSTRUCT_LEN(obj);
|
|
|
|
VALUE *ptr = RSTRUCT_PTR(obj);
|
2001-10-31 09:53:22 +03:00
|
|
|
|
2003-02-21 03:28:04 +03:00
|
|
|
while (len--) {
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark(objspace, *ptr++, lev);
|
2003-02-21 03:28:04 +03:00
|
|
|
}
|
2001-11-13 11:19:52 +03:00
|
|
|
}
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
default:
|
2005-12-16 07:58:51 +03:00
|
|
|
rb_bug("rb_gc_mark(): unknown data type 0x%lx(%p) %s",
|
2008-07-27 09:59:32 +04:00
|
|
|
BUILTIN_TYPE(obj), obj,
|
2008-04-27 07:20:35 +04:00
|
|
|
is_pointer_to_heap(objspace, obj) ? "corrupted object" : "non object");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-25 18:48:12 +04:00
|
|
|
static int obj_free(rb_objspace_t *, VALUE);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-07-27 09:59:32 +04:00
|
|
|
static inline void
|
|
|
|
add_freelist(rb_objspace_t *objspace, RVALUE *p)
|
|
|
|
{
|
|
|
|
VALGRIND_MAKE_MEM_UNDEFINED((void*)p, sizeof(RVALUE));
|
|
|
|
p->as.free.flags = 0;
|
|
|
|
p->as.free.next = freelist;
|
|
|
|
freelist = p;
|
|
|
|
}
|
|
|
|
|
2004-09-27 16:25:21 +04:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
finalize_list(rb_objspace_t *objspace, RVALUE *p)
|
2004-09-27 16:25:21 +04:00
|
|
|
{
|
|
|
|
while (p) {
|
|
|
|
RVALUE *tmp = p->as.free.next;
|
2008-04-27 07:20:35 +04:00
|
|
|
run_final(objspace, (VALUE)p);
|
2004-09-27 16:25:21 +04:00
|
|
|
if (!FL_TEST(p, FL_SINGLETON)) { /* not freeing page */
|
2008-07-27 09:59:32 +04:00
|
|
|
add_freelist(objspace, p);
|
2004-09-27 16:25:21 +04:00
|
|
|
}
|
2008-07-27 17:08:02 +04:00
|
|
|
else {
|
|
|
|
struct heaps_slot *slot = (struct heaps_slot *)RDATA(p)->dmark;
|
|
|
|
slot->limit--;
|
|
|
|
}
|
2004-09-27 16:25:21 +04:00
|
|
|
p = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
static void
|
|
|
|
free_unused_heaps(rb_objspace_t *objspace)
|
2004-09-27 16:25:21 +04:00
|
|
|
{
|
2008-07-05 11:15:41 +04:00
|
|
|
size_t i, j;
|
|
|
|
RVALUE *last = 0;
|
2008-07-02 04:49:10 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
for (i = j = 1; j < heaps_used; i++) {
|
|
|
|
if (heaps[i].limit == 0) {
|
|
|
|
if (!last) {
|
|
|
|
last = heaps[i].membase;
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
|
|
|
else {
|
2008-07-05 11:15:41 +04:00
|
|
|
free(heaps[i].membase);
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
heaps_used--;
|
2004-09-27 16:25:21 +04:00
|
|
|
}
|
|
|
|
else {
|
2008-07-05 11:15:41 +04:00
|
|
|
if (i != j) {
|
|
|
|
heaps[j] = heaps[i];
|
|
|
|
}
|
|
|
|
j++;
|
2004-09-27 16:25:21 +04:00
|
|
|
}
|
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
if (last) {
|
|
|
|
if (last < heaps_freed) {
|
|
|
|
free(heaps_freed);
|
|
|
|
heaps_freed = last;
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
else {
|
|
|
|
free(last);
|
2008-07-02 04:49:10 +04:00
|
|
|
}
|
2008-04-25 13:03:32 +04:00
|
|
|
}
|
2008-07-02 04:49:10 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-07-02 04:49:10 +04:00
|
|
|
static void
|
2008-07-05 11:15:41 +04:00
|
|
|
gc_sweep(rb_objspace_t *objspace)
|
2008-07-02 04:49:10 +04:00
|
|
|
{
|
2008-07-05 11:15:41 +04:00
|
|
|
RVALUE *p, *pend, *final_list;
|
|
|
|
size_t freed = 0;
|
|
|
|
size_t i;
|
|
|
|
size_t live = 0, free_min = 0, do_heap_free = 0;
|
2002-10-02 10:02:17 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
do_heap_free = (heaps_used * HEAP_OBJ_LIMIT) * 0.65;
|
|
|
|
free_min = (heaps_used * HEAP_OBJ_LIMIT) * 0.2;
|
2008-07-27 09:59:32 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
if (free_min < FREE_MIN) {
|
|
|
|
do_heap_free = heaps_used * HEAP_OBJ_LIMIT;
|
|
|
|
free_min = FREE_MIN;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-07-02 04:49:10 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
freelist = 0;
|
|
|
|
final_list = deferred_final_list;
|
|
|
|
deferred_final_list = 0;
|
|
|
|
for (i = 0; i < heaps_used; i++) {
|
|
|
|
int n = 0;
|
|
|
|
RVALUE *free = freelist;
|
|
|
|
RVALUE *final = final_list;
|
2008-07-27 09:59:32 +04:00
|
|
|
int deferred;
|
2008-07-05 11:15:41 +04:00
|
|
|
|
|
|
|
p = heaps[i].slot; pend = p + heaps[i].limit;
|
|
|
|
while (p < pend) {
|
|
|
|
if (!(p->as.basic.flags & FL_MARK)) {
|
2008-07-27 09:59:32 +04:00
|
|
|
if (p->as.basic.flags &&
|
|
|
|
((deferred = obj_free(objspace, (VALUE)p)) ||
|
|
|
|
((FL_TEST(p, FL_FINALIZE)) && need_call_final))) {
|
|
|
|
if (!deferred) {
|
|
|
|
p->as.free.flags = T_DEFERRED;
|
|
|
|
RDATA(p)->dfree = 0;
|
|
|
|
}
|
|
|
|
p->as.free.flags |= FL_MARK;
|
2008-07-05 11:15:41 +04:00
|
|
|
p->as.free.next = final_list;
|
|
|
|
final_list = p;
|
|
|
|
}
|
|
|
|
else {
|
2008-07-27 09:59:32 +04:00
|
|
|
add_freelist(objspace, p);
|
2008-07-05 11:15:41 +04:00
|
|
|
}
|
|
|
|
n++;
|
|
|
|
}
|
2008-07-27 09:59:32 +04:00
|
|
|
else if (BUILTIN_TYPE(p) == T_DEFERRED) {
|
2008-07-05 11:15:41 +04:00
|
|
|
/* objects to be finalized */
|
|
|
|
/* do nothing remain marked */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
RBASIC(p)->flags &= ~FL_MARK;
|
|
|
|
live++;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
if (n == heaps[i].limit && freed > do_heap_free) {
|
|
|
|
RVALUE *pp;
|
2008-07-27 17:08:02 +04:00
|
|
|
int f_count = 0;
|
2008-07-02 04:49:10 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
for (pp = final_list; pp != final; pp = pp->as.free.next) {
|
2008-07-27 17:08:02 +04:00
|
|
|
f_count++;
|
|
|
|
RDATA(pp)->dmark = (void *)&heaps[i];
|
|
|
|
pp->as.free.flags |= FL_SINGLETON; /* freeing page mark */
|
2008-07-05 11:15:41 +04:00
|
|
|
}
|
2008-07-27 17:08:02 +04:00
|
|
|
heaps[i].limit = f_count;
|
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
freelist = free; /* cancel this page from freelist */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
freed += n;
|
|
|
|
}
|
2003-10-20 06:06:42 +04:00
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
if (malloc_increase > malloc_limit) {
|
|
|
|
malloc_limit += (malloc_increase - malloc_limit) * (double)live / (live + freed);
|
|
|
|
if (malloc_limit < GC_MALLOC_LIMIT) malloc_limit = GC_MALLOC_LIMIT;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
malloc_increase = 0;
|
|
|
|
if (freed < free_min) {
|
|
|
|
set_heaps_increment(objspace);
|
|
|
|
heaps_increment(objspace);
|
2008-07-04 06:18:17 +04:00
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
during_gc = 0;
|
2008-07-02 04:49:10 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
/* clear finalization list */
|
|
|
|
if (final_list) {
|
|
|
|
deferred_final_list = final_list;
|
2008-07-27 09:59:32 +04:00
|
|
|
RUBY_VM_SET_FINALIZER_INTERRUPT(GET_THREAD());
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
free_unused_heaps(objspace);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_force_recycle(VALUE p)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-07-05 11:15:41 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2008-07-27 09:59:32 +04:00
|
|
|
add_freelist(objspace, (RVALUE *)p);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2008-08-06 15:48:30 +04:00
|
|
|
static inline void
|
|
|
|
make_deferred(RVALUE *p)
|
|
|
|
{
|
|
|
|
p->as.basic.flags = (p->as.basic.flags & ~T_MASK) | T_DEFERRED;
|
|
|
|
}
|
|
|
|
|
2008-07-25 18:48:12 +04:00
|
|
|
static int
|
2008-04-27 07:20:35 +04:00
|
|
|
obj_free(rb_objspace_t *objspace, VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-07-27 09:59:32 +04:00
|
|
|
switch (BUILTIN_TYPE(obj)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_NIL:
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_TRUE:
|
|
|
|
case T_FALSE:
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_bug("obj_free() called for broken object");
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (FL_TEST(obj, FL_EXIVAR)) {
|
|
|
|
rb_free_generic_ivar((VALUE)obj);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2008-07-27 09:59:32 +04:00
|
|
|
switch (BUILTIN_TYPE(obj)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_OBJECT:
|
2007-09-28 10:21:46 +04:00
|
|
|
if (!(RANY(obj)->as.basic.flags & ROBJECT_EMBED) &&
|
2008-02-25 19:18:18 +03:00
|
|
|
RANY(obj)->as.object.as.heap.ivptr) {
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(RANY(obj)->as.object.as.heap.ivptr);
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_MODULE:
|
|
|
|
case T_CLASS:
|
2003-07-07 12:28:19 +04:00
|
|
|
rb_clear_cache_by_class((VALUE)obj);
|
2007-09-28 10:21:46 +04:00
|
|
|
st_free_table(RCLASS_M_TBL(obj));
|
|
|
|
if (RCLASS_IV_TBL(obj)) {
|
|
|
|
st_free_table(RCLASS_IV_TBL(obj));
|
|
|
|
}
|
|
|
|
if (RCLASS_IV_INDEX_TBL(obj)) {
|
|
|
|
st_free_table(RCLASS_IV_INDEX_TBL(obj));
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(RANY(obj)->as.klass.ptr);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_STRING:
|
2006-09-27 02:46:16 +04:00
|
|
|
rb_str_free(obj);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_ARRAY:
|
2006-09-27 02:46:16 +04:00
|
|
|
rb_ary_free(obj);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_HASH:
|
2007-08-30 03:12:21 +04:00
|
|
|
if (RANY(obj)->as.hash.ntbl) {
|
|
|
|
st_free_table(RANY(obj)->as.hash.ntbl);
|
2000-09-27 07:43:15 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_REGEXP:
|
2000-09-27 07:43:15 +04:00
|
|
|
if (RANY(obj)->as.regexp.ptr) {
|
2005-02-17 17:43:38 +03:00
|
|
|
onig_free(RANY(obj)->as.regexp.ptr);
|
2000-09-27 07:43:15 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_DATA:
|
1999-01-20 07:59:39 +03:00
|
|
|
if (DATA_PTR(obj)) {
|
|
|
|
if ((long)RANY(obj)->as.data.dfree == -1) {
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(DATA_PTR(obj));
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else if (RANY(obj)->as.data.dfree) {
|
2008-08-06 15:48:30 +04:00
|
|
|
make_deferred(RANY(obj));
|
|
|
|
return 1;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_MATCH:
|
2008-02-16 23:08:35 +03:00
|
|
|
if (RANY(obj)->as.match.rmatch) {
|
|
|
|
struct rmatch *rm = RANY(obj)->as.match.rmatch;
|
|
|
|
onig_region_free(&rm->regs, 0);
|
|
|
|
if (rm->char_offset)
|
2008-08-06 15:48:30 +04:00
|
|
|
xfree(rm->char_offset);
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(rm);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_FILE:
|
1999-01-20 07:59:39 +03:00
|
|
|
if (RANY(obj)->as.file.fptr) {
|
2008-07-25 18:48:12 +04:00
|
|
|
rb_io_t *fptr = RANY(obj)->as.file.fptr;
|
2008-08-06 15:48:30 +04:00
|
|
|
make_deferred(RANY(obj));
|
|
|
|
RDATA(obj)->dfree = (void (*)(void*))rb_io_fptr_finalize;
|
|
|
|
RDATA(obj)->data = fptr;
|
|
|
|
return 1;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
2008-03-16 03:23:43 +03:00
|
|
|
case T_RATIONAL:
|
|
|
|
case T_COMPLEX:
|
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_ICLASS:
|
|
|
|
/* iClass shares table with the module */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_FLOAT:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_BIGNUM:
|
2007-09-01 16:02:36 +04:00
|
|
|
if (!(RBASIC(obj)->flags & RBIGNUM_EMBED_FLAG) && RBIGNUM_DIGITS(obj)) {
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(RBIGNUM_DIGITS(obj));
|
2000-09-27 07:43:15 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
case T_NODE:
|
1999-01-20 07:59:39 +03:00
|
|
|
switch (nd_type(obj)) {
|
|
|
|
case NODE_SCOPE:
|
|
|
|
if (RANY(obj)->as.node.u1.tbl) {
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(RANY(obj)->as.node.u1.tbl);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NODE_ALLOCA:
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(RANY(obj)->as.node.u1.node);
|
1999-01-20 07:59:39 +03:00
|
|
|
break;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-07-25 18:48:12 +04:00
|
|
|
break; /* no need to free iv_tbl */
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
case T_STRUCT:
|
2007-05-29 19:49:30 +04:00
|
|
|
if ((RBASIC(obj)->flags & RSTRUCT_EMBED_LEN_MASK) == 0 &&
|
2006-02-05 17:40:01 +03:00
|
|
|
RANY(obj)->as.rstruct.as.heap.ptr) {
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(RANY(obj)->as.rstruct.as.heap.ptr);
|
2000-09-27 07:43:15 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-03-12 06:49:55 +03:00
|
|
|
rb_bug("gc_sweep(): unknown data type 0x%lx(%p)",
|
2008-07-27 09:59:32 +04:00
|
|
|
BUILTIN_TYPE(obj), (void*)obj);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-07-27 09:59:32 +04:00
|
|
|
|
2008-07-25 18:48:12 +04:00
|
|
|
return 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#if defined(__human68k__) || defined(DJGPP)
|
2008-03-31 21:58:41 +04:00
|
|
|
#undef rb_setjmp
|
|
|
|
#undef rb_jmp_buf
|
1998-01-16 15:13:05 +03:00
|
|
|
#if defined(__human68k__)
|
|
|
|
typedef unsigned long rb_jmp_buf[8];
|
2001-06-19 19:42:00 +04:00
|
|
|
__asm__ (".even\n\
|
|
|
|
_rb_setjmp:\n\
|
|
|
|
move.l 4(sp),a0\n\
|
|
|
|
movem.l d3-d7/a3-a5,(a0)\n\
|
|
|
|
moveq.l #0,d0\n\
|
1998-01-16 15:13:05 +03:00
|
|
|
rts");
|
|
|
|
#else
|
|
|
|
#if defined(DJGPP)
|
|
|
|
typedef unsigned long rb_jmp_buf[6];
|
2001-06-19 19:42:00 +04:00
|
|
|
__asm__ (".align 4\n\
|
|
|
|
_rb_setjmp:\n\
|
|
|
|
pushl %ebp\n\
|
|
|
|
movl %esp,%ebp\n\
|
|
|
|
movl 8(%ebp),%ebp\n\
|
|
|
|
movl %eax,(%ebp)\n\
|
|
|
|
movl %ebx,4(%ebp)\n\
|
|
|
|
movl %ecx,8(%ebp)\n\
|
|
|
|
movl %edx,12(%ebp)\n\
|
|
|
|
movl %esi,16(%ebp)\n\
|
|
|
|
movl %edi,20(%ebp)\n\
|
|
|
|
popl %ebp\n\
|
|
|
|
xorl %eax,%eax\n\
|
1998-01-16 15:13:05 +03:00
|
|
|
ret");
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
int rb_setjmp (rb_jmp_buf);
|
|
|
|
#endif /* __human68k__ or DJGPP */
|
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
#define GC_NOTIFY 0
|
|
|
|
|
2007-05-24 06:47:22 +04:00
|
|
|
void rb_vm_mark(void *ptr);
|
|
|
|
|
2007-07-14 11:48:54 +04:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_current_machine_context(rb_objspace_t *objspace, rb_thread_t *th)
|
2007-07-14 11:19:59 +04:00
|
|
|
{
|
2008-03-31 21:58:41 +04:00
|
|
|
rb_jmp_buf save_regs_gc_mark;
|
2007-07-14 11:19:59 +04:00
|
|
|
VALUE *stack_start, *stack_end;
|
|
|
|
|
|
|
|
SET_STACK_END;
|
|
|
|
#if STACK_GROW_DIRECTION < 0
|
|
|
|
stack_start = th->machine_stack_end;
|
|
|
|
stack_end = th->machine_stack_start;
|
|
|
|
#elif STACK_GROW_DIRECTION > 0
|
|
|
|
stack_start = th->machine_stack_start;
|
|
|
|
stack_end = th->machine_stack_end + 1;
|
|
|
|
#else
|
|
|
|
if (th->machine_stack_end < th->machine_stack_start) {
|
|
|
|
stack_start = th->machine_stack_end;
|
|
|
|
stack_end = th->machine_stack_start;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
stack_start = th->machine_stack_start;
|
|
|
|
stack_end = th->machine_stack_end + 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FLUSH_REGISTER_WINDOWS;
|
|
|
|
/* This assumes that all registers are saved into the jmp_buf (and stack) */
|
2008-03-31 21:58:41 +04:00
|
|
|
rb_setjmp(save_regs_gc_mark);
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_locations_array(objspace,
|
|
|
|
(VALUE*)save_regs_gc_mark,
|
2007-07-20 11:11:35 +04:00
|
|
|
sizeof(save_regs_gc_mark) / sizeof(VALUE));
|
2007-07-14 11:19:59 +04:00
|
|
|
|
2008-04-18 12:37:50 +04:00
|
|
|
rb_gc_mark_locations(stack_start, stack_end);
|
2007-07-14 11:19:59 +04:00
|
|
|
#ifdef __ia64
|
2008-04-18 12:37:50 +04:00
|
|
|
rb_gc_mark_locations(th->machine_register_stack_start, th->machine_register_stack_end);
|
2007-07-14 11:19:59 +04:00
|
|
|
#endif
|
|
|
|
#if defined(__human68k__) || defined(__mc68000__)
|
2007-07-20 11:11:35 +04:00
|
|
|
mark_locations_array((VALUE*)((char*)STACK_END + 2),
|
|
|
|
(STACK_START - STACK_END));
|
2007-07-14 11:19:59 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-10-13 20:32:40 +04:00
|
|
|
void rb_gc_mark_encodings(void);
|
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
static int
|
|
|
|
garbage_collect(rb_objspace_t *objspace)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-07-05 11:15:41 +04:00
|
|
|
struct gc_list *list;
|
|
|
|
rb_thread_t *th = GET_THREAD();
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
if (GC_NOTIFY) printf("start garbage_collect()\n");
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
if (!heaps) {
|
|
|
|
return Qfalse;
|
2003-11-20 06:50:32 +03:00
|
|
|
}
|
2008-07-02 04:49:10 +04:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
if (dont_gc || during_gc) {
|
|
|
|
if (!freelist) {
|
|
|
|
if (!heaps_increment(objspace)) {
|
|
|
|
set_heaps_increment(objspace);
|
|
|
|
heaps_increment(objspace);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
during_gc++;
|
|
|
|
objspace->count++;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2007-02-05 15:21:01 +03:00
|
|
|
SET_STACK_END;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
init_mark_stack(objspace);
|
2005-06-19 21:16:14 +04:00
|
|
|
|
2007-05-24 06:47:22 +04:00
|
|
|
th->vm->self ? rb_gc_mark(th->vm->self) : rb_vm_mark(th->vm);
|
2006-01-10 13:50:17 +03:00
|
|
|
|
2000-07-15 17:37:03 +04:00
|
|
|
if (finalizer_table) {
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_tbl(objspace, finalizer_table, 0);
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_current_machine_context(objspace, th);
|
2006-12-31 18:02:22 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_gc_mark_threads();
|
2006-09-02 19:05:27 +04:00
|
|
|
rb_gc_mark_symbols();
|
2007-10-13 20:32:40 +04:00
|
|
|
rb_gc_mark_encodings();
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
/* mark protected global variables */
|
2001-10-31 09:53:22 +03:00
|
|
|
for (list = global_List; list; list = list->next) {
|
2003-04-21 12:17:18 +04:00
|
|
|
rb_gc_mark_maybe(*list->varptr);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-11-26 12:07:26 +03:00
|
|
|
rb_mark_end_proc();
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_gc_mark_global_tbl();
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
mark_tbl(objspace, rb_class_tbl, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_gc_mark_trap_list();
|
|
|
|
|
|
|
|
/* mark generic instance variables for special constants */
|
|
|
|
rb_mark_generic_ivar_tbl();
|
2002-09-06 00:00:52 +04:00
|
|
|
|
|
|
|
rb_gc_mark_parser();
|
2005-06-19 21:16:14 +04:00
|
|
|
|
2001-11-13 11:19:52 +03:00
|
|
|
/* gc_mark objects whose marking are not completed*/
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
while (!MARK_STACK_EMPTY) {
|
|
|
|
if (mark_stack_overflow) {
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_all(objspace);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
else {
|
2008-04-27 07:20:35 +04:00
|
|
|
gc_mark_rest(objspace);
|
2001-10-31 09:53:22 +03:00
|
|
|
}
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2005-12-30 12:15:56 +03:00
|
|
|
|
2008-07-05 11:15:41 +04:00
|
|
|
gc_sweep(objspace);
|
2008-04-25 13:03:32 +04:00
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
if (GC_NOTIFY) printf("end garbage_collect()\n");
|
2005-09-16 17:44:59 +04:00
|
|
|
return Qtrue;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2007-12-21 09:16:56 +03:00
|
|
|
int
|
|
|
|
rb_garbage_collect(void)
|
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
return garbage_collect(&rb_objspace);
|
2007-12-21 09:16:56 +03:00
|
|
|
}
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
void
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
rb_gc_mark_machine_stack(rb_thread_t *th)
|
2006-12-31 18:02:22 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2006-12-31 18:02:22 +03:00
|
|
|
#if STACK_GROW_DIRECTION < 0
|
|
|
|
rb_gc_mark_locations(th->machine_stack_end, th->machine_stack_start);
|
|
|
|
#elif STACK_GROW_DIRECTION > 0
|
2007-05-29 19:46:01 +04:00
|
|
|
rb_gc_mark_locations(th->machine_stack_start, th->machine_stack_end);
|
2006-12-31 18:02:22 +03:00
|
|
|
#else
|
2007-05-29 19:46:01 +04:00
|
|
|
if (th->machine_stack_start < th->machine_stack_end) {
|
|
|
|
rb_gc_mark_locations(th->machine_stack_start, th->machine_stack_end);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_gc_mark_locations(th->machine_stack_end, th->machine_stack_start);
|
|
|
|
}
|
|
|
|
#endif
|
2007-06-14 12:35:20 +04:00
|
|
|
#ifdef __ia64
|
|
|
|
rb_gc_mark_locations(th->machine_register_stack_start, th->machine_register_stack_end);
|
|
|
|
#endif
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.start => nil
|
|
|
|
* gc.garbage_collect => nil
|
|
|
|
* ObjectSpace.garbage_collect => nil
|
|
|
|
*
|
|
|
|
* Initiates garbage collection, unless manually disabled.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
2001-01-29 08:10:42 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_start(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_gc();
|
1998-01-16 15:13:05 +03:00
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2008-06-09 04:54:23 +04:00
|
|
|
#undef Init_stack
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_stack(VALUE *addr)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-14 07:52:27 +04:00
|
|
|
ruby_init_stack(addr);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* Document-class: ObjectSpace
|
|
|
|
*
|
|
|
|
* The <code>ObjectSpace</code> module contains a number of routines
|
|
|
|
* that interact with the garbage collection facility and allow you to
|
|
|
|
* traverse all living objects with an iterator.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* <code>ObjectSpace</code> also provides support for object
|
|
|
|
* finalizers, procs that will be called when a specific object is
|
|
|
|
* about to be destroyed by garbage collection.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* include ObjectSpace
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* a = "A"
|
|
|
|
* b = "B"
|
|
|
|
* c = "C"
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* define_finalizer(a, proc {|id| puts "Finalizer one on #{id}" })
|
|
|
|
* define_finalizer(a, proc {|id| puts "Finalizer two on #{id}" })
|
|
|
|
* define_finalizer(b, proc {|id| puts "Finalizer three on #{id}" })
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* <em>produces:</em>
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* Finalizer three on 537763470
|
|
|
|
* Finalizer one on 537763480
|
|
|
|
* Finalizer two on 537763480
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_heap(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-05-04 21:25:38 +04:00
|
|
|
init_heap(&rb_objspace);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2008-04-27 07:20:35 +04:00
|
|
|
os_obj_of(rb_objspace_t *objspace, VALUE of)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t i;
|
|
|
|
size_t n = 0;
|
2008-06-05 17:52:02 +04:00
|
|
|
RVALUE *membase = 0;
|
|
|
|
RVALUE *p, *pend;
|
|
|
|
volatile VALUE v;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (i < heaps_used) {
|
|
|
|
while (0 < i && (uintptr_t)membase < (uintptr_t)heaps[i-1].membase)
|
|
|
|
i--;
|
|
|
|
while (i < heaps_used && (uintptr_t)heaps[i].membase <= (uintptr_t)membase )
|
|
|
|
i++;
|
|
|
|
if (heaps_used <= i)
|
|
|
|
break;
|
|
|
|
membase = heaps[i].membase;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-10-01 15:49:44 +04:00
|
|
|
p = heaps[i].slot; pend = p + heaps[i].limit;
|
1998-01-16 15:13:05 +03:00
|
|
|
for (;p < pend; p++) {
|
|
|
|
if (p->as.basic.flags) {
|
2007-09-23 04:05:07 +04:00
|
|
|
switch (BUILTIN_TYPE(p)) {
|
|
|
|
case T_NONE:
|
1998-01-16 15:13:05 +03:00
|
|
|
case T_ICLASS:
|
|
|
|
case T_NODE:
|
2008-07-27 09:59:32 +04:00
|
|
|
case T_DEFERRED:
|
1998-01-16 15:13:05 +03:00
|
|
|
continue;
|
|
|
|
case T_CLASS:
|
|
|
|
if (FL_TEST(p, FL_SINGLETON)) continue;
|
|
|
|
default:
|
2001-01-23 11:08:59 +03:00
|
|
|
if (!p->as.basic.klass) continue;
|
2008-06-05 17:52:02 +04:00
|
|
|
v = (VALUE)p;
|
|
|
|
if (!of || rb_obj_is_kind_of(v, of)) {
|
|
|
|
rb_yield(v);
|
1998-01-16 15:13:05 +03:00
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-11 09:44:36 +04:00
|
|
|
return SIZET2NUM(n);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ObjectSpace.each_object([module]) {|obj| ... } => fixnum
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* Calls the block once for each living, nonimmediate object in this
|
|
|
|
* Ruby process. If <i>module</i> is specified, calls the block
|
|
|
|
* for only those classes or modules that match (or are a subclass of)
|
|
|
|
* <i>module</i>. Returns the number of objects found. Immediate
|
|
|
|
* objects (<code>Fixnum</code>s, <code>Symbol</code>s
|
|
|
|
* <code>true</code>, <code>false</code>, and <code>nil</code>) are
|
|
|
|
* never returned. In the example below, <code>each_object</code>
|
|
|
|
* returns both the numbers we defined and several constants defined in
|
|
|
|
* the <code>Math</code> module.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* a = 102.7
|
|
|
|
* b = 95 # Won't be returned
|
|
|
|
* c = 12345678987654321
|
|
|
|
* count = ObjectSpace.each_object(Numeric) {|x| p x }
|
|
|
|
* puts "Total count: #{count}"
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* <em>produces:</em>
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* 12345678987654321
|
|
|
|
* 102.7
|
|
|
|
* 2.71828182845905
|
|
|
|
* 3.14159265358979
|
|
|
|
* 2.22044604925031e-16
|
|
|
|
* 1.7976931348623157e+308
|
|
|
|
* 2.2250738585072e-308
|
|
|
|
* Total count: 7
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
2007-12-28 07:07:33 +03:00
|
|
|
os_each_obj(int argc, VALUE *argv, VALUE os)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE of;
|
|
|
|
|
2003-03-26 10:01:14 +03:00
|
|
|
rb_secure(4);
|
2008-03-05 08:22:17 +03:00
|
|
|
if (argc == 0) {
|
2007-09-23 04:05:07 +04:00
|
|
|
of = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-03-05 08:22:17 +03:00
|
|
|
else {
|
|
|
|
rb_scan_args(argc, argv, "01", &of);
|
|
|
|
}
|
2007-12-28 07:07:33 +03:00
|
|
|
RETURN_ENUMERATOR(os, 1, &of);
|
2008-04-27 07:20:35 +04:00
|
|
|
return os_obj_of(&rb_objspace, of);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ObjectSpace.undefine_finalizer(obj)
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* Removes all finalizers for <i>obj</i>.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
2000-07-15 17:37:03 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
undefine_final(VALUE os, VALUE obj)
|
2000-07-15 17:37:03 +04:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2000-07-15 17:37:03 +04:00
|
|
|
if (finalizer_table) {
|
2003-07-25 09:36:55 +04:00
|
|
|
st_delete(finalizer_table, (st_data_t*)&obj, 0);
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ObjectSpace.define_finalizer(obj, aProc=proc())
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
|
|
|
* Adds <i>aProc</i> as a finalizer, to be called after <i>obj</i>
|
|
|
|
* was destroyed.
|
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
2000-07-15 17:37:03 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
define_final(int argc, VALUE *argv, VALUE os)
|
2000-07-15 17:37:03 +04:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2003-06-06 13:44:22 +04:00
|
|
|
VALUE obj, block, table;
|
2000-07-15 17:37:03 +04:00
|
|
|
|
2003-06-06 13:44:22 +04:00
|
|
|
rb_scan_args(argc, argv, "11", &obj, &block);
|
2000-07-15 17:37:03 +04:00
|
|
|
if (argc == 1) {
|
2003-06-16 11:14:50 +04:00
|
|
|
block = rb_block_proc();
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
2003-06-07 19:34:31 +04:00
|
|
|
else if (!rb_respond_to(block, rb_intern("call"))) {
|
|
|
|
rb_raise(rb_eArgError, "wrong type argument %s (should be callable)",
|
2003-06-06 13:44:22 +04:00
|
|
|
rb_obj_classname(block));
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
|
|
|
FL_SET(obj, FL_FINALIZE);
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
block = rb_ary_new3(2, INT2FIX(rb_safe_level()), block);
|
2004-06-29 05:31:37 +04:00
|
|
|
|
2000-07-15 17:37:03 +04:00
|
|
|
if (!finalizer_table) {
|
|
|
|
finalizer_table = st_init_numtable();
|
|
|
|
}
|
|
|
|
if (st_lookup(finalizer_table, obj, &table)) {
|
2003-06-06 13:44:22 +04:00
|
|
|
rb_ary_push(table, block);
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
|
|
|
else {
|
2003-06-06 13:44:22 +04:00
|
|
|
st_add_direct(finalizer_table, obj, rb_ary_new3(1, block));
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
2003-06-06 13:44:22 +04:00
|
|
|
return block;
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
|
|
|
|
2002-12-04 10:39:32 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_copy_finalizer(VALUE dest, VALUE obj)
|
2002-12-04 10:39:32 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2002-12-04 10:39:32 +03:00
|
|
|
VALUE table;
|
|
|
|
|
|
|
|
if (!finalizer_table) return;
|
|
|
|
if (!FL_TEST(obj, FL_FINALIZE)) return;
|
|
|
|
if (st_lookup(finalizer_table, obj, &table)) {
|
|
|
|
st_insert(finalizer_table, dest, table);
|
|
|
|
}
|
2004-10-27 13:29:26 +04:00
|
|
|
FL_SET(dest, FL_FINALIZE);
|
2002-12-04 10:39:32 +03:00
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
static VALUE
|
2007-09-21 09:51:43 +04:00
|
|
|
run_single_final(VALUE arg)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2007-09-21 09:51:43 +04:00
|
|
|
VALUE *args = (VALUE *)arg;
|
2004-06-29 05:31:37 +04:00
|
|
|
rb_eval_cmd(args[0], args[1], (int)args[2]);
|
1999-08-13 09:45:20 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static void
|
2008-04-27 07:20:35 +04:00
|
|
|
run_final(rb_objspace_t *objspace, VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-08-21 19:47:54 +04:00
|
|
|
long i;
|
2008-07-27 09:59:32 +04:00
|
|
|
int status;
|
2005-06-19 09:16:36 +04:00
|
|
|
VALUE args[3], table, objid;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-06-19 09:09:32 +04:00
|
|
|
objid = rb_obj_id(obj); /* make obj into id */
|
2008-07-27 09:59:32 +04:00
|
|
|
|
|
|
|
if (RDATA(obj)->dfree) {
|
|
|
|
(*RDATA(obj)->dfree)(DATA_PTR(obj));
|
2008-07-25 18:48:12 +04:00
|
|
|
}
|
2008-07-27 09:59:32 +04:00
|
|
|
|
|
|
|
if (finalizer_table &&
|
|
|
|
st_delete(finalizer_table, (st_data_t*)&obj, &table)) {
|
|
|
|
args[1] = 0;
|
|
|
|
args[2] = (VALUE)rb_safe_level();
|
2007-09-21 09:51:43 +04:00
|
|
|
if (!args[1] && RARRAY_LEN(table) > 0) {
|
|
|
|
args[1] = rb_obj_freeze(rb_ary_new3(1, objid));
|
|
|
|
}
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0; i<RARRAY_LEN(table); i++) {
|
|
|
|
VALUE final = RARRAY_PTR(table)[i];
|
|
|
|
args[0] = RARRAY_PTR(final)[1];
|
|
|
|
args[2] = FIX2INT(RARRAY_PTR(final)[0]);
|
2007-09-21 09:51:43 +04:00
|
|
|
rb_protect(run_single_final, (VALUE)args, &status);
|
2000-07-15 17:37:03 +04:00
|
|
|
}
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
static void
|
|
|
|
gc_finalize_deferred(rb_objspace_t *objspace)
|
2004-09-27 16:25:21 +04:00
|
|
|
{
|
|
|
|
RVALUE *p = deferred_final_list;
|
|
|
|
deferred_final_list = 0;
|
2008-07-27 09:59:32 +04:00
|
|
|
|
2004-09-27 16:25:21 +04:00
|
|
|
if (p) {
|
2008-04-27 07:20:35 +04:00
|
|
|
finalize_list(objspace, p);
|
2004-09-27 16:25:21 +04:00
|
|
|
}
|
2008-07-05 11:15:41 +04:00
|
|
|
free_unused_heaps(objspace);
|
2004-09-27 16:25:21 +04:00
|
|
|
}
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
void
|
|
|
|
rb_gc_finalize_deferred(void)
|
|
|
|
{
|
|
|
|
gc_finalize_deferred(&rb_objspace);
|
|
|
|
}
|
|
|
|
|
2008-06-30 13:57:07 +04:00
|
|
|
static int
|
|
|
|
chain_finalized_object(st_data_t key, st_data_t val, st_data_t arg)
|
|
|
|
{
|
|
|
|
RVALUE *p = (RVALUE *)key, **final_list = (RVALUE **)arg;
|
2008-08-06 15:48:30 +04:00
|
|
|
if ((p->as.basic.flags & (FL_FINALIZE|FL_MARK)) == FL_FINALIZE) {
|
2008-07-27 09:59:32 +04:00
|
|
|
if (BUILTIN_TYPE(p) != T_DEFERRED) {
|
|
|
|
p->as.free.flags = FL_MARK | T_DEFERRED; /* remain marked */
|
|
|
|
RDATA(p)->dfree = 0;
|
|
|
|
}
|
2008-06-30 13:57:07 +04:00
|
|
|
p->as.free.next = *final_list;
|
|
|
|
*final_list = p;
|
|
|
|
}
|
2008-06-30 17:12:49 +04:00
|
|
|
return ST_CONTINUE;
|
2008-06-30 13:57:07 +04:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_gc_call_finalizer_at_exit(void)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
1998-01-16 15:19:22 +03:00
|
|
|
RVALUE *p, *pend;
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t i;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
/* run finalizers */
|
2001-01-23 12:55:10 +03:00
|
|
|
if (need_call_final) {
|
2008-06-30 17:12:49 +04:00
|
|
|
do {
|
|
|
|
p = deferred_final_list;
|
2008-06-30 13:57:07 +04:00
|
|
|
deferred_final_list = 0;
|
|
|
|
finalize_list(objspace, p);
|
2008-08-06 15:48:30 +04:00
|
|
|
mark_tbl(objspace, finalizer_table, 0);
|
2008-06-30 13:57:07 +04:00
|
|
|
st_foreach(finalizer_table, chain_finalized_object,
|
|
|
|
(st_data_t)&deferred_final_list);
|
2008-06-30 17:12:49 +04:00
|
|
|
} while (deferred_final_list);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2008-06-30 13:57:07 +04:00
|
|
|
/* finalizers are part of garbage collection */
|
|
|
|
during_gc++;
|
2003-08-01 18:57:48 +04:00
|
|
|
/* run data object's finalizers */
|
2004-04-07 10:30:15 +04:00
|
|
|
for (i = 0; i < heaps_used; i++) {
|
2003-10-01 15:49:44 +04:00
|
|
|
p = heaps[i].slot; pend = p + heaps[i].limit;
|
1998-01-16 15:19:22 +03:00
|
|
|
while (p < pend) {
|
|
|
|
if (BUILTIN_TYPE(p) == T_DATA &&
|
2004-04-07 06:51:05 +04:00
|
|
|
DATA_PTR(p) && RANY(p)->as.data.dfree &&
|
|
|
|
RANY(p)->as.basic.klass != rb_cThread) {
|
2001-02-02 14:38:20 +03:00
|
|
|
p->as.free.flags = 0;
|
2003-03-23 13:55:39 +03:00
|
|
|
if ((long)RANY(p)->as.data.dfree == -1) {
|
* array.c, bignum.c, cont.c, dir.c, dln.c, encoding.c, enumerator.c,
enumerator.c (enumerator_allocate), eval_jump.c, file.c, hash.c,
io.c, load.c, pack.c, proc.c, random.c, re.c, ruby.c, st.c,
string.c, thread.c, thread_pthread.c, time.c, util.c, variable.c,
vm.c, gc.c:
allocated memory objects by xmalloc (ruby_xmalloc) should be
freed by xfree (ruby_xfree).
* ext/curses/curses.c, ext/dbm/dbm.c, ext/digest/digest.c,
ext/gdbm/gdbm.c, ext/json/ext/parser/parser.c,
ext/json/ext/parser/unicode.c, ext/openssl/ossl_cipher.c,
ext/openssl/ossl_hmac.c, ext/openssl/ossl_pkey_ec.c,
ext/sdbm/init.c, ext/strscan/strscan.c, ext/zlib/zlib.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-06-08 14:01:40 +04:00
|
|
|
xfree(DATA_PTR(p));
|
2003-03-23 13:55:39 +03:00
|
|
|
}
|
|
|
|
else if (RANY(p)->as.data.dfree) {
|
|
|
|
(*RANY(p)->as.data.dfree)(DATA_PTR(p));
|
|
|
|
}
|
2007-08-19 08:34:44 +04:00
|
|
|
VALGRIND_MAKE_MEM_UNDEFINED((void*)p, sizeof(RVALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
else if (BUILTIN_TYPE(p) == T_FILE) {
|
2004-04-07 06:51:05 +04:00
|
|
|
if (rb_io_fptr_finalize(RANY(p)->as.file.fptr)) {
|
|
|
|
p->as.free.flags = 0;
|
2007-08-19 08:34:44 +04:00
|
|
|
VALGRIND_MAKE_MEM_UNDEFINED((void*)p, sizeof(RVALUE));
|
2004-04-07 06:51:05 +04:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
2006-02-13 07:53:22 +03:00
|
|
|
during_gc = 0;
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
void
|
|
|
|
rb_gc(void)
|
|
|
|
{
|
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2008-07-02 04:49:10 +04:00
|
|
|
garbage_collect(objspace);
|
2008-07-05 11:15:41 +04:00
|
|
|
gc_finalize_deferred(objspace);
|
2008-04-27 07:20:35 +04:00
|
|
|
}
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ObjectSpace._id2ref(object_id) -> an_object
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* Converts an object id to a reference to the object. May not be
|
|
|
|
* called on an object id passed as a parameter to a finalizer.
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
* s = "I am a string" #=> "I am a string"
|
|
|
|
* r = ObjectSpace._id2ref(s.object_id) #=> "I am a string"
|
|
|
|
* r == s #=> true
|
2005-06-19 21:16:14 +04:00
|
|
|
*
|
2003-12-22 09:20:14 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
static VALUE
|
2006-03-02 08:22:30 +03:00
|
|
|
id2ref(VALUE obj, VALUE objid)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2005-07-27 11:27:19 +04:00
|
|
|
#if SIZEOF_LONG == SIZEOF_VOIDP
|
|
|
|
#define NUM2PTR(x) NUM2ULONG(x)
|
|
|
|
#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
|
|
|
|
#define NUM2PTR(x) NUM2ULL(x)
|
|
|
|
#endif
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2005-07-27 11:27:19 +04:00
|
|
|
VALUE ptr;
|
|
|
|
void *p0;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_secure(4);
|
2006-03-02 08:22:30 +03:00
|
|
|
ptr = NUM2PTR(objid);
|
2005-07-27 11:27:19 +04:00
|
|
|
p0 = (void *)ptr;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (ptr == Qtrue) return Qtrue;
|
|
|
|
if (ptr == Qfalse) return Qfalse;
|
|
|
|
if (ptr == Qnil) return Qnil;
|
2001-03-21 06:41:45 +03:00
|
|
|
if (FIXNUM_P(ptr)) return (VALUE)ptr;
|
2006-03-04 09:28:51 +03:00
|
|
|
ptr = objid ^ FIXNUM_FLAG; /* unset FIXNUM_FLAG */
|
2006-03-02 08:22:30 +03:00
|
|
|
|
2006-03-04 09:28:51 +03:00
|
|
|
if ((ptr % sizeof(RVALUE)) == (4 << 2)) {
|
|
|
|
ID symid = ptr / sizeof(RVALUE);
|
2006-03-02 08:22:30 +03:00
|
|
|
if (rb_id2name(symid) == 0)
|
2007-06-25 15:19:11 +04:00
|
|
|
rb_raise(rb_eRangeError, "%p is not symbol id value", p0);
|
2006-12-31 18:02:22 +03:00
|
|
|
return ID2SYM(symid);
|
2001-03-21 06:41:45 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2008-04-27 07:20:35 +04:00
|
|
|
if (!is_pointer_to_heap(objspace, (void *)ptr) ||
|
* vm.c, insns.def, eval.c, vm_insnhelper.c: fix CREF handling.
VM value stack frame of block contains cref information.
(dfp[-1] points CREF)
* compile.c, eval_intern.h, eval_method.c, load.c, proc.c,
vm_dump.h, vm_core.h: ditto.
* include/ruby/ruby.h, gc.c: remove T_VALUES because of above
changes.
* bootstraptest/test_eval.rb, test_knownbug.rb: move solved test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16468 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-05-19 07:08:50 +04:00
|
|
|
BUILTIN_TYPE(ptr) > T_FIXNUM || BUILTIN_TYPE(ptr) == T_ICLASS) {
|
2005-07-27 11:27:19 +04:00
|
|
|
rb_raise(rb_eRangeError, "%p is not id value", p0);
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2003-08-22 12:09:58 +04:00
|
|
|
if (BUILTIN_TYPE(ptr) == 0 || RBASIC(ptr)->klass == 0) {
|
2005-07-27 11:27:19 +04:00
|
|
|
rb_raise(rb_eRangeError, "%p is recycled object", p0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
return (VALUE)ptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2006-03-02 08:22:30 +03:00
|
|
|
/*
|
|
|
|
* Document-method: __id__
|
|
|
|
* Document-method: object_id
|
|
|
|
*
|
|
|
|
* call-seq:
|
|
|
|
* obj.__id__ => fixnum
|
|
|
|
* obj.object_id => fixnum
|
2008-03-12 06:49:55 +03:00
|
|
|
*
|
2006-03-02 08:22:30 +03:00
|
|
|
* Returns an integer identifier for <i>obj</i>. The same number will
|
|
|
|
* be returned on all calls to <code>id</code> for a given object, and
|
|
|
|
* no two active objects will share an id.
|
|
|
|
* <code>Object#object_id</code> is a different concept from the
|
|
|
|
* <code>:name</code> notation, which returns the symbol id of
|
|
|
|
* <code>name</code>. Replaces the deprecated <code>Object#id</code>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* obj.hash => fixnum
|
2008-03-12 06:49:55 +03:00
|
|
|
*
|
2006-03-02 08:22:30 +03:00
|
|
|
* Generates a <code>Fixnum</code> hash value for this object. This
|
|
|
|
* function must have the property that <code>a.eql?(b)</code> implies
|
|
|
|
* <code>a.hash == b.hash</code>. The hash value is used by class
|
|
|
|
* <code>Hash</code>. Any hash value that exceeds the capacity of a
|
|
|
|
* <code>Fixnum</code> will be truncated before being used.
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_obj_id(VALUE obj)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* 32-bit VALUE space
|
|
|
|
* MSB ------------------------ LSB
|
|
|
|
* false 00000000000000000000000000000000
|
|
|
|
* true 00000000000000000000000000000010
|
|
|
|
* nil 00000000000000000000000000000100
|
|
|
|
* undef 00000000000000000000000000000110
|
|
|
|
* symbol ssssssssssssssssssssssss00001110
|
2007-06-28 06:32:25 +04:00
|
|
|
* object oooooooooooooooooooooooooooooo00 = 0 (mod sizeof(RVALUE))
|
2006-03-02 08:22:30 +03:00
|
|
|
* fixnum fffffffffffffffffffffffffffffff1
|
|
|
|
*
|
|
|
|
* object_id space
|
|
|
|
* LSB
|
|
|
|
* false 00000000000000000000000000000000
|
|
|
|
* true 00000000000000000000000000000010
|
|
|
|
* nil 00000000000000000000000000000100
|
|
|
|
* undef 00000000000000000000000000000110
|
2007-06-28 06:32:25 +04:00
|
|
|
* symbol 000SSSSSSSSSSSSSSSSSSSSSSSSSSS0 S...S % A = 4 (S...S = s...s * A + 4)
|
2006-03-02 08:22:30 +03:00
|
|
|
* object oooooooooooooooooooooooooooooo0 o...o % A = 0
|
|
|
|
* fixnum fffffffffffffffffffffffffffffff1 bignum if required
|
|
|
|
*
|
|
|
|
* where A = sizeof(RVALUE)/4
|
|
|
|
*
|
|
|
|
* sizeof(RVALUE) is
|
|
|
|
* 20 if 32-bit, double is 4-byte aligned
|
|
|
|
* 24 if 32-bit, double is 8-byte aligned
|
|
|
|
* 40 if 64-bit
|
|
|
|
*/
|
2006-12-31 18:02:22 +03:00
|
|
|
if (TYPE(obj) == T_SYMBOL) {
|
|
|
|
return (SYM2ID(obj) * sizeof(RVALUE) + (4 << 2)) | FIXNUM_FLAG;
|
|
|
|
}
|
2006-03-02 08:22:30 +03:00
|
|
|
if (SPECIAL_CONST_P(obj)) {
|
2007-06-28 06:32:25 +04:00
|
|
|
return LONG2NUM((SIGNED_VALUE)obj);
|
2006-03-02 08:22:30 +03:00
|
|
|
}
|
2007-06-28 06:32:25 +04:00
|
|
|
return (VALUE)((SIGNED_VALUE)obj|FIXNUM_FLAG);
|
2006-03-02 08:22:30 +03:00
|
|
|
}
|
|
|
|
|
2008-05-31 18:03:23 +04:00
|
|
|
static int
|
|
|
|
set_zero(st_data_t key, st_data_t val, st_data_t arg)
|
|
|
|
{
|
|
|
|
VALUE k = (VALUE)key;
|
|
|
|
VALUE hash = (VALUE)arg;
|
|
|
|
rb_hash_aset(hash, k, INT2FIX(0));
|
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2007-11-03 18:09:10 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* ObjectSpace.count_objects([result_hash]) -> hash
|
|
|
|
*
|
|
|
|
* Counts objects for each type.
|
|
|
|
*
|
2007-11-04 02:13:57 +03:00
|
|
|
* It returns a hash as:
|
|
|
|
* {:TOTAL=>10000, :FREE=>3011, :T_OBJECT=>6, :T_CLASS=>404, ...}
|
2007-11-03 18:09:10 +03:00
|
|
|
*
|
|
|
|
* If the optional argument, result_hash, is given,
|
|
|
|
* it is overwritten and returned.
|
|
|
|
* This is intended to avoid probe effect.
|
|
|
|
*
|
|
|
|
* The contents of the returned hash is implementation defined.
|
|
|
|
* It may be changed in future.
|
|
|
|
*
|
|
|
|
* This method is not expected to work except C Ruby.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
count_objects(int argc, VALUE *argv, VALUE os)
|
|
|
|
{
|
2008-04-27 07:20:35 +04:00
|
|
|
rb_objspace_t *objspace = &rb_objspace;
|
2008-05-11 09:44:36 +04:00
|
|
|
size_t counts[T_MASK+1];
|
|
|
|
size_t freed = 0;
|
|
|
|
size_t total = 0;
|
|
|
|
size_t i;
|
2007-11-03 18:09:10 +03:00
|
|
|
VALUE hash;
|
|
|
|
|
|
|
|
if (rb_scan_args(argc, argv, "01", &hash) == 1) {
|
|
|
|
if (TYPE(hash) != T_HASH)
|
|
|
|
rb_raise(rb_eTypeError, "non-hash given");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i <= T_MASK; i++) {
|
|
|
|
counts[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < heaps_used; i++) {
|
|
|
|
RVALUE *p, *pend;
|
|
|
|
|
|
|
|
p = heaps[i].slot; pend = p + heaps[i].limit;
|
|
|
|
for (;p < pend; p++) {
|
|
|
|
if (p->as.basic.flags) {
|
|
|
|
counts[BUILTIN_TYPE(p)]++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
freed++;
|
|
|
|
}
|
|
|
|
}
|
2007-11-04 02:13:57 +03:00
|
|
|
total += heaps[i].limit;
|
2007-11-03 18:09:10 +03:00
|
|
|
}
|
|
|
|
|
2008-06-06 10:05:44 +04:00
|
|
|
if (hash == Qnil) {
|
2007-11-03 18:09:10 +03:00
|
|
|
hash = rb_hash_new();
|
2008-06-06 10:05:44 +04:00
|
|
|
}
|
|
|
|
else if (!RHASH_EMPTY_P(hash)) {
|
|
|
|
st_foreach(RHASH_TBL(hash), set_zero, hash);
|
|
|
|
}
|
2008-05-11 09:44:36 +04:00
|
|
|
rb_hash_aset(hash, ID2SYM(rb_intern("TOTAL")), SIZET2NUM(total));
|
|
|
|
rb_hash_aset(hash, ID2SYM(rb_intern("FREE")), SIZET2NUM(freed));
|
2007-11-03 18:09:10 +03:00
|
|
|
for (i = 0; i <= T_MASK; i++) {
|
|
|
|
VALUE type;
|
|
|
|
switch (i) {
|
2008-04-26 12:42:34 +04:00
|
|
|
#define COUNT_TYPE(t) case t: type = ID2SYM(rb_intern(#t)); break;
|
|
|
|
COUNT_TYPE(T_NONE);
|
|
|
|
COUNT_TYPE(T_OBJECT);
|
|
|
|
COUNT_TYPE(T_CLASS);
|
|
|
|
COUNT_TYPE(T_MODULE);
|
|
|
|
COUNT_TYPE(T_FLOAT);
|
|
|
|
COUNT_TYPE(T_STRING);
|
|
|
|
COUNT_TYPE(T_REGEXP);
|
|
|
|
COUNT_TYPE(T_ARRAY);
|
|
|
|
COUNT_TYPE(T_HASH);
|
|
|
|
COUNT_TYPE(T_STRUCT);
|
|
|
|
COUNT_TYPE(T_BIGNUM);
|
|
|
|
COUNT_TYPE(T_FILE);
|
|
|
|
COUNT_TYPE(T_DATA);
|
|
|
|
COUNT_TYPE(T_MATCH);
|
|
|
|
COUNT_TYPE(T_COMPLEX);
|
|
|
|
COUNT_TYPE(T_RATIONAL);
|
|
|
|
COUNT_TYPE(T_NIL);
|
|
|
|
COUNT_TYPE(T_TRUE);
|
|
|
|
COUNT_TYPE(T_FALSE);
|
|
|
|
COUNT_TYPE(T_SYMBOL);
|
|
|
|
COUNT_TYPE(T_FIXNUM);
|
|
|
|
COUNT_TYPE(T_UNDEF);
|
|
|
|
COUNT_TYPE(T_NODE);
|
|
|
|
COUNT_TYPE(T_ICLASS);
|
2008-07-27 09:59:32 +04:00
|
|
|
COUNT_TYPE(T_DEFERRED);
|
2008-04-26 12:42:34 +04:00
|
|
|
#undef COUNT_TYPE
|
2007-11-03 18:09:10 +03:00
|
|
|
default: type = INT2NUM(i); break;
|
|
|
|
}
|
|
|
|
if (counts[i])
|
2008-05-11 09:44:36 +04:00
|
|
|
rb_hash_aset(hash, type, SIZET2NUM(counts[i]));
|
2007-11-03 18:09:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2008-04-27 10:28:08 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.count -> Integer
|
|
|
|
*
|
2008-05-11 03:02:30 +04:00
|
|
|
* The number of times GC occured.
|
2008-04-27 10:28:08 +04:00
|
|
|
*
|
2008-05-11 03:02:30 +04:00
|
|
|
* It returns the number of times GC occured since the process started.
|
2008-04-27 10:28:08 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
gc_count(VALUE self)
|
|
|
|
{
|
|
|
|
return UINT2NUM((&rb_objspace)->count);
|
|
|
|
}
|
|
|
|
|
2008-06-08 14:27:06 +04:00
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.malloc_allocated_size -> Integer
|
|
|
|
*
|
|
|
|
* The allocated size by malloc().
|
|
|
|
*
|
|
|
|
* It returns the allocated size by malloc().
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
gc_malloc_allocated_size(VALUE self)
|
|
|
|
{
|
|
|
|
return UINT2NUM((&rb_objspace)->malloc_params.allocated_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* GC.malloc_allocations -> Integer
|
|
|
|
*
|
|
|
|
* The number of allocated memory object by malloc().
|
|
|
|
*
|
|
|
|
* It returns the number of allocated memory object by malloc().
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
gc_malloc_allocations(VALUE self)
|
|
|
|
{
|
|
|
|
return UINT2NUM((&rb_objspace)->malloc_params.allocations);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-12-22 09:20:14 +03:00
|
|
|
/*
|
|
|
|
* The <code>GC</code> module provides an interface to Ruby's mark and
|
|
|
|
* sweep garbage collection mechanism. Some of the underlying methods
|
|
|
|
* are also available via the <code>ObjectSpace</code> module.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_GC(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mObSpace;
|
|
|
|
|
|
|
|
rb_mGC = rb_define_module("GC");
|
2001-01-29 08:10:42 +03:00
|
|
|
rb_define_singleton_method(rb_mGC, "start", rb_gc_start, 0);
|
|
|
|
rb_define_singleton_method(rb_mGC, "enable", rb_gc_enable, 0);
|
|
|
|
rb_define_singleton_method(rb_mGC, "disable", rb_gc_disable, 0);
|
2006-01-10 01:32:55 +03:00
|
|
|
rb_define_singleton_method(rb_mGC, "stress", gc_stress_get, 0);
|
|
|
|
rb_define_singleton_method(rb_mGC, "stress=", gc_stress_set, 1);
|
2008-04-27 10:28:08 +04:00
|
|
|
rb_define_singleton_method(rb_mGC, "count", gc_count, 0);
|
2001-01-29 08:10:42 +03:00
|
|
|
rb_define_method(rb_mGC, "garbage_collect", rb_gc_start, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_mObSpace = rb_define_module("ObjectSpace");
|
|
|
|
rb_define_module_function(rb_mObSpace, "each_object", os_each_obj, -1);
|
2001-01-29 08:10:42 +03:00
|
|
|
rb_define_module_function(rb_mObSpace, "garbage_collect", rb_gc_start, 0);
|
2000-07-15 17:37:03 +04:00
|
|
|
|
|
|
|
rb_define_module_function(rb_mObSpace, "define_finalizer", define_final, -1);
|
|
|
|
rb_define_module_function(rb_mObSpace, "undefine_finalizer", undefine_final, 1);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mObSpace, "_id2ref", id2ref, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-07-03 02:02:58 +04:00
|
|
|
nomem_error = rb_exc_new3(rb_eNoMemError,
|
|
|
|
rb_obj_freeze(rb_str_new2("failed to allocate memory")));
|
2008-06-15 13:17:06 +04:00
|
|
|
OBJ_TAINT(nomem_error);
|
|
|
|
OBJ_FREEZE(nomem_error);
|
2006-03-02 08:22:30 +03:00
|
|
|
|
|
|
|
rb_define_method(rb_mKernel, "hash", rb_obj_id, 0);
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_define_method(rb_mKernel, "__id__", rb_obj_id, 0);
|
|
|
|
rb_define_method(rb_mKernel, "object_id", rb_obj_id, 0);
|
2007-11-03 18:09:10 +03:00
|
|
|
|
|
|
|
rb_define_module_function(rb_mObSpace, "count_objects", count_objects, -1);
|
2008-06-08 14:27:06 +04:00
|
|
|
|
|
|
|
#if CALC_EXACT_MALLOC_SIZE
|
|
|
|
rb_define_singleton_method(rb_mGC, "malloc_allocated_size", gc_malloc_allocated_size, 0);
|
|
|
|
rb_define_singleton_method(rb_mGC, "malloc_allocations", gc_malloc_allocations, 0);
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|