aboutsummaryrefslogtreecommitdiffstats
path: root/llvm.cpp
AgeCommit message (Expand)AuthorFilesLines
2009-06-28Fix type substitution.David Robillard1-8/+31
2009-06-27Better error messages.David Robillard1-3/+4
2009-06-27Re-enable other tests (poly, nest).David Robillard1-5/+2
2009-06-27Fix substitution of call argument types to generic function type to work with...David Robillard1-2/+19
2009-06-27Add nothing type.David Robillard1-8/+13
2009-06-27More CPS conversion work.David Robillard1-1/+2
2009-06-26More CPS conversion work.David Robillard1-1/+1
2009-06-25Sanify AST constructors.David Robillard1-1/+1
2009-06-24Funcs => AFn::ImplsDavid Robillard1-4/+4
2009-06-20Make backend an object.David Robillard1-94/+89
2009-06-20Tidy.David Robillard1-3/+4
2009-06-20Clean separation between backend and CEnv (no more CEnv methods defined in ll...David Robillard1-64/+31
2009-06-20Remove redundant module pointer.David Robillard1-3/+1
2009-06-20More sanification of front/back end separation.David Robillard1-67/+63
2009-06-20Move alloc function to backend.David Robillard1-9/+12
2009-06-20Shorten AST names to match code names.David Robillard1-9/+9
2009-06-20Tidy.David Robillard1-7/+1
2009-06-20Fix building with explicit stack frames.David Robillard1-9/+7
2009-06-20Move eval and repl to tuplr.cpp (non-backend dependent code).David Robillard1-118/+1
2009-06-20Better abstraction for low-level code generation stuff (make repl and eval no...David Robillard1-80/+82
2009-06-20Accurate garbage collection of types without special (kludge) tag.David Robillard1-0/+6
2009-06-20Garbage collection of code-allocated stack frames.David Robillard1-15/+26
2009-06-19Remove crufty cons/car/cdr implementation that doesn't work anyway.David Robillard1-88/+0
2009-06-19Add quick kludgey test suite.David Robillard1-2/+3
2009-06-19Work towards garbage collection and explicitly managed stack frames.David Robillard1-19/+82
2009-06-19Factor out memory/GC related things from AST to Object.David Robillard1-4/+4
2009-06-19Primitive garbage collector for AST nodes.David Robillard1-16/+38
2009-06-18Rearrange Error order.David Robillard1-12/+12
2009-06-18Make source location mandatory parameter for Error.David Robillard1-9/+9
2009-06-18THROW_IF macro.David Robillard1-5/+5
2009-06-18Strip trailing whitespace.David Robillard1-15/+15
2009-03-31Fix polymorphic functions (somewhat).David Robillard1-6/+4
2009-03-15Fix functions with several expressions in their body.David Robillard1-8/+9
2009-03-15Fix REPL variable addressing.David Robillard1-3/+5
2009-03-15Let LLVM generate names.David Robillard1-1/+1
2009-03-15Remove stupid maybeLookup function.David Robillard1-21/+8
2009-03-15Abstract away (and prettify/shrink) dynamic_cast of AST objects.David Robillard1-10/+9
2009-03-15Set name of closures so defined functions are emitted with meaningful names.David Robillard1-0/+3
2009-03-15Redundant check.David Robillard1-2/+0
2009-03-15Remove duplicated code.David Robillard1-50/+25
2009-03-15Remove unnecessary code.David Robillard1-13/+0
2009-03-15Clean up ATuple, AType, Exp.David Robillard1-5/+5
2009-03-15Fix comparison operations with booleans.David Robillard1-15/+15
2009-03-15Fix polymorphism.David Robillard1-10/+15
2009-03-15Merge 'code' and 'type' environments.David Robillard1-3/+3
2009-03-15Make TEnv strictly keyed by ASymbol.David Robillard1-17/+6
2009-03-15Tidy.David Robillard1-3/+2
2009-03-15Fix polymorphism when evaluation files.David Robillard1-7/+4
2009-03-15Fix recursion.David Robillard1-70/+88
2009-03-14Lexical addressing, work towards true parametric polymorphism.David Robillard1-54/+125