| Commit message (Expand) | Author | Age | Files | Lines |
| * | Added a Lex function to the AsmParser, to allow handling | Sean Callanan | 2010-01-19 | 1 | -74/+78 |
| * | Generalize mcasmstreamer data emission APIs to take an address space | Chris Lattner | 2010-01-19 | 1 | -5/+9 |
| * | add a "MCStreamer::EmitFill" method, and move the default implementation | Chris Lattner | 2010-01-19 | 1 | -2/+1 |
| * | fix parsing .comm directives on systems which do not represent alignments | Chris Lattner | 2010-01-19 | 1 | -0/+7 |
| * | fix a bug in range information for $42, eliminate an | Chris Lattner | 2010-01-15 | 1 | -5/+3 |
| * | extend MCAsmParser::ParseExpression and ParseParenExpression | Chris Lattner | 2010-01-15 | 1 | -20/+26 |
| * | add virtual methods to get the start/end of a MCParsedAsmOperand, | Chris Lattner | 2010-01-14 | 1 | -0/+5 |
| * | Split the TargetAsmParser "ParseInstruction" interface in half: | Chris Lattner | 2010-01-14 | 1 | -2/+21 |
| * | prune #includes in TargetAsmParser.h | Chris Lattner | 2010-01-14 | 1 | -1/+1 |
| * | Mark some debug variables as 'unused' to quiet compiler and analyzer. | Bill Wendling | 2009-12-28 | 1 | -2/+3 |
| * | MC: Remove unneeded context argument to MCExpr::Evaluate*. | Daniel Dunbar | 2009-10-16 | 1 | -1/+1 |
| * | MC: Tweak variable assignment diagnostics, and make reassignment of non-absolute | Daniel Dunbar | 2009-10-16 | 1 | -7/+18 |
| * | MC: When parsing a variable reference, substitute absolute variables immediately | Daniel Dunbar | 2009-10-16 | 1 | -4/+15 |
| * | add a new DirectiveMap stringmap, which allows more efficient dispatching | Chris Lattner | 2009-09-27 | 1 | -12/+20 |
| * | use an accessor to simplify code. | Chris Lattner | 2009-09-16 | 1 | -5/+2 |
| * | Added the ParseInstruction() hook for target specific assembler directives so | Kevin Enderby | 2009-09-10 | 1 | -2/+5 |
| * | Fix an integer truncation noticed by MSVC. | Benjamin Kramer | 2009-09-06 | 1 | -1/+1 |
| * | 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 | 1 | -4/+4 |
| * | llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression. | Daniel Dunbar | 2009-08-31 | 1 | -33/+27 |
| * | llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr. | Daniel Dunbar | 2009-08-31 | 1 | -0/+8 |
| * | llvm-mc: Add MCAsmParser::getContext. | Daniel Dunbar | 2009-08-31 | 1 | -8/+9 |
| * | llvm-mc: Switch MCExpr construction to using static member functions, and tak... | Daniel Dunbar | 2009-08-31 | 1 | -15/+15 |
| * | llvm-mc: Move AsmExpr into MC lib (as MCExpr). | Daniel Dunbar | 2009-08-31 | 1 | -37/+37 |
| * | llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported f... | Daniel Dunbar | 2009-08-30 | 1 | -9/+12 |
| * | 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 |
| * | llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text | Daniel Dunbar | 2009-08-26 | 1 | -15/+56 |
| * | llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table. | Daniel Dunbar | 2009-08-26 | 1 | -11/+20 |
| * | llvm-mc: Make non-sensical max bytes to .align an error. | Daniel Dunbar | 2009-08-26 | 1 | -5/+10 |
| * | llvm-mc: Clean up some handling of symbol/section association to be more correct | Daniel Dunbar | 2009-08-22 | 1 | -21/+5 |
| * | llvm-mc: Improve handling of implicit alignment for magic section directives | Daniel Dunbar | 2009-08-21 | 1 | -1/+12 |
| * | llvm-mc: In a .fill directive, still honor .align even if invalid maximum bytes | Daniel Dunbar | 2009-08-21 | 1 | -3/+4 |
| * | llvm-mc: Accept .fill size of 8. | Daniel Dunbar | 2009-08-21 | 1 | -2/+2 |
| * | llvm-mc: Various section parsing fixes. | Daniel Dunbar | 2009-08-21 | 1 | -43/+82 |
| * | llvm-mc: Support escaped characters in string literals (for .ascii and .asciz) | Daniel Dunbar | 2009-08-14 | 1 | -5/+63 |
| * | llvm-mc: Accept .word as a synonym for .short | Daniel Dunbar | 2009-08-11 | 1 | -1/+1 |
| * | llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these | Daniel Dunbar | 2009-08-11 | 1 | -0/+97 |
| * | llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ',' | Daniel Dunbar | 2009-08-11 | 1 | -4/+14 |
| * | split MachO section handling stuff out to its out .h/.cpp file. | Chris Lattner | 2009-08-10 | 1 | -1/+1 |
| * | add a fixme | Chris Lattner | 2009-08-10 | 1 | -0/+4 |
| * | Make the big switch: Change MCSectionMachO to represent a section *semantically* | Chris Lattner | 2009-08-10 | 1 | -92/+96 |
| * | sink the 'name' and 'isdirective' state out of MCSection into its derived cla... | Chris Lattner | 2009-08-08 | 1 | -4/+4 |
| * | switch this to create coff sections for now, it doesn't really matter for | Chris Lattner | 2009-08-08 | 1 | -4/+4 |
| * | Added Mac OS X assembler style conditional assembly. I may come back and see if | Kevin Enderby | 2009-08-07 | 1 | -1/+158 |
| * | update for API change. | Chris Lattner | 2009-08-01 | 1 | -4/+4 |
| * | All MCSections are now required to have a SectionKind. | Chris Lattner | 2009-08-01 | 1 | -4/+4 |
| * | llvm-mc: More quoted identifier support. | Daniel Dunbar | 2009-08-01 | 1 | -43/+59 |