=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/parse/gc_risa.c,v retrieving revision 1.2 retrieving revision 1.12 diff -u -p -r1.2 -r1.12 --- OpenXM_contrib2/asir2000/parse/gc_risa.c 2005/11/12 08:10:56 1.2 +++ OpenXM_contrib2/asir2000/parse/gc_risa.c 2013/06/13 07:45:28 1.12 @@ -1,15 +1,24 @@ -#include "private/gc_priv.h" +/* $OpenXM: OpenXM_contrib2/asir2000/parse/gc_risa.c,v 1.11 2012/12/17 07:20:45 noro Exp $ */ + +#if defined(VISUAL) +#include "private/gcconfig.h" +#endif +#include "gc.h" #include void error(char *); int *StackBottom; +int in_gc, caught_intr; void *Risa_GC_malloc(size_t d) { void *ret; + in_gc = 1; ret = (void *)GC_malloc(d); + in_gc = 0; + if ( caught_intr ) { caught_intr = 0; int_handler(); } if ( !ret ) error("GC_malloc : failed to allocate memory"); return ret; @@ -19,35 +28,66 @@ void *Risa_GC_malloc_atomic(size_t d) { void *ret; + in_gc = 1; ret = (void *)GC_malloc_atomic(d); + in_gc = 0; + if ( caught_intr ) { caught_intr = 0; int_handler(); } if ( !ret ) error("GC_malloc_atomic : failed to allocate memory"); return ret; } +void *Risa_GC_malloc_atomic_ignore_off_page(size_t d) +{ + void *ret; + + in_gc = 1; + ret = (void *)GC_malloc_atomic_ignore_off_page(d); + in_gc = 0; + if ( caught_intr ) { caught_intr = 0; int_handler(); } + if ( !ret ) + error("GC_malloc_atomic_ignore_off_page : failed to allocate memory"); + return ret; +} + void *Risa_GC_realloc(void *p,size_t d) { void *ret; + in_gc = 1; ret = (void *)GC_realloc(p,d); + in_gc = 0; + if ( caught_intr ) { caught_intr = 0; int_handler(); } if ( !ret ) error("GC_realloc : failed to reallocate memory"); return ret; } -int get_heapsize() +void Risa_GC_free(void *p) { - return GC_heapsize; + in_gc = 1; + GC_free(p); + in_gc = 0; + if ( caught_intr ) { caught_intr = 0; int_handler(); } } -long get_allocwords() +size_t get_heapsize() { - return GC_words_allocd_before_gc + GC_words_allocd; + return GC_get_heap_size(); } -double gctime; -static double gcstart,asir_start_time; +#if !defined(BYTES_TO_WORDS) +#define BYTES_TO_WORDS(x) ((x)>>2) +#endif +size_t get_allocwords() +{ + size_t n = GC_get_total_bytes(); + return BYTES_TO_WORDS(n); /* bytes to words */ +} + +static double asir_start_time; + double get_clock(), get_rtime(), get_current_time(); void rtime_init() @@ -67,8 +107,6 @@ double get_rtime() return get_current_time() - asir_start_time; } -#if defined(THINK_C) || defined(__MWERKS__) || defined(VISUAL) || defined(MSWIN32) - #if defined(VISUAL) #include @@ -124,7 +162,7 @@ double get_clock() } else return get_current_time(); } -#else +#elif defined(THINK_C) || defined(__MWERKS__) || defined(MSWIN32) double get_current_time() { return get_clock(); @@ -137,8 +175,6 @@ double get_clock() c = clock(); return (double)c/(double)CLOCKS_PER_SEC; } -#endif - #else #include @@ -165,7 +201,6 @@ double get_clock() } #else -#include #include double get_clock() @@ -181,13 +216,32 @@ double get_clock() #endif #endif -void GC_timerstart() { - gcstart = get_clock(); +#if !defined(NO_ASIR_GC) +extern int GC_free_space_numerator; + +void Risa_GC_get_adj(int *nm, int *dn) { + *nm = GC_free_space_numerator; + *dn = GC_free_space_divisor; } -void GC_timerstop() { - gctime += get_clock() - gcstart; +void Risa_GC_set_adj(int nm, int dn) { + GC_free_space_numerator = nm; + GC_free_space_divisor = dn; } +#else +void Risa_GC_get_adj(int *nm, int *dn) { + *nm = 1; + *dn = GC_free_space_divisor; +} + +void Risa_GC_set_adj(int nm, int dn) { + GC_free_space_divisor = dn/nm; +} + +double GC_get_gctime() { + return 0.0; +} +#endif #if defined(MSWIN32) && !defined(VISUAL) #include