/* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * * Mes is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * Mes is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Mes. If not, see . */ #include SCM gc_up_arena () ///((internal)) { ARENA_SIZE *= 2; GC_SAFETY *= 2; #if _POSIX_SOURCE void *p = realloc (g_cells-1, 2*ARENA_SIZE*sizeof(struct scm)); #else char *p = g_cells; p = realloc (p-sizeof (struct scm), 2*ARENA_SIZE*sizeof(struct scm)); #endif #if _POSIX_SOURCE if (!p) error (cell_symbol_system_error, cons (MAKE_STRING (cstring_to_list (strerror (errno))), MAKE_NUMBER (g_free))); g_cells = (struct scm*)p; g_cells++; #endif gc_init_news (); return 0; } SCM gc_flip () ///((internal)) { struct scm *cells = g_cells; g_cells = g_news; g_news = cells; if (g_debug > 2) { eputs (";;; => jam["); eputs (itoa (g_free)); eputs ("]\n"); } return g_stack; } SCM gc_copy (SCM old) ///((internal)) { if (TYPE (old) == TBROKEN_HEART) return g_cells[old].car; SCM new = g_free++; g_news[new] = g_cells[old]; if (NTYPE (new) == TVECTOR) { NVECTOR (new) = g_free; for (int i=0; i ARENA_SIZE) gc_pop_frame (gc (gc_push_frame ())); return cell_unspecified; } SCM gc () { if (g_debug == 2) eputs ("."); if (g_debug > 2) { eputs (";;; gc["); eputs (itoa (g_free)); eputs (":"); eputs (itoa (ARENA_SIZE - g_free)); eputs ("]..."); } g_free = 1; if (g_cells < g_news && ARENA_SIZE < MAX_ARENA_SIZE) gc_up_arena (); for (int i=g_free; i 3) { eputs ("new="); eputs (itoa (new)); eputs ("\n"); } g_stack = new; return gc_loop (1); }