aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
AgeCommit message (Collapse)AuthorFilesLines
2009-06-28Fix type substitution.David Robillard1-11/+16
git-svn-id: http://svn.drobilla.net/resp/tuplr@158 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-27Fix substitution of call argument types to generic function type to work ↵David Robillard1-1/+5
with expressions (e.g. fix inferring return type from the return type of a parameter). git-svn-id: http://svn.drobilla.net/resp/tuplr@154 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-27Add nothing type.David Robillard1-4/+4
Only actually compile down to LLVM if main program is typed. git-svn-id: http://svn.drobilla.net/resp/tuplr@152 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-26More CPS conversion work.David Robillard1-4/+16
git-svn-id: http://svn.drobilla.net/resp/tuplr@150 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-25Sanify AST constructors.David Robillard1-21/+19
git-svn-id: http://svn.drobilla.net/resp/tuplr@149 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-25Stubs for CPS conversion.David Robillard1-4/+22
git-svn-id: http://svn.drobilla.net/resp/tuplr@148 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-24Forward declare CEnv later.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/resp/tuplr@147 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-24Funcs => AFn::ImplsDavid Robillard1-10/+10
git-svn-id: http://svn.drobilla.net/resp/tuplr@146 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Remove useless AType constructor.David Robillard1-14/+0
git-svn-id: http://svn.drobilla.net/resp/tuplr@144 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Tidy.David Robillard1-5/+2
git-svn-id: http://svn.drobilla.net/resp/tuplr@143 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Make backend an object.David Robillard1-12/+14
git-svn-id: http://svn.drobilla.net/resp/tuplr@142 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Clean separation between backend and CEnv (no more CEnv methods defined in ↵David Robillard1-8/+13
llvm.cpp). git-svn-id: http://svn.drobilla.net/resp/tuplr@140 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20More sanification of front/back end separation.David Robillard1-0/+3
git-svn-id: http://svn.drobilla.net/resp/tuplr@138 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Move alloc function to backend.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/resp/tuplr@137 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Shorten AST names to match code names.David Robillard1-6/+6
git-svn-id: http://svn.drobilla.net/resp/tuplr@136 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Tidy.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/resp/tuplr@135 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Move eval and repl to tuplr.cpp (non-backend dependent code).David Robillard1-0/+8
git-svn-id: http://svn.drobilla.net/resp/tuplr@133 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Accurate garbage collection of types without special (kludge) tag.David Robillard1-3/+1
git-svn-id: http://svn.drobilla.net/resp/tuplr@131 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-20Garbage collection of code-allocated stack frames.David Robillard1-12/+23
git-svn-id: http://svn.drobilla.net/resp/tuplr@130 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-19Tidy.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/resp/tuplr@129 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-19Remove crufty cons/car/cdr implementation that doesn't work anyway.David Robillard1-24/+0
git-svn-id: http://svn.drobilla.net/resp/tuplr@128 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-19Work towards garbage collection and explicitly managed stack frames.David Robillard1-2/+6
git-svn-id: http://svn.drobilla.net/resp/tuplr@126 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-19Factor out memory/GC related things from AST to Object.David Robillard1-16/+19
git-svn-id: http://svn.drobilla.net/resp/tuplr@124 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-19Primitive garbage collector for AST nodes.David Robillard1-35/+77
Fix memory leaks. git-svn-id: http://svn.drobilla.net/resp/tuplr@123 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-18Rearrange Error order.David Robillard1-5/+5
git-svn-id: http://svn.drobilla.net/resp/tuplr@122 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-18Make source location mandatory parameter for Error.David Robillard1-2/+2
git-svn-id: http://svn.drobilla.net/resp/tuplr@121 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-18THROW_IF macro.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/resp/tuplr@120 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-18Primitive internal macro system (for implementing sugar).David Robillard1-4/+27
(def (f x) ...) sugar. git-svn-id: http://svn.drobilla.net/resp/tuplr@119 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-06-18Strip trailing whitespace.David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/resp/tuplr@118 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-31Fix polymorphic functions (somewhat).David Robillard1-8/+10
git-svn-id: http://svn.drobilla.net/resp/tuplr@112 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-30Add really primitive pretty printer.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/resp/tuplr@110 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Fix REPL variable addressing.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/resp/tuplr@107 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Abstract away (and prettify/shrink) dynamic_cast of AST objects.David Robillard1-13/+15
git-svn-id: http://svn.drobilla.net/resp/tuplr@104 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Set name of closures so defined functions are emitted with meaningful names.David Robillard1-22/+12
git-svn-id: http://svn.drobilla.net/resp/tuplr@103 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Clean up ATuple, AType, Exp.David Robillard1-25/+19
git-svn-id: http://svn.drobilla.net/resp/tuplr@98 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Chop.David Robillard1-3/+0
git-svn-id: http://svn.drobilla.net/resp/tuplr@97 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Fix polymorphism.David Robillard1-4/+19
git-svn-id: http://svn.drobilla.net/resp/tuplr@95 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Merge 'code' and 'type' environments.David Robillard1-10/+18
Better error reporting for bad function parameters. git-svn-id: http://svn.drobilla.net/resp/tuplr@94 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Make TEnv strictly keyed by ASymbol.David Robillard1-1/+6
Prettier casting. git-svn-id: http://svn.drobilla.net/resp/tuplr@93 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Heh.David Robillard1-3/+0
git-svn-id: http://svn.drobilla.net/resp/tuplr@92 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Tidy.David Robillard1-5/+0
git-svn-id: http://svn.drobilla.net/resp/tuplr@91 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Fix polymorphism when evaluation files.David Robillard1-9/+1
Shut up debug output. git-svn-id: http://svn.drobilla.net/resp/tuplr@90 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-15Fix recursion.David Robillard1-39/+57
git-svn-id: http://svn.drobilla.net/resp/tuplr@89 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-14Lexical addressing, work towards true parametric polymorphism.David Robillard1-62/+148
git-svn-id: http://svn.drobilla.net/resp/tuplr@88 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-13Don't use TEnv.var() where unnecessary (this needs to go away? maybe?)David Robillard1-4/+4
git-svn-id: http://svn.drobilla.net/resp/tuplr@87 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-12Remove useless Log class.David Robillard1-9/+3
git-svn-id: http://svn.drobilla.net/resp/tuplr@86 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-12Tidy.David Robillard1-52/+28
git-svn-id: http://svn.drobilla.net/resp/tuplr@85 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-12Consistent opaque backend types.David Robillard1-16/+15
git-svn-id: http://svn.drobilla.net/resp/tuplr@84 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-12Encapsulate more types.David Robillard1-10/+8
git-svn-id: http://svn.drobilla.net/resp/tuplr@83 ad02d1e2-f140-0410-9f75-f8b11f17cedd
2009-03-12More OOey (and smaller) parser design.David Robillard1-40/+31
git-svn-id: http://svn.drobilla.net/resp/tuplr@82 ad02d1e2-f140-0410-9f75-f8b11f17cedd