aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCAsmStreamer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Pass StringRef by value.Daniel Dunbar2009-11-061-2/+2
* Minor formatting tweaks.Daniel Dunbar2009-10-161-10/+10
* MC: Tweak variable assignment diagnostics, and make reassignment of non-absoluteDaniel Dunbar2009-10-161-0/+1
* MC: When parsing a variable reference, substitute absolute variables immediatelyDaniel Dunbar2009-10-161-1/+4
* Change MCAsmStreamer to take an MCInstPrinter instead of a Chris Lattner2009-09-141-8/+8
* 'printMCInst' doesn't print newlines after instructions anymore.Chris Lattner2009-09-131-0/+1
* Thread an MCAsmInfo pointer through the various MC printing APIs, Chris Lattner2009-09-031-11/+20
* inline insertion operators.Chris Lattner2009-09-031-15/+9
* output alignment value in hex so that we get:Chris Lattner2009-09-031-1/+2
* llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues.Daniel Dunbar2009-08-311-14/+14
* llvm-mc: Simplify EmitAssignment ('.set' is identical to '=').Daniel Dunbar2009-08-311-18/+3
* llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue.Daniel Dunbar2009-08-311-22/+4
* llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported f...Daniel Dunbar2009-08-301-14/+8
* llvm-mc: Emit .lcomm as .zerofill.Daniel Dunbar2009-08-281-6/+3
* llvm-mc: Add const to EmitZeroFill section argument.Daniel Dunbar2009-08-281-2/+2
* llvm-mc: Print encodings after the instruction, and only when we have an asmDaniel Dunbar2009-08-271-17/+18
* Sketch TargetRegistry support for MCCodeEmitter abstract interface.Daniel Dunbar2009-08-271-4/+27
* rename TAI -> MAI, being careful not to make MAILJMP instructions :)Chris Lattner2009-08-221-9/+9
* Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner2009-08-221-4/+4
* llvm-mc: Clean up some handling of symbol/section association to be more correctDaniel Dunbar2009-08-221-6/+5
* fix asmstreaming of 2/4 byte elements with pow-2 alignments.Chris Lattner2009-08-191-1/+8
* switch asmprinter to emit alignments through OutStreamer.Chris Lattner2009-08-191-14/+29
* eliminate AsmPrinter::SwitchToSection and just have clientsChris Lattner2009-08-191-0/+1
* Make AsmStreamer maintain a notion of the current section, pushing it up from...Chris Lattner2009-08-181-3/+1
* change AsmPrinter to switch sections using AsmStreamer instead ofChris Lattner2009-08-171-6/+4
* give MCAsmStreamer a TargetAsmInfo.Chris Lattner2009-08-171-4/+7
* formatting cleanups, no functionality change.Chris Lattner2009-08-171-43/+36
* llvm-mc: Fix bugs where bytes were unintentionally being printed as signed.Daniel Dunbar2009-08-141-1/+1
* 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
* Update llvm-mc / MCAsmStreamer to print the instruction using the actual targetDaniel Dunbar2009-08-141-43/+21
* llvm-mc: Add dummy MCStreamer implementation, (eventually) for use in profiling.Daniel Dunbar2009-08-131-5/+2
* split MachO section handling stuff out to its out .h/.cpp file.Chris Lattner2009-08-101-1/+1
* Make the big switch: Change MCSectionMachO to represent a section *semantically*Chris Lattner2009-08-101-1/+3
* sink the 'name' and 'isdirective' state out of MCSection into its derived cla...Chris Lattner2009-08-081-12/+8
* llvm-mc: Fix .s output to quote section & symbol names when necessary.Daniel Dunbar2009-07-311-12/+51
* 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
* Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API asKevin Enderby2009-07-201-12/+0
* 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