103 lines
3.4 KiB
C
103 lines
3.4 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Manuel Serrano and Xavier Leroy, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 2000 Institut National de Recherche en Informatique et */
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
/* the special exception on linking described in file ../LICENSE. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
#include <string.h>
|
|
|
|
#include "alloc.h"
|
|
#include "custom.h"
|
|
#include "fail.h"
|
|
#include "memory.h"
|
|
#include "mlvalues.h"
|
|
|
|
CAMLexport value caml_alloc_custom(struct custom_operations * ops,
|
|
uintnat size,
|
|
mlsize_t mem,
|
|
mlsize_t max)
|
|
{
|
|
mlsize_t wosize;
|
|
value result;
|
|
|
|
wosize = 1 + (size + sizeof(value) - 1) / sizeof(value);
|
|
if (ops->finalize == NULL && wosize <= Max_young_wosize) {
|
|
result = caml_alloc_small(wosize, Custom_tag);
|
|
Custom_ops_val(result) = ops;
|
|
} else {
|
|
result = caml_alloc_shr(wosize, Custom_tag);
|
|
Custom_ops_val(result) = ops;
|
|
caml_adjust_gc_speed(mem, max);
|
|
result = caml_check_urgent_gc(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
struct custom_operations_list {
|
|
struct custom_operations * ops;
|
|
struct custom_operations_list * next;
|
|
};
|
|
|
|
static struct custom_operations_list * custom_ops_table = NULL;
|
|
|
|
CAMLexport void caml_register_custom_operations(struct custom_operations * ops)
|
|
{
|
|
struct custom_operations_list * l =
|
|
caml_stat_alloc(sizeof(struct custom_operations_list));
|
|
Assert(ops->identifier != NULL);
|
|
Assert(ops->deserialize != NULL);
|
|
l->ops = ops;
|
|
l->next = custom_ops_table;
|
|
custom_ops_table = l;
|
|
}
|
|
|
|
struct custom_operations * caml_find_custom_operations(char * ident)
|
|
{
|
|
struct custom_operations_list * l;
|
|
for (l = custom_ops_table; l != NULL; l = l->next)
|
|
if (strcmp(l->ops->identifier, ident) == 0) return l->ops;
|
|
return NULL;
|
|
}
|
|
|
|
static struct custom_operations_list * custom_ops_final_table = NULL;
|
|
|
|
struct custom_operations * caml_final_custom_operations(final_fun fn)
|
|
{
|
|
struct custom_operations_list * l;
|
|
struct custom_operations * ops;
|
|
for (l = custom_ops_final_table; l != NULL; l = l->next)
|
|
if (l->ops->finalize == fn) return l->ops;
|
|
ops = caml_stat_alloc(sizeof(struct custom_operations));
|
|
ops->identifier = "_final";
|
|
ops->finalize = fn;
|
|
ops->compare = custom_compare_default;
|
|
ops->hash = custom_hash_default;
|
|
ops->serialize = custom_serialize_default;
|
|
ops->deserialize = custom_deserialize_default;
|
|
l = caml_stat_alloc(sizeof(struct custom_operations_list));
|
|
l->ops = ops;
|
|
l->next = custom_ops_final_table;
|
|
custom_ops_final_table = l;
|
|
return ops;
|
|
}
|
|
|
|
extern struct custom_operations caml_int32_ops,
|
|
caml_nativeint_ops,
|
|
caml_int64_ops;
|
|
|
|
void caml_init_custom_operations(void)
|
|
{
|
|
caml_register_custom_operations(&caml_int32_ops);
|
|
caml_register_custom_operations(&caml_nativeint_ops);
|
|
caml_register_custom_operations(&caml_int64_ops);
|
|
}
|