| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add support for parsing [expr]. | Roman Divacky | 2011-02-15 | 1 | -0/+18 |
| | | | | | | | This is submitted by Joerg Sonnenberger and fixes his PR8685. llvm-svn: 125595 | ||||
| * | More whitespace cleanup... | Jim Grosbach | 2011-02-11 | 1 | -1/+1 |
| | | | | | llvm-svn: 125388 | ||||
| * | Support for .ifdef / .ifndef in the assembler parser. Patch by Joerg ↵ | Benjamin Kramer | 2011-02-08 | 1 | -1/+31 |
| | | | | | | | Sonnenberger. llvm-svn: 125120 | ||||
| * | Do not sign extend floating-point values in the asm parser. | Bob Wilson | 2011-02-03 | 1 | -1/+1 |
| | | | | | llvm-svn: 124831 | ||||
| * | Enumerate .code16/32/64 instead of checking .code prefix. This | Roman Divacky | 2011-01-31 | 1 | -1/+1 |
| | | | | | | | unbreaks some ARM tests. llvm-svn: 124608 | ||||
| * | Error on all .code* directives instead of just .code16 as they | Roman Divacky | 2011-01-31 | 1 | -2/+2 |
| | | | | | | | all lead to a silent miscompilation of code. llvm-svn: 124603 | ||||
| * | Error on .code16 instead of producing wrong (32bit) code. | Roman Divacky | 2011-01-28 | 1 | -0/+3 |
| | | | | | llvm-svn: 124498 | ||||
| * | Add support for parsing .float | Roman Divacky | 2011-01-28 | 1 | -1/+1 |
| | | | | | llvm-svn: 124485 | ||||
| * | PR8951: Support for .equiv in integrated assembler, patch by Jörg Sonnenberger! | Nico Weber | 2011-01-28 | 1 | -8/+12 |
| | | | | | llvm-svn: 124467 | ||||
| * | Add support for specifying register name in cfi-register/offset/def | Roman Divacky | 2011-01-27 | 1 | -3/+23 |
| | | | | | | | as well as register number. llvm-svn: 124379 | ||||
| * | Add support for parsing a Real value. It stores the Real value as its binary | Bill Wendling | 2011-01-25 | 1 | -1/+7 |
| | | | | | | | | encoding. It's up to the individual back-ends to convert it to their preferred representation when printing. llvm-svn: 124229 | ||||
| * | Make sure to propogate the error code when we fail to parse a modifier. | Jim Grosbach | 2011-01-19 | 1 | -1/+1 |
| | | | | | llvm-svn: 123857 | ||||
| * | Correctly encode pcrel|indirect. | Rafael Espindola | 2010-12-29 | 1 | -3/+2 |
| | | | | | llvm-svn: 122624 | ||||
| * | Implement cfi_def_cfa. Also don't convert to dwarf reg numbers twice. Looks | Rafael Espindola | 2010-12-29 | 1 | -0/+22 |
| | | | | | | | like 6 is a fixed point of that and so the previous tests were OK :-) llvm-svn: 122614 | ||||
| * | Implement .cfi_remember_state and .cfi_restore_state. | Rafael Espindola | 2010-12-28 | 1 | -0/+20 |
| | | | | | llvm-svn: 122602 | ||||
| * | Add support for .cfi_lsda. | Rafael Espindola | 2010-12-27 | 1 | -1/+1 |
| | | | | | llvm-svn: 122584 | ||||
| * | Add support for the same encodings of the personality function that gnu as | Rafael Espindola | 2010-12-27 | 1 | -1/+1 |
| | | | | | | | supports. llvm-svn: 122577 | ||||
| * | Add basic support for .cfi_personality. | Rafael Espindola | 2010-12-26 | 1 | -2/+25 |
| | | | | | llvm-svn: 122566 | ||||
| * | In llvm-mc parse a Hash token as a full line comment. Allows handling of | Kevin Enderby | 2010-12-24 | 1 | -2/+7 |
| | | | | | | | | preprocessed .s files and matches darwin gas. rdar://8798690 Also fix a comment on the next line of AsmParser.cpp after this new code. llvm-svn: 122531 | ||||
| * | Add missing standard headers. Patch by Joerg Sonnenberger! | Nick Lewycky | 2010-12-19 | 1 | -0/+1 |
| | | | | | llvm-svn: 122193 | ||||
| * | Add basic CFI methods to the streamer interface. | Rafael Espindola | 2010-11-22 | 1 | -7/+19 |
| | | | | | llvm-svn: 119972 | ||||
| * | Added support for the Mach-O .symbol_resolver directive. rdar://8673046 | Kevin Enderby | 2010-11-19 | 1 | -0/+2 |
| | | | | | llvm-svn: 119816 | ||||
| * | Add support for .int. | Rafael Espindola | 2010-11-17 | 1 | -0/+2 |
| | | | | | llvm-svn: 119512 | ||||
| * | Add support for .2byte, .4byte and .8byte. | Rafael Espindola | 2010-11-17 | 1 | -0/+6 |
| | | | | | | | Fixes PR8631. llvm-svn: 119511 | ||||
| * | Add .loc methods to the streamer. | Rafael Espindola | 2010-11-16 | 1 | -4/+3 |
| | | | | | | | | Next: Add support for the !HasDotLocAndDotFile case to the MCAsmStreamer and then switch codegen to use it. llvm-svn: 119384 | ||||
| * | Parse and ignore some .cfi_* directives. | Rafael Espindola | 2010-11-16 | 1 | -0/+95 |
| | | | | | llvm-svn: 119362 | ||||
| * | Fix PR8565. | Rafael Espindola | 2010-11-15 | 1 | -6/+25 |
| | | | | | | | | | | | | This moves most of the isUsed logic to the MCSymbol itself. With this we get a bit more relaxed about allowing definitions after uses: uses that don't evaluate their argument immediately (jmp foo) are accepted. ddunbar, this was the smallest compromise I could think of that lets us accept gcc (and clang!) assembly. llvm-svn: 119144 | ||||
| * | Parse and remember discriminators in .loc line. I try to output them with | Rafael Espindola | 2010-11-13 | 1 | -1/+7 |
| | | | | | | | | another patch. This lets us parse a bit more of the gcc 4.5 output. llvm-svn: 118975 | ||||
| * | Mark labels declared in tls sections as STT_TLS. This matches the behavior of | Rafael Espindola | 2010-11-11 | 1 | -1/+0 |
| | | | | | | | gas. llvm-svn: 118818 | ||||
| * | Fix typo. | Daniel Dunbar | 2010-11-08 | 1 | -1/+1 |
| | | | | | llvm-svn: 118421 | ||||
| * | Add support for expressions in .sleb/.uleb directives. | Rafael Espindola | 2010-11-02 | 1 | -31/+7 |
| | | | | | llvm-svn: 118023 | ||||
| * | Add support for .value. | Rafael Espindola | 2010-11-01 | 1 | -0/+2 |
| | | | | | llvm-svn: 117922 | ||||
| * | Add support for the .string directive. | Rafael Espindola | 2010-10-28 | 1 | -8/+10 |
| | | | | | llvm-svn: 117592 | ||||
| * | Use the IDVal directly as there's no need to convert to std::string. | Roman Divacky | 2010-10-28 | 1 | -2/+2 |
| | | | | | | | Pointed out by Chris! llvm-svn: 117557 | ||||
| * | Implement .equ directive as a synonym to .set. | Roman Divacky | 2010-10-28 | 1 | -6/+6 |
| | | | | | llvm-svn: 117553 | ||||
| * | MC/AsmParser: Fix relative precedence of {+,-} and comparison ops. | Daniel Dunbar | 2010-10-25 | 1 | -12/+14 |
| | | | | | llvm-svn: 117299 | ||||
| * | Remove remaining uses of ATTRIBUTE_UNUSED on variables, and delete three | Chandler Carruth | 2010-10-20 | 1 | -2/+0 |
| | | | | | | | #includes in the process. llvm-svn: 116919 | ||||
| * | MC/AsmParser: Report .stabs directive as unsupported. | Daniel Dunbar | 2010-10-16 | 1 | -0/+9 |
| | | | | | llvm-svn: 116659 | ||||
| * | MC-COFF: Add COFFAsmParser. Completes PR8343. | Michael J. Spencer | 2010-10-09 | 1 | -1/+5 |
| | | | | | llvm-svn: 116150 | ||||
| * | Fix Whitespace. | Michael J. Spencer | 2010-10-09 | 1 | -58/+58 |
| | | | | | llvm-svn: 116149 | ||||
| * | MC: Move ParseDirectiveELFType into ELFAsmParser. COFF uses .type for ↵ | Michael J. Spencer | 2010-10-09 | 1 | -48/+0 |
| | | | | | | | something else. llvm-svn: 116142 | ||||
| * | Add support for a fill value in the .zero directive. | Rafael Espindola | 2010-10-05 | 1 | -1/+8 |
| | | | | | llvm-svn: 115655 | ||||
| * | Incorporate suggestions by Daniel Dunbar after his review. Thanks Daniel! | Kevin Enderby | 2010-10-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | 1) Changed ValidateDwarfFileNumber() to isValidDwarfFileNumber() to be better named. Since it is just a predicate and isn't actually changing any state. 2) Added a missing return in the comments for setCurrentDwarfLoc() in include/llvm/MC/MCContext.h for fix formatting. 3) Changed clearDwarfLocSeen() to ClearDwarfLocSeen() since it does change state. 4) Simplified the last test in isValidDwarfFileNumber() to just a one line boolean test of MCDwarfFiles[FileNumber] != 0 for the final return statement. llvm-svn: 115551 | ||||
| * | Add hook in MCSection to decide when to use "optimized nops", for each | Jan Wen Voung | 2010-10-04 | 1 | -6/+1 |
| | | | | | | | | section kind. Previously, optimized nops were only used for MachO. Also added tests for ELF and COFF. llvm-svn: 115523 | ||||
| * | This is the last major patch to implement support for the .loc directive | Kevin Enderby | 2010-09-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and output the dwarf line number tables. This contains the code to emit and encode the dwarf line tables from the previously gathered information in the MCLineSection objects. This contains all the details to encode the line and address deltas into the dwarf line table. To do this an MCDwarfLineAddrFragment has been added. Also this moves the interface code out of Mach-O streamer into MCDwarf so it should be useable by other object file formats. There is now one call to be made from an MCObjectStreamer EmitInstruction() method: MCLineEntry::Make(this, getCurrentSection()); to create a line entry after each instruction is assembled. And one call call to be made from an MCObjectStreamer Finish() method: MCDwarfFileTable::Emit(this, DwarfLineSection); when getContext().hasDwarfFiles() is true and is passed a object file specific MCSection where to emit the dwarf file and the line tables. This appears to now be correct for 32-bit targets, at least x86. But the relocation entries for 64-bit Darwin needs some further work which is next up to work on. So for now the 64-bit Mach-O target does not output the dwarf file and line tables. llvm-svn: 115157 | ||||
| * | Test commit - Deleted some whitespace at the end of a line. | Jan Wen Voung | 2010-09-30 | 1 | -1/+1 |
| | | | | | llvm-svn: 115122 | ||||
| * | change the protocol TargetAsmPArser::MatchInstruction method to take an | Chris Lattner | 2010-09-29 | 1 | -9/+3 |
| | | | | | | | | MCStreamer to emit into instead of an MCInst to fill in. This allows the matcher extra flexibility and is more convenient. llvm-svn: 115014 | ||||
| * | Push twines deeper into SourceMgr's error handling methods. | Benjamin Kramer | 2010-09-27 | 1 | -9/+6 |
| | | | | | llvm-svn: 114847 | ||||
| * | MC/AsmParser: Support .single and .double for embedding floating point literals. | Daniel Dunbar | 2010-09-24 | 1 | -0/+56 |
| | | | | | | | | - I believe more modern 'gas' supports a more enhanced set of arithmetic on them, but for now the only thing we can do is emit them as data. llvm-svn: 114719 | ||||
| * | fix rdar://8456417 - llvm-mc can't do basic math | Chris Lattner | 2010-09-22 | 1 | -21/+22 |
| | | | | | llvm-svn: 114532 | ||||

