aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCAsmStreamer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Added the darwin .weak_def_can_be_hidden directive.Kevin Enderby2010-07-081-0/+1
* "This is just a cosmetic change in MCAsmStreamer.cpp/EmitSymbolAttribute: all...Chris Lattner2010-06-211-11/+11
* Don't call flush() at a library level which isn't checking for errorsDan Gohman2010-06-011-1/+0
* MC: Change MCInst::dump_pretty to not include a trailing newline.Daniel Dunbar2010-05-261-2/+4
* Make EmitTBSSSymbol take a section argument so that we can find it later.Eric Christopher2010-05-181-6/+9
* Assume that we'll handle mangling the symbols earlier and just put theEric Christopher2010-05-171-5/+4
* Add AsmParser support for darwin tbss directive.Eric Christopher2010-05-141-0/+18
* break coff symbol definition stuff out into proper MCStreamer callbacks,Chris Lattner2010-05-081-1/+24
* MC/Mach-O: Mark absolute variable's appropriately, and add Mach-O support forDaniel Dunbar2010-05-051-1/+0
* MC: Reject attempts to define a variable symbol.Daniel Dunbar2010-05-051-4/+1
* MC: Rename MCSymbol::{g,s}etValue -> MCSymbol::{g,s}etVariableValue.Daniel Dunbar2010-05-051-1/+1
* fix an ugly wart in the MCInstPrinter api where theChris Lattner2010-04-041-1/+1
* allow attaching comments to raw text.Chris Lattner2010-04-031-6/+3
* add a new EmitInlineAsm function to asmprinter to handle inline asm.Chris Lattner2010-04-031-1/+21
* MCInst: Add ::dump_pretty.Daniel Dunbar2010-03-221-17/+3
* fix an MCInstPrinter leak that jyasskin pointed out:Chris Lattner2010-03-191-1/+2
* remove MAI argument from createAsmStreamer since itChris Lattner2010-03-121-5/+4
* genericize MCAsmStreamer::EmitCodeAlignment to support other targetsChris Lattner2010-02-231-2/+3
* This is the first patch to put the needed bits in place to eventually allow codeKevin Enderby2010-02-231-0/+9
* add a new MCInstPrinter::getOpcodeName interface, when it is Chris Lattner2010-02-111-0/+6
* make getFixupKindInfo return a const reference, allowingChris Lattner2010-02-111-2/+2
* MC: Switch MCFixup to just hold an MCExpr pointer instead of index into theDaniel Dunbar2010-02-101-1/+1
* llvm-mc: Remove --show-fixups and always show as part of --show-encoding.Daniel Dunbar2010-02-101-19/+6
* daniel *really* likes fixups!Chris Lattner2010-02-101-0/+1
* Add ability for MCInstPrinters to add comments for instructions.Chris Lattner2010-02-101-1/+4
* llvm-mc: Add --show-fixups option, for displaying the instruction fixup infor...Daniel Dunbar2010-02-091-21/+92
* MC: First cut at MCFixup, for getting fixup/relocation information out of an ...Daniel Dunbar2010-02-091-1/+2
* make -show-inst be formatted a bit nicer. Before:Chris Lattner2010-02-091-8/+12
* print encodings like this:Chris Lattner2010-02-051-1/+1
* Use a tab instead of space after .type, for consistency.Dan Gohman2010-02-041-1/+1
* llvm-mc: Add --show-inst option, for showing the MCInst inline with the assemblyDaniel Dunbar2010-02-031-19/+27
* print instruction encodings with the existing comment facilities,Chris Lattner2010-02-031-18/+17
* refactor code so that LLVMTargetMachine creates the asmstreamer and Chris Lattner2010-02-021-1/+4
* Emit .comm alignment in bytes but .align in powers of 2 for ARM ELF.Rafael Espindola2010-01-261-1/+1
* mcstreamerize gprel32 emission.Chris Lattner2010-01-251-7/+10
* mcstreamerize .file and .file. This also fixes an issue where theChris Lattner2010-01-251-30/+56
* emit ELF .type directives through MCStreamer instead of doing it textually.Chris Lattner2010-01-251-1/+1
* add symbol attribute support for the ELF .type directive.Chris Lattner2010-01-251-1/+23
* emit the .size directive for global variables on ELF throughChris Lattner2010-01-251-0/+6
* all supported target now have aligned common support.Chris Lattner2010-01-251-1/+1
* mcize lcomm, simplify .comm, extend both to support 64-bit sizes.Chris Lattner2010-01-231-3/+19
* move the various directive enums out of the MCStreamer classChris Lattner2010-01-231-18/+20
* mcize jump table and constant pool entry labels, .local on elf,Chris Lattner2010-01-231-1/+2
* teach MCAsmStreamer::EmitBytes to use .ascii and .ascizChris Lattner2010-01-231-3/+47
* Changes to fix buffering that I forgot to commit with previous patch.Chris Lattner2010-01-221-1/+6
* Convert some more random-comment-printing stuff to use Chris Lattner2010-01-221-0/+5
* add a new MCAsmStreamer::GetCommentOS method to simplify stuffChris Lattner2010-01-221-9/+32
* rename addComment -> AddComment for consistency.Chris Lattner2010-01-221-4/+4
* add comment support to the rest of the directives.Chris Lattner2010-01-221-14/+21
* Add the ability for MCStreamer to emit comments on the same line as directives.Chris Lattner2010-01-221-8/+59