| Commit message (Expand) | Author | Age | Files | Lines |
* | split MachO section handling stuff out to its out .h/.cpp file. | Chris Lattner | 2009-08-10 | 4 | -270/+281 |
* | Make the big switch: Change MCSectionMachO to represent a section *semantically* | Chris Lattner | 2009-08-10 | 2 | -12/+261 |
* | always end a section with \n on elf. | Chris Lattner | 2009-08-09 | 1 | -0/+2 |
* | sink the 'name' and 'isdirective' state out of MCSection into its derived cla... | Chris Lattner | 2009-08-08 | 2 | -19/+28 |
* | 1. Make MCSection an abstract class. | Chris Lattner | 2009-08-08 | 1 | -5/+109 |
* | make target-specific TLOF impls (except PIC16) create target-specific | Chris Lattner | 2009-08-08 | 1 | -2/+2 |
* | stub out PECOFF/MachO/ELF MCSection classes | Chris Lattner | 2009-08-08 | 1 | -2/+20 |
* | Change SectionKind to be a property that is true of a *section*, it | Chris Lattner | 2009-08-01 | 1 | -5/+6 |
* | All MCSections are now required to have a SectionKind. | Chris Lattner | 2009-08-01 | 1 | -8/+5 |
* | llvm-mc: Fix .s output to quote section & symbol names when necessary. | Daniel Dunbar | 2009-07-31 | 1 | -12/+51 |
* | split MCSection stuff out to its own .cpp file, add a new | Chris Lattner | 2009-07-31 | 3 | -12/+32 |
* | create sections with MCSection::Create instead of Context->getOrCreateSection. | Chris Lattner | 2009-07-31 | 1 | -8/+15 |
* | Expose Tokens to target specific assembly parsers. | Daniel Dunbar | 2009-07-28 | 1 | -1/+1 |
* | llvm-mc: Implement .abort fully in the front end | Daniel Dunbar | 2009-07-27 | 1 | -10/+0 |
* | llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API. | Daniel Dunbar | 2009-07-27 | 1 | -3/+3 |
* | Move MCContext and friends to StringRef based APIs. | Daniel Dunbar | 2009-07-27 | 1 | -6/+6 |
* | Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API as | Kevin Enderby | 2009-07-20 | 1 | -12/+0 |
* | Add MCAsmLexer interface. | Daniel Dunbar | 2009-07-20 | 2 | -0/+19 |
* | Add MCAsmParser interface. | Daniel Dunbar | 2009-07-20 | 2 | -0/+19 |
* | Update CMake file. | Ted Kremenek | 2009-07-17 | 1 | -0/+1 |
* | llvm-mc: Add -triple, and start fetching the target asm printer. | Daniel Dunbar | 2009-07-17 | 1 | -0/+19 |
* | Removed the SubsectionsViaSymbols MCStreamer API and replaced it with a generic | Kevin Enderby | 2009-07-16 | 1 | -3/+6 |
* | implement .include in the lexer/parser instead of passing it into the streamer. | Chris Lattner | 2009-07-16 | 1 | -6/+0 |
* | Added llvm-mc support for parsing the .dump and .load directives. | Kevin Enderby | 2009-07-15 | 1 | -0/+12 |
* | Added llvm-mc support for parsing the .include directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+6 |
* | Added llvm-mc support for parsing the .lsym directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+6 |
* | Added llvm-mc support for parsing the .desc directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+6 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -3/+3 |
* | Added llvm-mc support for parsing the .abort directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+10 |
* | add llvm-mc support for parsing the .subsections_via_symbols directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+6 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -3/+5 |
* | add support for .zerofill, patch by Kevin Enderby! | Chris Lattner | 2009-07-10 | 1 | -0/+18 |
* | add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby! | Chris Lattner | 2009-07-09 | 1 | -3/+6 |
* | Implement parsing support for the .comm directive. Patch by | Chris Lattner | 2009-07-07 | 1 | -0/+12 |
* | Dump MCInsts in the MC .s printer, for now. | Daniel Dunbar | 2009-07-01 | 1 | -2/+23 |
* | llvm-mc: Parse .{,b,p2}align{,w,l} directives. | Daniel Dunbar | 2009-06-29 | 1 | -5/+9 |
* | Initialize CurSection in constructor. | Torok Edwin | 2009-06-29 | 1 | -1/+1 |
* | Rename MCValue::getCst to getConstant and add MCValue::isConstant. | Daniel Dunbar | 2009-06-29 | 1 | -4/+4 |
* | MC: Truncate values when printing, to keep 'as' happy. | Daniel Dunbar | 2009-06-25 | 1 | -3/+13 |
* | Sketch streamer support for .align, .org functionality. | Daniel Dunbar | 2009-06-24 | 1 | -0/+37 |
* | We decided to not worry about Atoms for now, it should be straightforward to | Daniel Dunbar | 2009-06-24 | 2 | -24/+20 |
* | MCStreamer: Add a few more "symbol attributes". | Daniel Dunbar | 2009-06-24 | 1 | -1/+10 |
* | MCStreamer: Test printing values. | Daniel Dunbar | 2009-06-24 | 1 | -1/+1 |
* | Add new files to cmake list. | Duncan Sands | 2009-06-24 | 1 | -0/+2 |
* | add trivial support for passing label definitions through the MCStreamer. | Chris Lattner | 2009-06-24 | 2 | -2/+16 |
* | Start MCAsmStreamer implementation. | Daniel Dunbar | 2009-06-24 | 3 | -5/+166 |
* | Update for MCImm -> MCValue rename. | Daniel Dunbar | 2009-06-23 | 1 | -5/+5 |
* | Start flushing out MCContext. | Daniel Dunbar | 2009-06-23 | 3 | -0/+95 |