mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

* hash.c, internal.h: support theap for small Hash. Introduce RHASH_ARRAY (li_table) besides st_table and small Hash (<=8 entries) are managed by an array data structure. This array data can be managed by theap. If st_table is needed, then converting array data to st_table data. For st_table using code, we prepare "stlike" APIs which accepts hash value and are very similar to st_ APIs. This work is based on the GSoC achievement by tacinight <tacingiht@gmail.com> and refined by ko1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/**********************************************************************
|
|
|
|
transient_heap.h - declarations of transient_heap related APIs.
|
|
|
|
Copyright (C) 2018 Koichi Sasada
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef RUBY_TRANSIENT_HEAP_H
|
|
#define RUBY_TRANSIENT_HEAP_H
|
|
|
|
/* public API */
|
|
|
|
/* Allocate req_size bytes from transient_heap.
|
|
Allocated memories are free-ed when next GC
|
|
if this memory is not marked by `rb_transient_heap_mark()`.
|
|
*/
|
|
void *rb_transient_heap_alloc(VALUE obj, size_t req_size);
|
|
|
|
/* If `obj` uses a memory pointed by `ptr` from transient_heap,
|
|
you need to call `rb_transient_heap_mark(obj, ptr)`
|
|
to assert liveness of `obj` (and ptr). */
|
|
void rb_transient_heap_mark(VALUE obj, const void *ptr);
|
|
|
|
/* used by gc.c */
|
|
void rb_transient_heap_promote(VALUE obj);
|
|
void rb_transient_heap_start_marking(int full_marking);
|
|
void rb_transient_heap_finish_marking(void);
|
|
|
|
/* for debug API */
|
|
void rb_transient_heap_dump(void);
|
|
void rb_transient_heap_verify(void);
|
|
int rb_transient_heap_managed_ptr_p(const void *ptr);
|
|
|
|
/* evacuate functions for each type */
|
|
void rb_ary_transient_heap_evacuate(VALUE ary, int promote);
|
|
void rb_obj_transient_heap_evacuate(VALUE obj, int promote);
|
|
void rb_hash_transient_heap_evacuate(VALUE hash, int promote);
|
|
void rb_struct_transient_heap_evacuate(VALUE st, int promote);
|
|
#endif
|