| Commit message (Expand) | Author | Age | Files | Lines |
* | add a new DirectiveMap stringmap, which allows more efficient dispatching | Chris Lattner | 2009-09-27 | 2 | -23/+35 |
* | avoid copying MCAsmInfo by value, add an (extremely low prio) fixme. | Chris Lattner | 2009-09-27 | 2 | -5/+3 |
* | Make llvm-bcanalyzer percentages more readable. | Daniel Dunbar | 2009-09-25 | 1 | -5/+7 |
* | Strip trailing whitespace. | Daniel Dunbar | 2009-09-25 | 1 | -60/+60 |
* | Print INST_INBOUNDS_GEP rather than UnknownCode30. | Duncan Sands | 2009-09-25 | 1 | -47/+49 |
* | pretty mechanical changes to match coding guidelines (blessed by sabre on IRC) | Gabor Greif | 2009-09-23 | 1 | -41/+41 |
* | Fix llvm-config --src-root and --obj-root for CMake builds. | Daniel Dunbar | 2009-09-22 | 1 | -0/+2 |
* | llvm-config: Remove unused variables. | Daniel Dunbar | 2009-09-22 | 1 | -11/+0 |
* | Add an intel syntax MCInstPrinter implementation. You can now | Chris Lattner | 2009-09-20 | 1 | -3/+5 |
* | Remove the default value for ConstantStruct::get's isPacked parameter and | Nick Lewycky | 2009-09-19 | 1 | -2/+2 |
* | Write and read metadata attachments. | Devang Patel | 2009-09-18 | 1 | -9/+16 |
* | Now that llc can read .ll files directly, teach it to recognize .ll as | Dan Gohman | 2009-09-16 | 1 | -1/+3 |
* | Fixed some problems with the logic of parsing line comments by adding | Kevin Enderby | 2009-09-16 | 2 | -9/+13 |
* | Make cmake generated llvm-config output correct JIT backend for non X86 targets. | Xerxes Ranby | 2009-09-16 | 1 | -1/+1 |
* | use an accessor to simplify code. | Chris Lattner | 2009-09-16 | 1 | -5/+2 |
* | Give llvm-link a -S option. | Dan Gohman | 2009-09-15 | 1 | -3/+9 |
* | Don't bother using a PassManager just to print a Module. | Dan Gohman | 2009-09-15 | 1 | -7/+2 |
* | Change MCAsmStreamer to take an MCInstPrinter instead of a | Chris Lattner | 2009-09-14 | 1 | -5/+8 |
* | 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 |