After converting assert(0) to LLVM_UNREACHABLE we lost file/line location.
[oota-llvm.git] / tools / llvm-mc /
2009-07-13 Kevin EnderbyAdded llvm-mc support for parsing the .abort directive.
2009-07-13 Kevin Enderbyadd llvm-mc support for parsing the .subsections_via_sy...
2009-07-11 Chris Lattnersilence vc++ warning.
2009-07-10 Chris Lattneradd support for .zerofill, patch by Kevin Enderby!
2009-07-09 Chris Lattneradd llvm-mc support for parsing the .lcomm directive...
2009-07-07 Chris LattnerImplement parsing support for the .comm directive....
2009-07-02 Chris Lattnerimplement error recovery in the llvm-mc parser. Feel...
2009-07-02 Daniel Dunbarllvm-mc/x86: Fix various nit-picky bugs in displacement...
2009-07-02 Daniel Dunbarllvm-mc/x86: Fix bug in disambiguation of displacement...
2009-07-02 Daniel Dunbarllvm-mc/x86: Factor out ParseX86Register.
2009-07-02 Daniel Dunbarllvm-mc/x86: Rename X86Operand::ScaleReg to IndexReg...
2009-07-01 Daniel Dunbarllvm-mc: Add some more doxyments.
2009-07-01 Daniel Dunbarllvm-mc: Fill in the rest of tokens for 'as-lex' mode.
2009-07-01 Daniel DunbarRename MCValue::isConstant to isAbsolute.
2009-07-01 Chris Lattneradd some of the new tokens, others are still missing.
2009-07-01 Daniel Dunbarllvm-mc: Emit parsed instructions to the MCStreamer.
2009-06-30 Daniel Dunbarllvm-mc: Introduce method to match a parsed x86 instruc...
2009-06-30 Daniel Dunbarllvm-mc: Accept relocatable expressions when parsing...
2009-06-30 Daniel Dunbarllvm-mc: Symbols in a relocatable expression of the...
2009-06-30 Daniel DunbarSuppress may-be-used-uninitialized warning.
2009-06-30 Douglas GregorFix CMake build
2009-06-30 Daniel Dunbarllvm-mc: Accept relocatable expressions for .org, assig...
2009-06-30 Daniel Dunbarllvm-mc: Rewrite binary subtraction for relocatable...
2009-06-30 Daniel Dunbarllvm-mc: Evaluation for relocatable expressions.
2009-06-30 Daniel DunbarNormalize SourceMgr messages.
2009-06-30 Daniel Dunbarllvm-mc: Parse symbol attribute directives.
2009-06-29 Daniel Dunbarllvm-mc: Parse .{,b,p2}align{,w,l} directives.
2009-06-29 Daniel Dunbarllvm-mc: Diagnose misuse (mix) of defined symbols and...
2009-06-29 Daniel Dunbarllvm-mc: Recognize C++ style comments.
2009-06-29 Daniel Dunbarllvm-mc: Recognize C++ style comments.
2009-06-29 Daniel DunbarFix uninitialized variable warning.
2009-06-29 Daniel DunbarMC: Improve expression parsing and implement evaluation...
2009-06-29 Daniel DunbarMC: Improve expression parsing and implement evaluation...
2009-06-25 Daniel DunbarMC: Parse .org directives.
2009-06-25 Daniel DunbarMC: Parse .set and assignments.
2009-06-24 Daniel DunbarBasic .s parsing for .asci[iz], .fill, .space, {.byte...
2009-06-24 Chris Lattnerimplement a bunch of synonyms for section switching.
2009-06-24 Chris Lattneradd support for parsing and emitting .section directive...
2009-06-24 Chris Lattneradd trivial support for passing label definitions throu...
2009-06-24 Chris Lattnercreate an MCStreamer and provide it to AsmParser.
2009-06-24 Chris Lattnermake the lexer unique strings it lexes instead of passi...
2009-06-23 Daniel DunbarStart flushing out MCContext.
2009-06-23 Chris Lattnerrefactor a bunch of X86 specific stuff out to its own...
2009-06-23 Chris Lattnerimplement a trivial binary expression parser, we can...
2009-06-23 Chris Lattnerget a definition of strull on windows, thanks to Howard Su.
2009-06-22 Duncan SandsInclude cstdio to get EOF, needed with gcc-4.4.
2009-06-22 Chris Lattnerprocess memory operands with a parenthesized expression...
2009-06-22 Chris LattnerImplement full support for parsing primary expressions...
2009-06-22 Chris Lattnerimplement parser support for '*' operands, as in "call...
2009-06-22 Chris Lattnerimplement memory operand parsing.
2009-06-22 Chris Lattnerstart implementing some simple operand parsing.
2009-06-21 Chris Lattnerrename SourceMgr::PrintError to PrintMessage.
2009-06-21 Chris Lattnerset up the top-level parsing loop.
2009-06-21 Chris Lattnerstub out parser for asm files. Change invariant on...
2009-06-21 Chris Lattneradd string literals.
2009-06-21 Chris Lattnerhopefully fix the build on linux.
2009-06-21 Chris Lattnerimplement enough of a lexer to get through Olden/health...
2009-06-21 Chris Lattneroh yeah, cmake needs to be told explicitly about new...
2009-06-21 Chris Lattnersome baby steps.
2009-06-21 Chris Lattnerstart wiring up support for asm parsing.
2009-06-18 Chris Lattnerfix build problem pointed out by John Thompson!
2009-06-18 Chris Lattnerfix file header
2009-06-18 Chris LattnerAdd a skeleton driver for new machine code level fun...