2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / jit / TODO
index deae2f38ff2ff9f7ecb31ad71675aa92b4c59099..ab11a9232d910ad88bb7911d2dd5a745645e6f53 100644 (file)
@@ -1,18 +1,12 @@
-* impl. marshalling attributes for pinvoke
+* 64bit integer mult with overflow checks + test bench
 * raise exceptions everywhere
-* implement all those CONV and CONV_OVF opcodes
-* exceptions: handle exceptions inside unmanaged code
-* exceptions: save/restore floating point state
+* exceptions: save/restore floating point state?
 * implement all floating point instruction in x86.brg, we also need to check
   the floating branch instruction - some of them seems to be wrong, we need to
   write better tests for that.
-* correctly align value types on the stack and in arrays
 * document the functions and variables in the JIT 
 * implement a register set for FP registers (just count register usage on x86)
 
-* inline all calls in System.Math::*, we should use coprozessor instructions
-  directly whenever possible. 
-
 * Calling conventions:
 
        Implement fast call
 
        Implement CONV_OVF_XXX (constant) variants that emit either
        loads or exceptions (as we can always tell)
-       
-       
-* thread does not work with the jit (mcs/tests/test-19.cs)??
-
+               
 * use short jump opcodes where possible (for backward jumps), will give better
   performance. 
+
+* Memory allocation of dynamic code.
+
+       The current interface to generate code and allocate the memory
+       for it is not very nice.
+
+       Use large buffers to allocate temporary code, rather than allocating
+       256 bytes every time, and hoping that it will be enough.  
\ No newline at end of file