blob: 6c214bdfc69b1c147e689fe7d21aecbf27a7a005 [file] [log] [blame]
Chris Lattner49fec962001-07-14 06:04:27 +00001* Rewrite the llvm parser/lexer in http://www.antlr.org when time permits.
2 They actually do C++. Imagine that.
Chris Lattnerdb092622001-06-11 15:03:43 +00003* pred/succ iterators on basic blocks don't handle switch statements correctly
Chris Lattner00950542001-06-06 20:29:01 +00004* Need a way to attach bytecode block info at various levels of asm code.
Chris Lattner00950542001-06-06 20:29:01 +00005* Recognize and save comments in assembly and bytecode format
6* Encode line number table in bytecode (like #line), optional table
7
8* Encode negative relative offsets in the bytecode file
9
10* Implement switch to switch on a constant pool array of type:
11 [{ label, int }] or [label] (lookup vs index switch)
Chris Lattnerdc6c1f52002-06-28 22:06:39 +000012* Apparently bison has a %pure_parser option. Maybe useful for AsmParser
Chris Lattner00950542001-06-06 20:29:01 +000013
Chris Lattner00950542001-06-06 20:29:01 +000014* Implement the following derived types:
Chris Lattner00950542001-06-06 20:29:01 +000015 * "packed format", like this: [4 x sbyte]: Packed SIMD datatype
Chris Lattner00950542001-06-06 20:29:01 +000016* Bytecode reader should use extensions that may or may not be linked into the
17 application to read blocks. Thus an easy way to ignore symbol table info
18 would be to not link in that reader into the app.