factor/TODO.FACTOR.txt

130 lines
4.2 KiB
Plaintext
Raw Normal View History

2005-05-12 01:02:39 -04:00
<magnus--> http://developer.apple.com/technotes/tn2004/tn2123.html#SECLIMITATIONS
<magnus--> http://www.caddr.com/macho/archives/sbcl-devel/2005-3/4742.html
<magnus--> not *too* long
<magnus--> but we'd need to longjmp the main thread from the exception handler thread
<magnus--> or cause a signal in the main thread
<magnus--> http://www.caddr.com/macho/archives/sbcl-devel/2005-3/4764.html
<magnus--> http://clozure.com/cgi-bin/viewcvs.cgi/ccl/lisp-kernel/lisp-exceptions.c?rev=1.9&content-type=text/vnd.viewcvs-markup
2005-06-09 19:49:31 -04:00
<erg> if write returns -1 and errno == EINTR then it's not a real error, you can try again
2005-05-17 16:13:08 -04:00
- single-stepper and variable access: wrong namespace?
- investigate if COPYING_GEN needs a fix
2005-05-10 22:30:58 -04:00
- faster layout
2005-06-10 16:08:00 -04:00
- http keep alive, and range get
2005-05-10 22:30:58 -04:00
- sleep word
- fix i/o on generic x86/ppc unix
- alien primitives need a more general input type
- 2map slow with lists
- nappend: instead of using push, enlarge the sequence with set-length
then add set the elements with set-nth
2005-05-10 22:30:58 -04:00
- faster sequence operations
2005-05-22 22:54:14 -04:00
- generic some? all? memq? fiber?
- index and index* are very slow with lists
- code walker & exceptions
- if two tasks write to a unix stream, the buffer can overflow
2005-05-23 19:14:29 -04:00
- rename prettyprint* to pprint, prettyprint to pp
- reader syntax for arrays, byte arrays, displaced aliens
- dipping seq-2nmap, seq-2each
- array sort
- images saved from plugin do not work
2005-05-05 16:51:38 -04:00
- generic skip
2005-05-09 02:34:15 -04:00
- inference needs to be more robust with heavily recursive code
2005-05-10 22:30:58 -04:00
- investigate orphans
+ plugin:
2005-05-03 04:40:13 -04:00
- word preview for parsing words
2005-05-22 22:54:14 -04:00
- plugin: supportsBackspace
- if external factor is down, don't add tons of random shit to the
dictionary
2005-04-30 17:17:10 -04:00
2005-02-27 16:51:12 -05:00
+ ui:
2005-05-22 22:54:14 -04:00
- tiled window manager
- faster repaint
- console with presentations
2005-04-07 18:54:02 -04:00
- ui browser
2005-04-27 01:40:09 -04:00
- auto-updating inspector, mirrors abstraction
2005-03-02 21:26:11 -05:00
- mouse enter onto overlapping with interior, but not child, gadget
- rollovers broken in inspector
2005-03-01 22:11:08 -05:00
- menu dragging
2005-02-27 16:51:12 -05:00
- fix up the min thumb size hack
2005-03-10 22:52:55 -05:00
- frame gap
2005-02-27 16:51:12 -05:00
2005-04-05 22:18:36 -04:00
+ ffi:
2004-12-02 22:44:36 -05:00
2005-05-05 03:12:37 -04:00
- smarter out parameter handling
- clarify powerpc passing of value struct parameters
- box/unbox_signed/unsigned_8
2005-02-27 16:54:09 -05:00
- ffi unicode strings: null char security hole
- utf16 string boxing
2005-03-29 20:34:29 -05:00
- value type structs
- bitfields in C structs
2005-04-16 00:23:27 -04:00
- setting struct members that are not *
2005-03-29 20:34:29 -05:00
2005-04-07 18:54:02 -04:00
+ compiler:
2005-03-29 20:34:29 -05:00
2005-06-10 16:08:00 -04:00
- powerpc: float ffi parameters
- fix fixnum<< and /i overflow on PowerPC
2005-05-22 22:54:14 -04:00
- simplifier:
- kill replace after a peek
- merge inc-d's across VOPs that don't touch the stack
2005-05-10 22:30:58 -04:00
- [ EAX 0 ] --> [ EAX ]
- intrinsic char-slot set-char-slot integer-slot set-integer-slot
2005-03-29 20:34:29 -05:00
- [ [ dup call ] dup call ] infer hangs
2005-02-25 17:25:40 -05:00
- more accurate types for various words
- declarations
- type inference fails with some assembler words;
displaced, register and other predicates need to inherit from list
not cons, and need stronger branch partial eval
- optimize away arithmetic dispatch
- the invalid recursion form case needs to be fixed, for inlines too
- #jump-f #jump-f-label
2005-03-23 22:49:40 -05:00
- re-introduce #target-label => #target optimization
2004-08-22 17:28:31 -04:00
2005-04-07 18:54:02 -04:00
+ sequences
2005-05-22 22:54:14 -04:00
- specialized arrays
2005-05-03 04:40:13 -04:00
- list map, subset: not tail recursive
2005-05-18 16:26:22 -04:00
- phase out sbuf-append
2005-04-07 18:54:02 -04:00
2004-10-27 21:21:31 -04:00
+ kernel:
- delegating generic words with a non-standard picker
- powerpc has weird callstack residue
- instances: do not use make-list
2005-04-11 23:05:05 -04:00
- unions containing tuples do not work properly
2005-04-07 18:54:02 -04:00
- method doc strings
- clean up metaclasses
2005-02-19 23:25:21 -05:00
- vectors: ensure its ok with bignum indices
2005-02-27 16:54:09 -05:00
- code gc
- doc comments of generics
2005-04-24 23:02:19 -04:00
- M: object should not inhibit delegation
2005-05-03 04:40:13 -04:00
- renumber types appopriately
2005-03-21 20:53:26 -05:00
+ i/o:
2005-05-03 04:40:13 -04:00
- faster stream-copy
- reading and writing byte arrays
2005-04-27 01:47:57 -04:00
- merge unix and win32 io where appropriate
- unix io: handle \n\r and \n\0
- separate words for writing characters and strings
- perhaps:
GENERIC: set-style ( style stream -- )
GENERIC: stream-write
GENERIC: stream-write-char
- stream server can hang because of exception handler limitations
- better i/o scheduler
- unify unparse and prettyprint
2005-05-03 04:40:13 -04:00
- utf16, utf8 encoding
2005-04-05 22:18:36 -04:00
+ nice to have libraries:
- regexps
- XML
- real Unicode support (strings are already 16 bits and can be extended
to 21 if the need arises, but we need full character classification
predicates, comparison, case conversion, sorting...)
- full Win32 binding
- Cairo binding