update
[mono.git] / mono / jit / TODO
1 * 64bit integer mult with overflow checks + test bench
2 * raise exceptions everywhere
3 * exceptions: save/restore floating point state?
4 * implement all floating point instruction in x86.brg, we also need to check
5   the floating branch instruction - some of them seems to be wrong, we need to
6   write better tests for that.
7 * document the functions and variables in the JIT 
8 * implement a register set for FP registers (just count register usage on x86)
9
10 * Calling conventions:
11
12         Implement fast call
13
14 * Overflow conversions:
15
16         Implement CONV_OVF_XXX (constant) variants that emit either
17         loads or exceptions (as we can always tell)
18                 
19 * use short jump opcodes where possible (for backward jumps), will give better
20   performance. 
21
22 * Memory allocation of dynamic code.
23
24         The current interface to generate code and allocate the memory
25         for it is not very nice.
26
27         Use large buffers to allocate temporary code, rather than allocating
28         256 bytes every time, and hoping that it will be enough.