factor/TODO.FACTOR.txt

117 lines
3.7 KiB
Plaintext
Raw Normal View History

2005-07-20 16:03:03 -04:00
+ ui:
- fix up the min thumb size hack
- long lines of text fail in draw-surface
2005-08-26 21:42:43 -04:00
- only redraw dirty gadgets
- faster mouse tracking
2005-08-25 15:27:38 -04:00
- off-by-one error in pick-up?
2005-08-24 21:52:10 -04:00
- closing ui does not stop timers
- adding/removing timers automatically for animated gadgets
- theme abstraction in ui
2005-07-20 16:03:03 -04:00
- find out why so many small bignums get consed
- use incremental strategy for all pack layouts where possible
- multiline editing in listener
- get stuff in examples dir running in the ui
- text selection
- clipboard support
2005-07-20 16:03:03 -04:00
+ tutorial:
- multiline code snippets
- s-expression text styling language
- word wrap
+ misc
- sigsegv handling on OS X:
2005-04-30 17:17:10 -04:00
http://developer.apple.com/technotes/tn2004/tn2123.html#SECLIMITATIONS
http://www.caddr.com/macho/archives/sbcl-devel/2005-3/4742.html
http://www.caddr.com/macho/archives/sbcl-devel/2005-3/4764.html
http://clozure.com/cgi-bin/viewcvs.cgi/ccl/lisp-kernel/lisp-exceptions.c?rev=1.9&content-type=text/vnd.viewcvs-markup
2005-02-27 16:51:12 -05:00
- http keep alive, and range get
- code walker & exceptions
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-09-01 16:45:36 -04:00
- C structs, enums, unions: use new-style string mode parsing
2005-08-22 14:29:43 -04:00
- alien/c-types.factor is ugly
2005-05-05 03:12:37 -04:00
- smarter out parameter handling
- clarify powerpc passing of value struct parameters
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-08-30 03:31:20 -04:00
- callbacks
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-09-07 17:21:11 -04:00
- remove dead code after a 'throw'
- when doing comparison with one arg being a float, inline method
- investigate overzealous math inlining
- shuffles: eliminate dead loads
- floating point intrinsics
2005-08-22 14:29:43 -04:00
- flushing optimization
2005-09-05 17:14:15 -04:00
- fix fixnum/mod overflow on PowerPC
- eliminate simplifier
- intrinsic char-slot set-char-slot
2005-03-29 20:34:29 -05:00
- [ [ dup call ] dup call ] infer hangs
2005-02-25 17:25:40 -05:00
- the invalid recursion form case needs to be fixed, for inlines too
- recursion is iffy; if the stack at the recursive call doesn't match
up, throw an error
2005-09-05 17:14:15 -04:00
- remove %fixnum-</<=/>/>=, always use %jump-* form
- remove %jump-t, use %jump-eq? f instead
2004-08-22 17:28:31 -04:00
2004-10-27 21:21:31 -04:00
+ kernel:
2005-09-05 18:00:20 -04:00
- better handling of random arrangements of html words when
prettyprinting
2005-09-03 22:28:46 -04:00
- friendlier .factor-rc load error handling
2005-09-01 16:37:32 -04:00
- reader syntax for arrays, byte arrays, displaced aliens
- out of memory error when printing global namespace
2005-08-25 15:27:38 -04:00
- first time hash/vector is grown, set size to something big
- merge timers with sleeping tasks
- what about tasks and timers between image restarts
2005-08-22 16:01:13 -04:00
- split: return vectors
2005-08-14 01:17:25 -04:00
- specialized arrays
- there is a problem with hashcodes of words and bootstrapping
- delegating generic words with a non-standard picker
- powerpc has weird callstack residue
- instances: do not use make-list
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
2005-09-01 16:45:36 -04:00
- set-path: iterative
- parse-command-line: no unswons of cli args
- >c/c>: vector stack
- tag: move from kernel-internals to kernel
- word: when bootstrapping, 'word' var is not cleared
- search: slow
- investigate if rehashing on startup is really necessary
- vectorize >n, n>, (get)
- mutable strings simplifying string operarations
- 2each, find*, subset are ugly
- map and 2map duplicate logic
2005-03-21 20:53:26 -05:00
+ i/o:
2005-08-22 14:29:43 -04:00
- buffer: instantiating aliens
2005-05-03 04:40:13 -04:00
- faster stream-copy
- reading and writing byte arrays
- stream server can hang because of exception handler limitations
- better i/o scheduler
2005-05-03 04:40:13 -04:00
- utf16, utf8 encoding
- fix i/o on generic x86/ppc unix
- if two tasks write to a unix stream, the buffer can overflow
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