Age | Commit message (Expand) | Author |
2010-02-11 | add a new MCInstPrinter::getOpcodeName interface, when it is | Chris Lattner |
2010-02-11 | make getFixupKindInfo return a const reference, allowing | Chris Lattner |
2010-02-10 | MC: Switch MCFixup to just hold an MCExpr pointer instead of index into the | Daniel Dunbar |
2010-02-10 | llvm-mc: Remove --show-fixups and always show as part of --show-encoding. | Daniel Dunbar |
2010-02-10 | daniel *really* likes fixups! | Chris Lattner |
2010-02-10 | Add ability for MCInstPrinters to add comments for instructions. | Chris Lattner |
2010-02-09 | llvm-mc: Add --show-fixups option, for displaying the instruction fixup infor... | Daniel Dunbar |
2010-02-09 | MC: First cut at MCFixup, for getting fixup/relocation information out of an ... | Daniel Dunbar |
2010-02-09 | make -show-inst be formatted a bit nicer. Before: | Chris Lattner |
2010-02-05 | print encodings like this: | Chris Lattner |
2010-02-04 | Use a tab instead of space after .type, for consistency. | Dan Gohman |
2010-02-03 | llvm-mc: Add --show-inst option, for showing the MCInst inline with the assembly | Daniel Dunbar |
2010-02-03 | print instruction encodings with the existing comment facilities, | Chris Lattner |
2010-02-02 | refactor code so that LLVMTargetMachine creates the asmstreamer and | Chris Lattner |
2010-01-26 | Emit .comm alignment in bytes but .align in powers of 2 for ARM ELF. | Rafael Espindola |
2010-01-25 | mcstreamerize gprel32 emission. | Chris Lattner |
2010-01-25 | mcstreamerize .file and .file. This also fixes an issue where the | Chris Lattner |
2010-01-25 | emit ELF .type directives through MCStreamer instead of doing it textually. | Chris Lattner |
2010-01-25 | add symbol attribute support for the ELF .type directive. | Chris Lattner |
2010-01-25 | emit the .size directive for global variables on ELF through | Chris Lattner |
2010-01-25 | all supported target now have aligned common support. | Chris Lattner |
2010-01-23 | mcize lcomm, simplify .comm, extend both to support 64-bit sizes. | Chris Lattner |
2010-01-23 | move the various directive enums out of the MCStreamer class | Chris Lattner |
2010-01-23 | mcize jump table and constant pool entry labels, .local on elf, | Chris Lattner |
2010-01-23 | teach MCAsmStreamer::EmitBytes to use .ascii and .asciz | Chris Lattner |
2010-01-22 | Changes to fix buffering that I forgot to commit with previous patch. | Chris Lattner |
2010-01-22 | Convert some more random-comment-printing stuff to use | Chris Lattner |
2010-01-22 | add a new MCAsmStreamer::GetCommentOS method to simplify stuff | Chris Lattner |
2010-01-22 | rename addComment -> AddComment for consistency. | Chris Lattner |
2010-01-22 | add comment support to the rest of the directives. | Chris Lattner |
2010-01-22 | Add the ability for MCStreamer to emit comments on the same line as directives. | Chris Lattner |
2010-01-22 | pass "-fasm-verbose" into createAsmStreamer. | Chris Lattner |
2010-01-20 | don't forget to initialize an instance variable! | Chris Lattner |
2010-01-20 | use getGlobalDirective(), don't hardcode .globl. PR6093 | Chris Lattner |
2010-01-20 | make mcasmstreamer handle expanding 8 byte integer constants to | Chris Lattner |
2010-01-20 | give createAsmStreamer an 'isLittleEndian' argument. | Chris Lattner |
2010-01-19 | add a new EmitIntValue method that MCStreamer impls can optionally define | Chris Lattner |
2010-01-19 | Generalize mcasmstreamer data emission APIs to take an address space | Chris Lattner |
2010-01-19 | mcstreamerize AsmPrinter::EmitZeros, at least when emitting to the | Chris Lattner |
2010-01-19 | add an MCAsmStreamer::EmitFill specialization of EmitFill that | Chris Lattner |
2010-01-19 | mc'ize some stuff, don't comment out .lcomm directive in -fverbose-asm mode. | Chris Lattner |
2010-01-18 | remove the MAI argument to MCExpr::print and switch overthing to use << when ... | Chris Lattner |
2010-01-17 | now that MCSymbol::print doesn't use it's MAI argument, we can | Chris Lattner |
2009-11-06 | Pass StringRef by value. | Daniel Dunbar |
2009-10-16 | Minor formatting tweaks. | Daniel Dunbar |
2009-10-16 | MC: Tweak variable assignment diagnostics, and make reassignment of non-absolute | Daniel Dunbar |
2009-10-16 | MC: When parsing a variable reference, substitute absolute variables immediately | Daniel Dunbar |
2009-09-14 | Change MCAsmStreamer to take an MCInstPrinter instead of a | Chris Lattner |
2009-09-13 | 'printMCInst' doesn't print newlines after instructions anymore. | Chris Lattner |
2009-09-03 | Thread an MCAsmInfo pointer through the various MC printing APIs, | Chris Lattner |