From b34e4277c0e3b3c2c7431101dc82161a39e1d361 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 19 Jun 2009 19:20:42 +0000 Subject: Work towards garbage collection and explicitly managed stack frames. git-svn-id: http://svn.drobilla.net/resp/tuplr@126 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- gclib.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 gclib.cpp (limited to 'gclib.cpp') diff --git a/gclib.cpp b/gclib.cpp new file mode 100644 index 0000000..3181dcd --- /dev/null +++ b/gclib.cpp @@ -0,0 +1,45 @@ +/* Tuplr: A programming language + * Copyright (C) 2008-2009 David Robillard + * + * Tuplr is free software: you can redistribute it and/or modify it under + * the terms of the GNU Affero General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. + * + * Tuplr 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 Affero General + * Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Tuplr. If not, see . + */ + +#include "tuplr.hpp" +#include +#include +#include + +extern "C" { + +void +tuplr_gc_initialize(unsigned heapSize) +{ + //printf("LLVM GC INIT %u\n", heapSize); +} + +void* +tuplr_gc_allocate(unsigned size) +{ + //printf("LLVM GC ALLOC %u\n", size); + return malloc(size); +} + +void +tuplr_gc_collect() +{ + //printf("LLVM GC COLLECT\n"); +} + +} + -- cgit v1.2.1