diff options
author | David Robillard <d@drobilla.net> | 2009-06-19 19:20:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-19 19:20:42 +0000 |
commit | b34e4277c0e3b3c2c7431101dc82161a39e1d361 (patch) | |
tree | 1aedd75de97aecc2b3b08f0bd6ceb60170a6b0c3 /gclib.cpp | |
parent | 27bcb3292bde166a98829a63ff177b6831c46f1f (diff) | |
download | resp-b34e4277c0e3b3c2c7431101dc82161a39e1d361.tar.gz resp-b34e4277c0e3b3c2c7431101dc82161a39e1d361.tar.bz2 resp-b34e4277c0e3b3c2c7431101dc82161a39e1d361.zip |
Work towards garbage collection and explicitly managed stack frames.
git-svn-id: http://svn.drobilla.net/resp/tuplr@126 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'gclib.cpp')
-rw-r--r-- | gclib.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
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 <dave@drobilla.net> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +#include "tuplr.hpp" +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +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"); +} + +} + |