update
[qemu] / TODO
1 short term:
2 ----------
3 - debug option in 'configure' script + disable -fomit-frame-pointer
4 - Precise VGA timings for old games/demos (malc patch)
5 - merge PIC spurious interrupt patch
6 - merge VNC keyboard patch
7 - merge Solaris patch
8 - warning for OS/2: must not use 128 MB memory (merge bochs cmos patch ?)
9 - config file (at least for windows/Mac OS X)
10 - commit message if execution of code in IO memory
11 - update doc: PCI infos.
12 - VNC patch + Synaptic patch.
13 - basic VGA optimizations
14 - physical memory cache (reduce qemu-fast address space size to about 32 MB)
15 - better code fetch (different exception handling + CS.limit support)
16 - do not resize vga if invalid size.
17 - avoid looping if only exceptions
18 - cycle counter for all archs
19 - TLB code protection support for PPC
20 - see openMosix Doc 
21 - disable SMC handling for ARM/SPARC/PPC (not finished)
22 - see undefined flags for BTx insn
23 - user/kernel PUSHL/POPL in helper.c
24 - keyboard output buffer filling timing emulation
25 - return UD exception if LOCK prefix incorrectly used
26 - test ldt limit < 7 ?
27 - tests for each target CPU
28 - fix CCOP optimisation
29 - fix all remaining thread lock issues (must put TBs in a specific invalid
30   state, find a solution for tb_flush()).
31 - fix arm fpu rounding (at least for float->integer conversions)
32 - SMP support
33
34 ppc specific:
35 ------------
36 - TLB invalidate not needed if msr_pr changes
37 - SPR_ENCODE() not useful
38 - enable shift optimizations ?
39
40 lower priority:
41 --------------
42 - more friendly BIOS (logo)
43 - int15 ah=86: use better timing
44 - suppress shift_mem ops
45 - fix some 16 bit sp push/pop overflow (pusha/popa, lcall lret)
46 - optimize FPU operations (evaluate x87 stack pointer statically)
47 - add IPC syscalls
48 - use -msoft-float on ARM
49 - use kernel traps for unaligned accesses on ARM ?
50 - handle rare page fault cases (in particular if page fault in helpers or
51   in syscall emulation code).
52 - fix thread stack freeing (use kernel 2.5.x CLONE_CHILD_CLEARTID)
53 - more syscalls (in particular all 64 bit ones, IPCs, fix 64 bit
54   issues, fix 16 bit uid issues)
55 - use page_unprotect_range in every suitable syscall to handle all
56   cases of self modifying code.
57 - use gcc as a backend to generate better code (easy to do by using
58   op-i386.c operations as local inline functions).