| Commit message (Expand) | Author | Age | Files | Lines |
* | Convert llvm-link to IRReader. | Dan Gohman | 2009-09-12 | 3 | -16/+13 |
* | De-bork CMake build. llvm-extract depends on asmparser | Douglas Gregor | 2009-09-11 | 1 | -1/+1 |
* | Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't | Dan Gohman | 2009-09-11 | 5 | -34/+37 |
* | Added the ParseInstruction() hook for target specific assembler directives so | Kevin Enderby | 2009-09-10 | 2 | -2/+6 |
* | Allow llvmc to take .bc files as input. | Mikhail Glushenkov | 2009-09-10 | 1 | -0/+1 |
* | fix leakage of Module | Nuno Lopes | 2009-09-10 | 1 | -4/+3 |
* | MC: Give target specific parsers access to the MCStreamer. | Daniel Dunbar | 2009-09-10 | 1 | -0/+2 |
* | Add -output-prefix option to bugpoint (to change the default output name). | Daniel Dunbar | 2009-09-07 | 4 | -11/+23 |
* | Fix an integer truncation noticed by MSVC. | Benjamin Kramer | 2009-09-06 | 1 | -1/+1 |
* | opt: Add -S option to print output as LLVM assembly. | Daniel Dunbar | 2009-09-05 | 1 | -5/+14 |
* | Added AsmToken enum constants to MCAsmLexer.h for '[', ']', '{', and '}' in | Kevin Enderby | 2009-09-04 | 1 | -0/+4 |
* | Added the AsmToken::Hash enum constant to MCAsmLexer.h in preparation of | Kevin Enderby | 2009-09-04 | 4 | -25/+48 |
* | Removed the non-target independent AsmToken::Register enum constant | Kevin Enderby | 2009-09-03 | 3 | -16/+1 |
* | Make bugpoint use ParseIRFile instead of doing the same thing manually. | Dan Gohman | 2009-09-03 | 1 | -12/+5 |
* | Use IRReader.h in opt, to support reading of LLVM Assembly files directly. | Dan Gohman | 2009-09-03 | 3 | -13/+6 |
* | TAI -> MAI | Chris Lattner | 2009-09-03 | 1 | -4/+4 |
* | Tweak comment. | Daniel Dunbar | 2009-09-03 | 1 | -1/+1 |
* | Unbreak my CMake build. Say you'll link again. | Douglas Gregor | 2009-09-02 | 1 | -1/+1 |
* | Switch llc from ParseBitcodeFile to ParseIRFile. This lets llc | Dan Gohman | 2009-09-02 | 2 | -9/+5 |
* | llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues. | Daniel Dunbar | 2009-08-31 | 1 | -27/+10 |
* | llvm-mc: Simplify EmitAssignment ('.set' is identical to '='). | Daniel Dunbar | 2009-08-31 | 2 | -5/+5 |
* | llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression. | Daniel Dunbar | 2009-08-31 | 2 | -37/+27 |
* | llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr. | Daniel Dunbar | 2009-08-31 | 2 | -0/+10 |
* | llvm-mc: Add MCAsmParser::getContext. | Daniel Dunbar | 2009-08-31 | 2 | -18/+13 |
* | llvm-mc: Switch MCExpr construction to using static member functions, and tak... | Daniel Dunbar | 2009-08-31 | 2 | -19/+19 |
* | llvm-mc: Move AsmExpr into MC lib (as MCExpr). | Daniel Dunbar | 2009-08-31 | 5 | -384/+42 |
* | only print the override triple if it exists! | Chris Lattner | 2009-08-31 | 1 | -2/+3 |
* | Fix some nasty callgraph dangling pointer problems in | Chris Lattner | 2009-08-31 | 1 | -1/+1 |
* | llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported f... | Daniel Dunbar | 2009-08-30 | 1 | -9/+12 |
* | Since all std::cout is gone, also remove iostream include. | Andreas Neustifter | 2009-08-28 | 1 | -1/+0 |
* | llvm-mc: Emit .lcomm as .zerofill. | Daniel Dunbar | 2009-08-28 | 1 | -1/+7 |
* | llvm-mc: Unique zero fill sections. | Daniel Dunbar | 2009-08-28 | 1 | -17/+9 |
* | Revert r80305, I forgot a dependent change. | Daniel Dunbar | 2009-08-27 | 1 | -9/+17 |
* | llvm-mc: Unique sections in .zerofill. | Daniel Dunbar | 2009-08-27 | 1 | -17/+9 |
* | Inverse logic to increase portability. | Benjamin Kramer | 2009-08-27 | 1 | -5/+3 |
* | To make mcc16 run correctly on mac. | Sanjiv Gupta | 2009-08-27 | 1 | -1/+1 |
* | llvm-mc/Mach-O: Add MCCodeEmitter support, for encoding instructions. | Daniel Dunbar | 2009-08-27 | 1 | -1/+2 |
* | llvm-mc: Only show instruction encodings with --show-encoding. | Daniel Dunbar | 2009-08-27 | 1 | -1/+5 |
* | llvm-mc: Tweak MCCodeEmitter skeleton. | Daniel Dunbar | 2009-08-27 | 1 | -1/+1 |
* | Sketch TargetRegistry support for MCCodeEmitter abstract interface. | Daniel Dunbar | 2009-08-27 | 1 | -1/+4 |
* | llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text | Daniel Dunbar | 2009-08-26 | 3 | -23/+71 |
* | llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table. | Daniel Dunbar | 2009-08-26 | 2 | -11/+22 |
* | llvm-mc: Make MCValue take const MCSymbol*s. | Daniel Dunbar | 2009-08-26 | 1 | -4/+4 |
* | llvm-mc: Make non-sensical max bytes to .align an error. | Daniel Dunbar | 2009-08-26 | 1 | -5/+10 |
* | Changed std::cout to outs(), retaining formating. | Andreas Neustifter | 2009-08-26 | 1 | -27/+27 |
* | EXIT STAGE LEFT: gccas, gccld | Daniel Dunbar | 2009-08-25 | 6 | -148/+1 |
* | Delete some unnecessary flushes. | Dan Gohman | 2009-08-25 | 2 | -4/+0 |
* | Make LLVM command-line tools overwrite their output files without -f. | Dan Gohman | 2009-08-25 | 14 | -52/+31 |
* | Fix the build when using gcc-4.4 on linux. Header needed | Duncan Sands | 2009-08-24 | 1 | -0/+1 |
* | remove the last *stream> #include from a public header. | Chris Lattner | 2009-08-24 | 1 | -0/+1 |