/**************************************************************************/ /* */ /* OCaml */ /* */ /* Damien Doligez, projet Para, INRIA Rocquencourt */ /* */ /* Copyright 1997 Institut National de Recherche en Informatique et */ /* en Automatique. */ /* */ /* All rights reserved. This file is distributed under the terms of */ /* the GNU Lesser General Public License version 2.1, with the */ /* special exception on linking described in the file LICENSE. */ /* */ /**************************************************************************/ #define CAML_INTERNALS /* Operations on weak arrays and ephemerons (named ephe here)*/ #include #include "caml/alloc.h" #include "caml/domain.h" #include "caml/fail.h" #include "caml/major_gc.h" #include "caml/memory.h" #include "caml/mlvalues.h" #include "caml/shared_heap.h" #include "caml/signals.h" #include "caml/weak.h" value caml_dummy[] = {(value)Make_header(0,Abstract_tag, NOT_MARKABLE), Val_unit}; value caml_ephe_none = (value)&caml_dummy[1]; struct caml_ephe_info* caml_alloc_ephe_info (void) { struct caml_ephe_info* e = caml_stat_alloc_noexc (sizeof(struct caml_ephe_info)); if(e != NULL) memset (e, 0, sizeof(struct caml_ephe_info)); return e; } /* [len] is a value that represents a number of words (fields) */ CAMLprim value caml_ephe_create (value len) { mlsize_t size, i; value res; caml_domain_state* domain_state = Caml_state; size = Long_val (len) + 1 /* weak_list */ + 1 /* the value */; if (size < CAML_EPHE_FIRST_KEY || size > Max_wosize) caml_invalid_argument ("Weak.create"); res = caml_alloc_shr (size, Abstract_tag); Ephe_link(res) = domain_state->ephe_info->live; domain_state->ephe_info->live = res; for (i = CAML_EPHE_DATA_OFFSET; i < size; i++) Field(res, i) = caml_ephe_none; /* run memprof callbacks */ return caml_process_pending_actions_with_root(res); } CAMLprim value caml_weak_create (value len) { return caml_ephe_create(len); } /** Specificity of the cleaning phase (Phase_clean): The dead keys must be removed from the ephemerons and data removed when one the keys is dead. Here we call it cleaning the ephemerons. A specific phase of the GC is dedicated to this, Phase_clean. This phase is just after the mark phase, so the white values are dead values. It iterates the function caml_ephe_clean through all the ephemerons. However the GC is incremental and ocaml code can run on the middle of this cleaning phase. In order to respect the semantic of the ephemerons concerning dead values, the getter and setter must work as if the cleaning of all the ephemerons have been done at once. - key getter: Even if a dead key have not yet been replaced by caml_ephe_none, getting it should return none. - key setter: If we replace a dead key we need to set the data to caml_ephe_none and clean the ephemeron. This two cases are dealt by a call to do_check_key_clean that trigger the cleaning of the ephemerons when the accessed key is dead. This test is fast. In the case of value getter and value setter, there is no fast test because the removing of the data depend of the deadliness of the keys. We must always try to clean the ephemerons. */ /* If we are in Phase_sweep_ephe we need to check if the key that is going to disappear is dead and so should trigger a cleaning */ static void do_check_key_clean(value e, mlsize_t offset) { value elt; CAMLassert (offset >= CAML_EPHE_FIRST_KEY); if (caml_gc_phase != Phase_sweep_ephe) return; elt = Field(e, offset); if (elt != caml_ephe_none && Is_block (elt) && !Is_young (elt)) { if (Tag_val(elt) == Infix_tag) elt -= Infix_offset_val(elt); if (is_unmarked(elt)) { Field(e, offset) = caml_ephe_none; Field(e,CAML_EPHE_DATA_OFFSET) = caml_ephe_none; } } } void caml_ephe_clean (value v) { value child; int release_data = 0; mlsize_t size, i; header_t hd; if (caml_gc_phase != Phase_sweep_ephe) return; hd = Hd_val(v); size = Wosize_hd (hd); for (i = CAML_EPHE_FIRST_KEY; i < size; i++) { child = Field(v, i); ephemeron_again: if (child != caml_ephe_none && Is_block(child)) { if (Tag_val (child) == Forward_tag) { value f = Forward_val (child); if (Is_block(f)) { if (Tag_val(f) == Forward_tag || Tag_val(f) == Lazy_tag || Tag_val(f) == Forcing_tag || Tag_val(f) == Double_tag) { /* Do not short-circuit the pointer */ } else { Field(v, i) = child = f; if (Is_block (f) && Is_young (f)) add_to_ephe_ref_table(&Caml_state->minor_tables->ephe_ref, v, i); goto ephemeron_again; } } } if (Tag_val (child) == Infix_tag) child -= Infix_offset_val (child); if (!Is_young (child) && is_unmarked(child)) { release_data = 1; Field(v, i) = caml_ephe_none; } } } child = Field(v, CAML_EPHE_DATA_OFFSET); if (child != caml_ephe_none) { if (release_data) { Field(v, CAML_EPHE_DATA_OFFSET) = caml_ephe_none; } #ifdef DEBUG else if (Is_block (child) && !Is_young (child)) { if (Tag_val (child) == Infix_tag) child -= Infix_offset_val (child); /* If we scanned all the keys and the data field remains filled, then the mark phase must have marked it */ CAMLassert( is_marked (child) ); } #endif } } static void clean_field (value e, mlsize_t offset) { if (offset == CAML_EPHE_DATA_OFFSET) caml_ephe_clean(e); else do_check_key_clean(e, offset); } static void do_set (value e, mlsize_t offset, value v) { if (Is_block(v) && Is_young(v)) { value old = Field(e, offset); Field(e, offset) = v; if (!(Is_block(old) && Is_young(old))) add_to_ephe_ref_table (&Caml_state->minor_tables->ephe_ref, e, offset); } else { Field(e, offset) = v; } } static value ephe_set_field (value e, mlsize_t offset, value el) { CAMLparam2(e,el); clean_field(e, offset); do_set(e, offset, el); CAMLreturn(Val_unit); } CAMLprim value caml_ephe_set_key (value e, value n, value el) { mlsize_t offset = Long_val (n) + CAML_EPHE_FIRST_KEY; if (offset < CAML_EPHE_FIRST_KEY || offset >= Wosize_val (e)){ caml_invalid_argument ("Weak.set"); } return ephe_set_field (e, offset, el); } CAMLprim value caml_ephe_unset_key (value e, value n) { return caml_ephe_set_key (e, n, caml_ephe_none); } value caml_ephe_set_key_option (value e, value n, value el) { if (Is_some (el)) { return caml_ephe_set_key (e, n, Some_val(el)); } else { return caml_ephe_unset_key (e, n); } } CAMLprim value caml_weak_set (value ar, value n, value el) { return caml_ephe_set_key_option(ar,n,el); } CAMLprim value caml_ephe_set_data (value e, value el) { return ephe_set_field (e, CAML_EPHE_DATA_OFFSET, el); } CAMLprim value caml_ephe_unset_data (value e) { return caml_ephe_set_data(e, caml_ephe_none); } static value ephe_get_field (value e, mlsize_t offset) { CAMLparam1(e); CAMLlocal2 (res, elt); clean_field(e, offset); elt = Field(e, offset); if (elt == caml_ephe_none) { res = Val_none; } else { caml_darken (Caml_state, elt, 0); res = caml_alloc_small (1, Tag_some); Field(res, 0) = elt; } /* run GC and memprof callbacks */ caml_process_pending_actions(); CAMLreturn (res); } CAMLprim value caml_ephe_get_key (value e, value n) { mlsize_t offset = Long_val (n) + CAML_EPHE_FIRST_KEY; if (offset < CAML_EPHE_FIRST_KEY || offset >= Wosize_val (e)){ caml_invalid_argument ("Weak.get"); } return ephe_get_field (e, offset); } CAMLprim value caml_weak_get (value ar, value n) { return caml_ephe_get_key(ar, n); } /* Copy the contents of an object from `from` to `to` (which is * already allocated and has the necessary header word). Darken * any pointer fields. */ static void ephe_copy_and_darken(value from, value to) { mlsize_t i = 0; /* size of non-scannable prefix */ CAMLassert(Is_block(from)); CAMLassert(Is_block(to)); CAMLassert(Tag_val(from) == Tag_val(to)); CAMLassert(Tag_val(from) != Infix_tag); CAMLassert(Wosize_val(from) == Wosize_val(to)); if (Tag_val(from) > No_scan_tag) { i = Wosize_val(to); } else if (Tag_val(from) == Closure_tag) { i = Start_env_closinfo(Closinfo_val(from)); } /* Copy non-scannable prefix */ memcpy (Bp_val(to), Bp_val(from), Bsize_wsize(i)); /* Copy and darken scannable fields */ caml_domain_state* domain_state = Caml_state; while (i < Wosize_val(to)) { value field = Field(from, i); caml_darken (domain_state, field, 0); Store_field(to, i, field); ++ i; } } static value ephe_get_field_copy (value e, mlsize_t offset) { CAMLparam1 (e); CAMLlocal3 (res, val, copy); mlsize_t infix_offs = 0; copy = Val_unit; /* Loop in case allocating the copy triggers a GC which modifies the * ephemeron or the value. In the common case, we go around this * loop 1.5 times. */ while (1) { clean_field(e, offset); val = Field(e, offset); if (val == caml_ephe_none) { res = Val_none; goto out; } infix_offs = 0; /* Don't copy immediates or custom blocks #7279 */ if (!Is_block(val) || Tag_val(val) == Custom_tag) { copy = val; goto some; } if (Tag_val(val) == Infix_tag) { infix_offs = Infix_offset_val(val); val -= infix_offs; } if (copy != Val_unit && (Tag_val(val) == Tag_val(copy)) && (Wosize_val(val) == Wosize_val(copy))) { /* The copy we allocated (on a previous iteration) is large * enough and has the right header bits for us to copy the * contents of val into it. Note that we don't care whether val * has changed since we allocated copy. */ break; } /* This allocation could provoke a GC, which could change the * header or size of val (e.g. in a finalizer). So we go around * the loop to read val again. */ copy = caml_alloc (Wosize_val(val), Tag_val(val)); val = Val_unit; } ephe_copy_and_darken(val, copy); some: res = caml_alloc_some(copy + infix_offs); out: /* run GC and memprof callbacks */ caml_process_pending_actions(); CAMLreturn(res); } CAMLprim value caml_ephe_get_key_copy (value e, value n) { mlsize_t offset = Long_val (n) + CAML_EPHE_FIRST_KEY; if (offset < CAML_EPHE_FIRST_KEY || offset >= Wosize_val (e)){ caml_invalid_argument ("Weak.get"); } return ephe_get_field_copy(e, offset); } CAMLprim value caml_weak_get_copy (value e, value n){ return caml_ephe_get_key_copy(e,n); } CAMLprim value caml_ephe_get_data (value e) { return ephe_get_field (e, CAML_EPHE_DATA_OFFSET); } CAMLprim value caml_ephe_get_data_copy (value e) { return ephe_get_field_copy (e, CAML_EPHE_DATA_OFFSET); } static value ephe_check_field (value e, mlsize_t offset) { CAMLparam1(e); CAMLlocal1(v); clean_field(e, offset); v = Field(e, offset); CAMLreturn(Val_bool(v != caml_ephe_none)); } CAMLprim value caml_ephe_check_key (value e, value n) { mlsize_t offset = Long_val (n) + CAML_EPHE_FIRST_KEY; if (offset < CAML_EPHE_FIRST_KEY || offset >= Wosize_val (e)){ caml_invalid_argument ("Weak.check"); } return ephe_check_field (e, offset); } CAMLprim value caml_weak_check (value e, value n) { return caml_ephe_check_key(e,n); } CAMLprim value caml_ephe_check_data (value e) { return ephe_check_field (e, CAML_EPHE_DATA_OFFSET); } static value ephe_blit_field (value es, mlsize_t offset_s, value ed, mlsize_t offset_d, mlsize_t length) { CAMLparam2(es,ed); CAMLlocal1(ar); long i; if (length == 0) CAMLreturn(Val_unit); /* We clean the source and destination ephemerons before performing the blit. * This guarantees that none of the keys and the data fields being accessed * during a blit operation is unmarked during [Phase_sweep]. */ caml_ephe_clean(es); caml_ephe_clean(ed); if (offset_d < offset_s) { for (i = 0; i < length; i++) { do_set(ed, offset_d + i, Field(es, (offset_s + i))); } } else { for (i = length - 1; i >= 0; i--) { do_set(ed, offset_d + i, Field(es, (offset_s + i))); } } CAMLreturn(Val_unit); } CAMLprim value caml_ephe_blit_key (value es, value ofs, value ed, value ofd, value len) { mlsize_t offset_s = Long_val (ofs) + CAML_EPHE_FIRST_KEY; mlsize_t offset_d = Long_val (ofd) + CAML_EPHE_FIRST_KEY; mlsize_t length = Long_val (len); if (offset_s < CAML_EPHE_FIRST_KEY || offset_s + length > Wosize_val (es)){ caml_invalid_argument ("Weak.blit"); } if (offset_d < CAML_EPHE_FIRST_KEY || offset_d + length > Wosize_val (ed)){ caml_invalid_argument ("Weak.blit"); } return ephe_blit_field (es, offset_s, ed, offset_d, length); } CAMLprim value caml_ephe_blit_data (value es, value ed) { ephe_blit_field (es, CAML_EPHE_DATA_OFFSET, ed, CAML_EPHE_DATA_OFFSET, 1); caml_darken(0, Field(ed, CAML_EPHE_DATA_OFFSET), 0); /* [ed] may be in [Caml_state->ephe_info->live] list. The data value may be unmarked. The ephemerons on the live list are not scanned during ephemeron marking. Hence, unconditionally darken the data value. */ return Val_unit; } CAMLprim value caml_weak_blit (value es, value ofs, value ed, value ofd, value len) { return caml_ephe_blit_key (es, ofs, ed, ofd, len); }