aboutsummaryrefslogtreecommitdiffstats
path: root/gclib.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-19 19:20:42 +0000
committerDavid Robillard <d@drobilla.net>2009-06-19 19:20:42 +0000
commitb34e4277c0e3b3c2c7431101dc82161a39e1d361 (patch)
tree1aedd75de97aecc2b3b08f0bd6ceb60170a6b0c3 /gclib.cpp
parent27bcb3292bde166a98829a63ff177b6831c46f1f (diff)
downloadresp-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.cpp45
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");
+}
+
+}
+