aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC
Commit message (Expand)AuthorAgeFilesLines
* add support for target-specific ELF section flags, add a new MCSectionXCoreChris Lattner2009-08-151-4/+6
* llvm-mc: Fix bugs where bytes were unintentionally being printed as signed.Daniel Dunbar2009-08-141-1/+1
* *try* to use a better name to describe how common symbols are marked on the e...Bruno Cardoso Lopes2009-08-141-2/+4
* llvm-mc: When handling a .set, make sure to print subsequent references to theDaniel Dunbar2009-08-141-2/+9
* llvm-mc: zerofill shouldn't print quotes around the section,segment.Daniel Dunbar2009-08-141-2/+1
* CMake: updated list of source files for library MC.Oscar Fuentes2009-08-141-0/+2
* Update llvm-mc / MCAsmStreamer to print the instruction using the actual targetDaniel Dunbar2009-08-141-43/+21
* Add MCSymbol::{print, dump}Daniel Dunbar2009-08-142-3/+56
* Add MCValue::{print, dump}Daniel Dunbar2009-08-141-0/+30
* llvm-mc: Move MCAsmToken::getLoc() into MC library where it belongs.Daniel Dunbar2009-08-141-0/+5
* Fix MCSectionELF::ShouldOmitSectionDirective's matching of .data andDan Gohman2009-08-131-3/+3
* llvm-mc: Add dummy MCStreamer implementation, (eventually) for use in profiling.Daniel Dunbar2009-08-132-5/+74
* Remove HasCrazyBSS and add a flag in TAI to indicate that '.section' Bruno Cardoso Lopes2009-08-131-9/+10
* Add a method to return if the ELF section contains only common symbols!Bruno Cardoso Lopes2009-08-131-0/+10
* Change MCSectionELF to represent a section semantically instead ofBruno Cardoso Lopes2009-08-133-85/+124
* sink uniquing of sections out of MCContext into the ELF and PECOFF TLOF imple...Chris Lattner2009-08-132-21/+2
* add some comments: MCContext owns the MCSections, but it bump pointer allocatesChris Lattner2009-08-131-0/+2
* split MachO section handling stuff out to its out .h/.cpp file.Chris Lattner2009-08-104-270/+281
* Make the big switch: Change MCSectionMachO to represent a section *semantically*Chris Lattner2009-08-102-12/+261
* always end a section with \n on elf.Chris Lattner2009-08-091-0/+2
* sink the 'name' and 'isdirective' state out of MCSection into its derived cla...Chris Lattner2009-08-082-19/+28
* 1. Make MCSection an abstract class.Chris Lattner2009-08-081-5/+109
* make target-specific TLOF impls (except PIC16) create target-specificChris Lattner2009-08-081-2/+2
* stub out PECOFF/MachO/ELF MCSection classesChris Lattner2009-08-081-2/+20
* Change SectionKind to be a property that is true of a *section*, itChris Lattner2009-08-011-5/+6
* All MCSections are now required to have a SectionKind.Chris Lattner2009-08-011-8/+5
* llvm-mc: Fix .s output to quote section & symbol names when necessary.Daniel Dunbar2009-07-311-12/+51
* split MCSection stuff out to its own .cpp file, add a newChris Lattner2009-07-313-12/+32
* create sections with MCSection::Create instead of Context->getOrCreateSection.Chris Lattner2009-07-311-8/+15
* Expose Tokens to target specific assembly parsers.Daniel Dunbar2009-07-281-1/+1
* llvm-mc: Implement .abort fully in the front endDaniel Dunbar2009-07-271-10/+0
* llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API.Daniel Dunbar2009-07-271-3/+3
* Move MCContext and friends to StringRef based APIs.Daniel Dunbar2009-07-271-6/+6
* Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API asKevin Enderby2009-07-201-12/+0
* Add MCAsmLexer interface.Daniel Dunbar2009-07-202-0/+19
* Add MCAsmParser interface.Daniel Dunbar2009-07-202-0/+19
* Update CMake file.Ted Kremenek2009-07-171-0/+1
* llvm-mc: Add -triple, and start fetching the target asm printer.Daniel Dunbar2009-07-171-0/+19
* Removed the SubsectionsViaSymbols MCStreamer API and replaced it with a genericKevin Enderby2009-07-161-3/+6
* implement .include in the lexer/parser instead of passing it into the streamer.Chris Lattner2009-07-161-6/+0
* Added llvm-mc support for parsing the .dump and .load directives.Kevin Enderby2009-07-151-0/+12
* Added llvm-mc support for parsing the .include directive.Kevin Enderby2009-07-141-0/+6
* Added llvm-mc support for parsing the .lsym directive.Kevin Enderby2009-07-141-0/+6
* Added llvm-mc support for parsing the .desc directive.Kevin Enderby2009-07-141-0/+6
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-3/+3
* Added llvm-mc support for parsing the .abort directive.Kevin Enderby2009-07-131-0/+10
* add llvm-mc support for parsing the .subsections_via_symbols directive.Kevin Enderby2009-07-131-0/+6
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-3/+5
* add support for .zerofill, patch by Kevin Enderby!Chris Lattner2009-07-101-0/+18
* add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby!Chris Lattner2009-07-091-3/+6