blob: e06c6a6866c8e0f2cfd739adf4d93ed0c6e6a994 [file] [log] [blame]
Chris Lattner3f7fe712001-06-29 05:21:05 +00001* Fix DCE to work better, so that SCCP can show it's true value.
2* Implement ADCE
Chris Lattner0305cfd2001-06-27 23:24:50 +00003* Fix the const pool printer to print out constants in some sort of "sorted"
4 order. Then enable TestOptimizer.sh to diff -sccp output. Currently it
5 doesn't work because the diff fails because of ordering of the constant
6 pool. :(
7* Enable DoConstantPoolMerging to do trivial DCE of constant values.
Chris Lattner0305cfd2001-06-27 23:24:50 +00008* Should provide "castTerminator, castPHI, etc" functions in Instruction, and
9 similar functions in other classes, that effectively do dynamic casts. This
10 would allow code like this:
11 if (I->isTerminator()) {
12 TerminatorInst *TI = (TerminatorInst*)I;
13 ...
14 }
15 to be written as:
16 if (TerminatorInst *TI = I->castTerminatorInst()) {
17 ...
18 }
19* Think about whether edge split SSA form would be useful to do.
20* Inlining should attempt to give block names the same name in the inlined
21 method (using SymbolTable::getUniqueName)
Chris Lattnera4fbb1a2001-06-20 23:09:27 +000022* The dropAllReferences code can be a noop when NDEBUG!!!
Chris Lattner1ffbbf42001-06-20 19:26:00 +000023* Finish xvcg output
Chris Lattnerdb092622001-06-11 15:03:43 +000024* pred/succ iterators on basic blocks don't handle switch statements correctly
Chris Lattner753bfec2001-06-07 16:58:13 +000025* Enhance BB to make predecessor handling easier (to update PHI nodes)
Chris Lattner00950542001-06-06 20:29:01 +000026* Provide a pass that eliminates critical edges from the CFG
Chris Lattnerdb092622001-06-11 15:03:43 +000027* Provide a print pass to print out xvcg format files for vis
Chris Lattner00950542001-06-06 20:29:01 +000028* I need to provide an option to the bytecode loader to ignore memory
29 dependance edges. Instead, the VM would just treat memory operations
30 (load, store, getfield, putfield, call) as pinned instructions.
31* I need to have a way to prevent taking the address of a constant pool
32 reference. You should only be able to take the address of a variable.
33 Maybe taking the address of a constant copies it? What about virtual
34 function tables? Maybe a const pointer would be better...
35* Structures should be accessed something like this: ubyte is ok. Limits
36 structure size to 256 members. This can be fixed later by either:
37 1. adding varient that takes ushort
38 2. Splitting structures into nested structures each of half size
Chris Lattnerdb092622001-06-11 15:03:43 +000039 <float> %f = load *{int, {float}} Str, 1, 0
40 store float %f, *{int, {float}} Str, 1, 0
Chris Lattner00950542001-06-06 20:29:01 +000041* I'm noticing me writing a lot of code that looks like this (dtor material here):
42 ConstPool.dropAllReferences();
43 ConstPool.delete_all();
44 ConstPool.setParent(0);
45 ~ConstPool
46
47* Need a way to attach bytecode block info at various levels of asm code.
48* Rename "ConstantPool" to "ConstPool"
49* Maybe ConstantPool objects should keep themselves sorted as things are
50 inserted.
51* Need to be able to inflate recursive types. %x = { *%x }, %x = %x ()
52* Recognize and save comments in assembly and bytecode format
53* Encode line number table in bytecode (like #line), optional table
54
55* Encode negative relative offsets in the bytecode file
56
57* Implement switch to switch on a constant pool array of type:
58 [{ label, int }] or [label] (lookup vs index switch)
59* Apparently bison has a %pure_parser option. Maybe useful for Assembly/Parser
60
61* Implement a header file that can read either assembly or bytecode, implement
62 a writer that can output either based on what is read with this reader..
63* Implement the following derived types:
64 * structure/record { int %foo, int %bar} or { %foo = int, int }
65 * pointer int *
66 * "packed format", like this: [4 x sbyte]: Packed SIMD datatype
67* Maybe 'tailcall' also?
Chris Lattner00950542001-06-06 20:29:01 +000068* Include a method level bytecode block that defines a mapping between values
69 and registers that defines a minimally register allocated code. This can
70 make me finally address how to encode extensions in assembly.
71* Bytecode reader should use extensions that may or may not be linked into the
72 application to read blocks. Thus an easy way to ignore symbol table info
73 would be to not link in that reader into the app.