wingo pushed a change to branch master in repository guile. from eb9d442 Add "cps2" experiment new 6ffb6e6 Add printers for <intmap> and <transient-intmap> new 6485e89 Beginnings of CPS2 language. new 773595f Add compiler from tree-il to cps2
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: .dir-locals.el | 6 + module/Makefile.am | 8 + module/language/cps/intmap.scm | 12 + module/language/cps2.scm | 362 ++++++++++++ module/language/cps2/compile-cps.scm | 102 ++++ module/language/cps2/renumber.scm | 218 ++++++++ module/language/cps2/utils.scm | 228 ++++++++ module/language/tree-il/compile-cps2.scm | 892 ++++++++++++++++++++++++++++++ 8 files changed, 1828 insertions(+), 0 deletions(-) create mode 100644 module/language/cps2.scm create mode 100644 module/language/cps2/compile-cps.scm create mode 100644 module/language/cps2/renumber.scm create mode 100644 module/language/cps2/utils.scm create mode 100644 module/language/tree-il/compile-cps2.scm