Annotation of parser3/src/main/pa_memory.C, revision 1.20
1.2 paf 1: /** @file
2: Parser: memory reference counting classes.
3:
1.19 moko 4: Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
1.18 moko 5: Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>
1.2 paf 6: */
7:
8: #include "pa_sapi.h"
9: #include "pa_common.h"
1.17 moko 10: #include "pa_threads.h"
1.2 paf 11:
1.20 ! moko 12: volatile const char * IDENT_PA_MEMORY_C="$Id: pa_memory.C,v 1.19 2024/11/04 03:53:25 moko Exp $" IDENT_PA_MEMORY_H;
1.9 moko 13:
1.2 paf 14: void *pa_fail_alloc(const char* what, size_t size) {
15: #ifdef PA_DEBUG_DISABLE_GC
16: SAPI::die("out of memory (in pa_fail_alloc)");
17: #else
1.12 moko 18: SAPI::die("out of memory: failed to %s %u bytes. heap_used=%u, heap_free=%u, bytes_since_gc=%u, total_bytes=%u",
19: what, size, GC_get_heap_size(), GC_get_free_bytes(), GC_get_bytes_since_gc(), GC_get_total_bytes());
1.2 paf 20: #endif
21: // never reached
22: return 0;
23: }
1.12 moko 24:
1.17 moko 25: int pa_free_space_divisor = 0;
26:
27: void pa_gc_collect(bool forced){
28: #ifndef PA_DEBUG_DISABLE_GC
29: int divisor = pa_free_space_divisor; // as it can change during collect in multithreaded enviroment
30: if(!divisor) GC_enable();
31: if(!divisor || forced) GC_gcollect();
32: if(!divisor) GC_disable();
33: #endif
34: }
35:
36: void pa_gc_set_free_space_divisor(int divisor){
37: #ifndef PA_DEBUG_DISABLE_GC
38: if(divisor != pa_free_space_divisor){
39: SYNCHRONIZED;
40: if(pa_free_space_divisor){
41: if(!divisor) GC_disable();
42: } else {
43: if(divisor) GC_enable();
44: }
45: if(divisor)
46: GC_set_free_space_divisor(divisor);
47: pa_free_space_divisor = divisor;
48: }
49: #endif
50: }
E-mail: