Added TODO's

This commit is contained in:
Justin Ethier 2017-01-04 21:07:48 -05:00
parent c143f74341
commit b2fceeeaa8

View file

@ -236,8 +236,11 @@ Heap objects are not relocated, making it easier for the runtime to support nati
It took a long time to research and plan out all of this before it could be implemented. There was a noticeable lull in Github contributions during that time: It took a long time to research and plan out all of this before it could be implemented. There was a noticeable lull in Github contributions during that time:
TODO: get rid of top graph
<img src="images/cyclone-contribs.png"> <img src="images/cyclone-contribs.png">
TODO: create a development section with 7 phases of compiler dev
Anyway, more details are available in a separate [Garbage Collector](Garbage-Collector.md) document. Anyway, more details are available in a separate [Garbage Collector](Garbage-Collector.md) document.
### Heap Data Structures ### Heap Data Structures
@ -339,6 +342,8 @@ Cyclone targets the [R<sup>7</sup>RS-small specification](https://github.com/jus
Some items to consider in the future are: Some items to consider in the future are:
TODO: gambit GC (parallel with multiple collector threads)
- Implement more of r7rs-large, have started on data structures - Implement more of r7rs-large, have started on data structures
- Implement more libraries (TODO: industria for r7rs??) - Implement more libraries (TODO: industria for r7rs??)
- Way to support eggs or other existing libraries? Is that possible or even worth the effort? - Way to support eggs or other existing libraries? Is that possible or even worth the effort?