| Commit message (Expand) | Author | Age | Files | Lines |
* | Pass StringRef by value. | Daniel Dunbar | 2009-11-06 | 10 | -16/+15 |
* | Move DataTypes.h to include/llvm/System, update all users. This breaks the last | Chandler Carruth | 2009-10-26 | 1 | -1/+1 |
* | add a twine version of MCContext::GetOrCreateSymbol. | Chris Lattner | 2009-10-19 | 1 | -1/+9 |
* | MC: Set symbol values in MachO MCStreamer. | Daniel Dunbar | 2009-10-16 | 1 | -1/+3 |
* | Minor formatting tweaks. | Daniel Dunbar | 2009-10-16 | 2 | -34/+34 |
* | MC: Switch assembler API to using MCExpr instead of MCValue. | Daniel Dunbar | 2009-10-16 | 2 | -31/+41 |
* | MC: Remove unneeded context argument to MCExpr::Evaluate*. | Daniel Dunbar | 2009-10-16 | 2 | -9/+8 |
* | MC: Tweak variable assignment diagnostics, and make reassignment of non-absolute | Daniel Dunbar | 2009-10-16 | 1 | -0/+1 |
* | MC: When parsing a variable reference, substitute absolute variables immediately | Daniel Dunbar | 2009-10-16 | 1 | -1/+4 |
* | MC: Move assembler variable values from MCContext to MCSymbol. | Daniel Dunbar | 2009-10-16 | 1 | -2/+5 |
* | MC: Switch MCContext value table to storing MCExprs. | Daniel Dunbar | 2009-10-16 | 2 | -21/+3 |
* | Fixed MCSectionMachO::ParseSectionSpecifier to allow an attribute of "none" so | Kevin Enderby | 2009-10-07 | 1 | -4/+6 |
* | No newline at end of files. | Edward O'Callaghan | 2009-10-05 | 2 | -2/+2 |
* | eliminate a use of strtoul. | Chris Lattner | 2009-09-20 | 1 | -12/+2 |
* | Allow symbols to start from the digit if target requests it. This allows, e.g... | Anton Korobeynikov | 2009-09-18 | 2 | -6/+10 |
* | Big change #1 for personality function references: | Chris Lattner | 2009-09-16 | 2 | -5/+1 |
* | add a helper method for creating MCSymbol and MCSymbolRefExpr at | Chris Lattner | 2009-09-16 | 1 | -0/+6 |
* | remove some horrible MAI hooks which fortunately turn out to be always empty. | Chris Lattner | 2009-09-15 | 1 | -4/+0 |
* | Update CMake. | Daniel Dunbar | 2009-09-14 | 1 | -0/+1 |
* | Change MCAsmStreamer to take an MCInstPrinter instead of a | Chris Lattner | 2009-09-14 | 1 | -8/+8 |
* | add a new MCInstPrinter class, move the (trivial) MCDisassmbler ctor inline. | Chris Lattner | 2009-09-14 | 2 | -3/+14 |
* | 'printMCInst' doesn't print newlines after instructions anymore. | Chris Lattner | 2009-09-13 | 1 | -0/+1 |
* | remove MAI::JumpTableSpecialLabelPrefix now that MAI | Chris Lattner | 2009-09-13 | 2 | -7/+0 |
* | fix MCSymbol printing on darwin to exactly match the mangler (handling of \n ... | Chris Lattner | 2009-09-13 | 1 | -8/+28 |
* | Make the MC symbol printer and llvm::Mangler exactly agree on mangling | Chris Lattner | 2009-09-13 | 1 | -20/+50 |
* | eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for | Chris Lattner | 2009-09-12 | 1 | -3/+0 |
* | Update CMake files. | Ted Kremenek | 2009-09-11 | 1 | -0/+1 |
* | canonicalize namespace gymnastics | Chris Lattner | 2009-09-09 | 1 | -2/+3 |
* | Added an abstract superclass, MCDisassembler, for | Sean Callanan | 2009-09-09 | 1 | -0/+16 |
* | allow @ in symbol names without quoting the identifier. This | Chris Lattner | 2009-09-09 | 1 | -1/+1 |
* | parenthesize symbol names that start with $, fixing X86/dollar-name.ll with | Chris Lattner | 2009-09-08 | 1 | -2/+13 |
* | Print "X-42" instead of "X+-42". | Chris Lattner | 2009-09-08 | 1 | -1/+11 |
* | make formatting of expressions more closely match the existing asmprinter. | Chris Lattner | 2009-09-08 | 1 | -6/+19 |
* | tidy whitespace. | Chris Lattner | 2009-09-08 | 1 | -7/+4 |
* | fix MCSymbol printing to exactly match the normal mangler rules so | Chris Lattner | 2009-09-03 | 1 | -19/+23 |
* | Thread an MCAsmInfo pointer through the various MC printing APIs, | Chris Lattner | 2009-09-03 | 5 | -29/+38 |
* | inline insertion operators. | Chris Lattner | 2009-09-03 | 1 | -15/+9 |
* | output alignment value in hex so that we get: | Chris Lattner | 2009-09-03 | 1 | -1/+2 |
* | llvm-mc: Store MCSymbolData value as a pointer (to make MSVC happy). | Daniel Dunbar | 2009-09-01 | 1 | -2/+2 |
* | llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues. | Daniel Dunbar | 2009-08-31 | 3 | -34/+37 |
* | llvm-mc: Simplify EmitAssignment ('.set' is identical to '='). | Daniel Dunbar | 2009-08-31 | 3 | -25/+6 |
* | llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue. | Daniel Dunbar | 2009-08-31 | 3 | -27/+35 |
* | llvm-mc: Make MCSymbolData symbol member const. | Daniel Dunbar | 2009-08-31 | 2 | -6/+6 |
* | llvm-mc: Add MCContext to MCAssembler. | Daniel Dunbar | 2009-08-31 | 2 | -4/+3 |
* | llvm-mc: Add MCExpr::{dump,print}. | Daniel Dunbar | 2009-08-31 | 1 | -0/+67 |
* | llvm-mc: Switch MCExpr construction to using static member functions, and tak... | Daniel Dunbar | 2009-08-31 | 1 | -8/+28 |
* | llvm-mc: Move AsmExpr into MC lib (as MCExpr). | Daniel Dunbar | 2009-08-31 | 2 | -0/+163 |
* | llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported f... | Daniel Dunbar | 2009-08-30 | 3 | -32/+16 |
* | llvm-mc: .lsym is more unsupported than unimplemented, pending a use case app... | Daniel Dunbar | 2009-08-28 | 1 | -5/+5 |
* | llvm-mc: Support .comm emission. | Daniel Dunbar | 2009-08-28 | 2 | -14/+41 |