mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 12:35:05 +02:00
Added notes
This commit is contained in:
parent
a7fce12fdd
commit
2edaffc320
1 changed files with 7 additions and 7 deletions
14
TODO
14
TODO
|
@ -1,5 +1,4 @@
|
||||||
Roadmap:
|
Roadmap:
|
||||||
- Get libraries working (think this is done)?
|
|
||||||
- Add constructs used by the compiler
|
- Add constructs used by the compiler
|
||||||
- Allow compiler to be hosted by Chicken (already working) or itself (self-hosting)
|
- Allow compiler to be hosted by Chicken (already working) or itself (self-hosting)
|
||||||
- Install scripts and instructions, need to be able to deploy this
|
- Install scripts and instructions, need to be able to deploy this
|
||||||
|
@ -9,18 +8,19 @@ Roadmap:
|
||||||
|
|
||||||
Working TODO list:
|
Working TODO list:
|
||||||
|
|
||||||
|
- apply seems broken:
|
||||||
|
cyclone> (apply append '((1) (2) (3)))
|
||||||
|
((1) (2) (3))
|
||||||
|
|
||||||
- Constructs require for self-hosting
|
- Constructs require for self-hosting
|
||||||
|
|
||||||
- vectors - limited use in cgen module - make-vector, vector-set!, vector-ref, list->vector, vector->list
|
- vectors
|
||||||
obvious issues are how to represent the vector (array of objects, I suppose) and how to GC it, including handling mutations
|
- add vector literals. will probably require updating all trans scans
|
||||||
* Working vector TODO-list
|
to handle vectors, though :(
|
||||||
- Start in section 6.8 and add vector functions
|
- Start in section 6.8 and add vector functions
|
||||||
- make-vector should have an optional 'fill' arg in compiled code
|
- make-vector should have an optional 'fill' arg in compiled code
|
||||||
note allocation functions can be functions instead of macros if they accept a
|
note allocation functions can be functions instead of macros if they accept a
|
||||||
cont arg so they do not have to return
|
cont arg so they do not have to return
|
||||||
- add mutation support for vectors. needed for vector-set!
|
|
||||||
- add vector literals. will probably require updating all trans scans
|
|
||||||
to handle vectors, though :(
|
|
||||||
- After all this works, make sure to add tests from r7rs to test suite
|
- After all this works, make sure to add tests from r7rs to test suite
|
||||||
|
|
||||||
- need to change current*port functions to actually have a current port, and other i/o operations to use the correct current port
|
- need to change current*port functions to actually have a current port, and other i/o operations to use the correct current port
|
||||||
|
|
Loading…
Add table
Reference in a new issue