scheme.git
2019-08-01 Luke LauAdd clash constraints when merging typechecker-refactor
2019-08-01 Luke LauWIP on typechecker refactor
2019-07-30 Luke LauFix starting off with the wrong stack index
2019-07-30 Luke LauMake base pointer to point to the previous frames base...
2019-07-30 Luke LauAdd notes on typechecking
2019-07-30 Luke LauMerge branch 'master' of lukelau.me:/srv/git/scheme
2019-07-30 Luke LauAdd support for recursive let binding codegen
2019-07-30 Luke LauAdd notes on ownership
2019-07-30 Luke LauAdd pow test
2019-07-29 Luke LauAdd a test for equality
2019-07-29 Luke LauReset label and lambda counters on compile
2019-07-29 Luke LauFix = codegen
2019-07-29 Luke LauFix graph not considering original binds when recursing
2019-07-29 Luke LauUpdate recursive test to simpler example
2019-07-29 Luke LauSubstitute constraints after recursive call
2019-07-29 Luke LauAdd ast-find
2019-07-29 Luke LauRefactor unify
2019-07-29 Luke LauAlways use PIC for static string codegen
2019-07-29 Luke LauStart thinking about heap allocation
2019-07-29 Luke LauAdd dodgy uname based host OS detection
2019-07-28 Luke LauSubstitute only the variables in the scc
2019-07-28 Luke LauBreak up lets into SCCs before typechecking
2019-07-28 Luke LauAdd some documentation to the abi
2019-07-27 Luke LauAdd a bunch more tests
2019-07-27 Luke LauFill in missing builtin lambda info
2019-07-27 Luke LauFix overwriting preserved base pointer in prolog
2019-07-27 Luke LauAdd new test
2019-07-27 Luke LauAllocate and pass closures on the heap
2019-07-24 Luke LauMerge branch 'master' of lukelau.me:/srv/git/scheme
2019-07-24 Luke LauMore WIP on closures
2019-07-24 Luke LauAdd WIP on passing about closures
2019-07-24 Luke LauAllocate heap at the start
2019-07-24 Luke LauFix string addressing and clobbered register
2019-07-24 Luke LauFix static string addressing
2019-07-23 Luke LauAdd darwin target support
2019-07-23 Luke LauMake the ABI respect stack etc.
2019-07-23 Luke LauUpdate main for codegen changes
2019-07-23 Luke LauAdd strings and print primitive
2019-07-23 Luke LauRemove C dependency, directly emit _start
2019-07-23 Luke LauCodegen if statements
2019-07-23 Luke LauAdd ast-traverse helper
2019-07-22 Luke LauRefactor ast "pattern matching" to a single function
2019-07-22 Luke LauAdd recursive let-bindings
2019-07-22 Luke LauFix some normalization issues, add codegen tests
2019-07-22 Luke LauFirst pass at lambdas and closures
2019-07-21 Luke LauAdd pretty printing for types
2019-07-21 Luke LauAdd more binary ops
2019-07-20 Luke LauResolve types in lambda arguments, recursively substitute
2019-07-20 Luke LauNormalize lambdas to be single arguments only
2019-07-17 Luke LauSplit out compiler into codegen and main
2019-07-17 Luke LauFix up codegen-add for vars
2019-07-17 Luke LauAdd let bindings
2019-07-17 Luke LauAdd .gitignore
2019-07-17 Luke LauAdd consolidation, tie up with typechecker
2019-07-17 Luke LauStart typechecker