mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
120 lines
5.2 KiB
C
120 lines
5.2 KiB
C
/* weak.c -- weak pointers and ephemerons */
|
|
/* Copyright (c) 2010-2013 Alex Shinn. All rights reserved. */
|
|
/* BSD-style license: http://synthcode.com/license.txt */
|
|
|
|
#include <chibi/eval.h>
|
|
|
|
sexp sexp_ephemeron_brokenp_op (sexp ctx, sexp self, sexp_sint_t n, sexp eph) {
|
|
if (! (sexp_pointerp(eph) && (sexp_pointer_tag(eph) == sexp_unbox_fixnum(sexp_opcode_arg1_type(self)))))
|
|
return sexp_type_exception(ctx, self, sexp_unbox_fixnum(sexp_opcode_arg1_type(self)), eph);
|
|
return sexp_make_boolean(sexp_brokenp(eph));
|
|
}
|
|
|
|
#if 0
|
|
#define sexp_weak_vector_p(x) sexp_check_tag(x, sexp_weak_vector_id)
|
|
|
|
sexp sexp_make_weak_vector (sexp ctx, sexp self, sexp_sint_t n, sexp len) {
|
|
sexp vec, *x;
|
|
int i, clen = sexp_unbox_fixnum(len);
|
|
sexp_assert_type(ctx, sexp_fixnump, SEXP_FIXNUM, len);
|
|
vec = sexp_alloc_tagged(ctx, sexp_sizeof(vector) + clen*sizeof(sexp),
|
|
sexp_unbox_fixnum(sexp_opcode_return_type(self)));
|
|
if (sexp_exceptionp(vec)) return vec;
|
|
x = sexp_vector_data(vec);
|
|
for (i=0; i<clen; i++)
|
|
x[i] = SEXP_VOID;
|
|
sexp_vector_length(vec) = clen;
|
|
return vec;
|
|
}
|
|
|
|
sexp sexp_weak_vector_length (sexp ctx, sexp self, sexp_sint_t n, sexp v) {
|
|
if (! (sexp_pointerp(v) && (sexp_pointer_tag(v) == sexp_unbox_fixnum(sexp_opcode_arg1_type(self)))))
|
|
return sexp_type_exception(ctx, self, sexp_unbox_fixnum(sexp_opcode_arg1_type(self)), v);
|
|
return sexp_make_fixnum(sexp_vector_length(v));
|
|
}
|
|
|
|
sexp sexp_weak_vector_ref (sexp ctx, sexp self, sexp_sint_t n, sexp v, sexp k) {
|
|
if (! (sexp_pointerp(v) && (sexp_pointer_tag(v) == sexp_unbox_fixnum(sexp_opcode_arg1_type(self)))))
|
|
return sexp_type_exception(ctx, self, sexp_unbox_fixnum(sexp_opcode_arg1_type(self)), v);
|
|
sexp_assert_type(ctx, sexp_fixnump, SEXP_FIXNUM, k);
|
|
return sexp_vector_ref(v, k);
|
|
}
|
|
|
|
sexp sexp_weak_vector_set (sexp ctx, sexp self, sexp_sint_t n, sexp v, sexp k, sexp x) {
|
|
if (! (sexp_pointerp(v) && (sexp_pointer_tag(v) == sexp_unbox_fixnum(sexp_opcode_arg1_type(self)))))
|
|
return sexp_type_exception(ctx, self, sexp_unbox_fixnum(sexp_opcode_arg1_type(self)), v);
|
|
sexp_assert_type(ctx, sexp_fixnump, SEXP_FIXNUM, k);
|
|
sexp_vector_set(v, k, x);
|
|
return SEXP_VOID;
|
|
}
|
|
#endif
|
|
|
|
sexp sexp_init_library (sexp ctx, sexp self, sexp_sint_t n, sexp env, const char* version, const sexp_abi_identifier_t abi) {
|
|
#if 0
|
|
sexp v;
|
|
int sexp_weak_vector_id;
|
|
#endif
|
|
sexp_gc_var3(name, t, op);
|
|
if (!(sexp_version_compatible(ctx, version, sexp_version)
|
|
&& sexp_abi_compatible(ctx, abi, SEXP_ABI_IDENTIFIER)))
|
|
return SEXP_ABI_ERROR;
|
|
sexp_gc_preserve3(ctx, name, t, op);
|
|
|
|
#if SEXP_USE_WEAK_REFERENCES
|
|
t = sexp_make_fixnum(SEXP_EPHEMERON);
|
|
op = sexp_make_type_predicate(ctx, name=sexp_c_string(ctx,"ephemeron?",-1), t);
|
|
sexp_env_define(ctx, env, name=sexp_intern(ctx, "ephemeron?", -1), op);
|
|
op = sexp_make_getter(ctx, name=sexp_c_string(ctx, "ephemeron-key", -1), t, SEXP_ZERO);
|
|
sexp_env_define(ctx, env, name=sexp_intern(ctx, "ephemeron-key", -1), op);
|
|
op = sexp_make_getter(ctx, name=sexp_c_string(ctx, "ephemeron-value", -1), t, SEXP_ONE);
|
|
sexp_env_define(ctx, env, name=sexp_intern(ctx, "ephemeron-value", -1), op);
|
|
op = sexp_define_foreign(ctx, env, "make-ephemeron", 2, sexp_make_ephemeron_op);
|
|
if (sexp_opcodep(op)) {
|
|
sexp_opcode_return_type(op) = sexp_make_fixnum(SEXP_EPHEMERON);
|
|
}
|
|
op = sexp_define_foreign(ctx, env, "ephemeron-broken?", 1, sexp_ephemeron_brokenp_op);
|
|
if (sexp_opcodep(op)) {
|
|
sexp_opcode_return_type(op) = sexp_make_fixnum(SEXP_OBJECT);
|
|
sexp_opcode_arg1_type(op) = sexp_make_fixnum(SEXP_EPHEMERON);
|
|
}
|
|
#endif
|
|
|
|
#if 0
|
|
name = sexp_c_string(ctx, "Weak-Vector", -1);
|
|
t = sexp_register_simple_type(ctx, name, SEXP_FALSE, SEXP_ZERO);
|
|
v = sexp_type_by_index(ctx, SEXP_VECTOR);
|
|
sexp_weak_vector_id = sexp_type_tag(t);
|
|
sexp_type_weak_base(t) = sexp_type_field_base(v);
|
|
sexp_type_weak_len_off(t) = sexp_type_field_len_off(v);
|
|
sexp_type_weak_len_scale(t) = sexp_type_field_len_scale(v);
|
|
|
|
op = sexp_make_type_predicate(ctx, name=sexp_c_string(ctx,"weak-vector?",-1), t);
|
|
sexp_env_define(ctx, env, name=sexp_intern(ctx, "weak-vector?", -1), op);
|
|
op = sexp_define_foreign(ctx, env, "make-weak-vector", 1, sexp_make_weak_vector);
|
|
if (sexp_opcodep(op)) {
|
|
sexp_opcode_return_type(op) = sexp_make_fixnum(sexp_weak_vector_id);
|
|
sexp_opcode_arg1_type(op) = sexp_make_fixnum(SEXP_FIXNUM);
|
|
}
|
|
op = sexp_define_foreign(ctx, env, "weak-vector-length", 2, sexp_weak_vector_length);
|
|
if (sexp_opcodep(op)) {
|
|
sexp_opcode_return_type(op) = sexp_make_fixnum(SEXP_FIXNUM);
|
|
sexp_opcode_arg1_type(op) = sexp_make_fixnum(sexp_weak_vector_id);
|
|
}
|
|
op = sexp_define_foreign(ctx, env, "weak-vector-ref", 2, sexp_weak_vector_ref);
|
|
if (sexp_opcodep(op)) {
|
|
sexp_opcode_return_type(op) = sexp_make_fixnum(SEXP_OBJECT);
|
|
sexp_opcode_arg1_type(op) = sexp_make_fixnum(sexp_weak_vector_id);
|
|
sexp_opcode_arg2_type(op) = sexp_make_fixnum(SEXP_FIXNUM);
|
|
}
|
|
op = sexp_define_foreign(ctx, env, "weak-vector-set!", 3, sexp_weak_vector_set);
|
|
if (sexp_opcodep(op)) {
|
|
sexp_opcode_return_type(op) = SEXP_VOID;
|
|
sexp_opcode_arg1_type(op) = sexp_make_fixnum(sexp_weak_vector_id);
|
|
sexp_opcode_arg2_type(op) = sexp_make_fixnum(SEXP_FIXNUM);
|
|
}
|
|
#endif
|
|
|
|
sexp_gc_release3(ctx);
|
|
return SEXP_VOID;
|
|
}
|
|
|