inline away the trivial AsmPrinter::EOL() method.
[oota-llvm.git] / lib / MC /
2010-01-22 Chris LattnerChanges to fix buffering that I forgot to commit with...
2010-01-22 Chris LattnerConvert some more random-comment-printing stuff to use
2010-01-22 Chris Lattneradd a new MCAsmStreamer::GetCommentOS method to simplif...
2010-01-22 Chris Lattnerrename addComment -> AddComment for consistency.
2010-01-22 Benjamin KramerSimplify some uses of str(n)cmp with StringRef.
2010-01-22 Chris Lattneradd comment support to the rest of the directives.
2010-01-22 Chris Lattnerstop using strtoll, it gives windows heartburn.
2010-01-22 Chris LattnerAdd the ability for MCStreamer to emit comments on...
2010-01-22 Chris Lattnerpass "-fasm-verbose" into createAsmStreamer.
2010-01-22 Chris LattnerStop building RTTI information for *most* llvm librarie...
2010-01-22 Chris Lattnermove some files out of the llvm-mc tool into the MCPars...
2010-01-22 Chris Lattnerforgot to svn add these, doh.
2010-01-22 Chris Lattnercreate a new MCParser library and move some stuff into it.
2010-01-20 Chris Lattnerdon't forget to initialize an instance variable!
2010-01-20 Chris Lattneruse getGlobalDirective(), don't hardcode .globl. PR6093
2010-01-20 Chris Lattnermake mcasmstreamer handle expanding 8 byte integer...
2010-01-20 Chris Lattnergive createAsmStreamer an 'isLittleEndian' argument.
2010-01-20 Chris Lattnerrevert 93934, removing the MCAsmInfo endianness bit...
2010-01-19 Chris Lattnergive MCAsmInfo a 'has little endian' bit. This is...
2010-01-19 Chris Lattneradd a new EmitIntValue method that MCStreamer impls...
2010-01-19 Sean CallananPromoted the getTok() method to MCAsmParser so that
2010-01-19 Chris LattnerGeneralize mcasmstreamer data emission APIs to take...
2010-01-19 Chris Lattnermcstreamerize AsmPrinter::EmitZeros, at least when...
2010-01-19 Chris Lattneradd an MCAsmStreamer::EmitFill specialization of EmitFi...
2010-01-19 Chris Lattneradd a "MCStreamer::EmitFill" method, and move the defau...
2010-01-19 Chris Lattnerremove MAI::ZeroDirectiveSuffix, which is only used...
2010-01-19 Chris Lattnerstop using the .lcomm pseudoop on darwin, instead,...
2010-01-19 Chris Lattnermc'ize some stuff, don't comment out .lcomm directive...
2010-01-19 Chris Lattnerhookize the cygwin ".linkonce" directive.
2010-01-19 Chris Lattneradd a bool for whether .lcomm takes an alignment instea...
2010-01-19 Chris Lattnermove production of .reference directives for static...
2010-01-19 Chris LattnerCleanup handling of .zerofill on darwin:
2010-01-19 Nate BegemanRemove this fixme, looking at the linker source, all...
2010-01-18 Chris Lattnerremove the MAI argument to MCExpr::print and switch...
2010-01-17 Chris Lattnernow that MCSymbol::print doesn't use it's MAI argument...
2010-01-17 Chris Lattnerrename NameNeedsEscaping -> NameNeedsQuoting, eliminate...
2010-01-17 Chris LattnerGet MCSymbol out of the mangling business, and move...
2010-01-17 Nate BegemanAdd a note for the macho streamer and remove a used...
2010-01-15 Chris Lattnerunbreak the build, grr symlinks.
2010-01-15 Chris Lattnerextend MCAsmParser::ParseExpression and ParseParenExpre...
2010-01-13 Chris Lattnertidy
2010-01-13 Chris Lattnerexpose a static function as a static method on the...
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2010-01-05 David GreeneChange errs() to dbgs().
2009-11-06 Daniel DunbarPass StringRef by value.
2009-10-26 Chandler CarruthMove DataTypes.h to include/llvm/System, update all...
2009-10-19 Chris Lattneradd a twine version of MCContext::GetOrCreateSymbol.
2009-10-16 Daniel DunbarMC: Set symbol values in MachO MCStreamer.
2009-10-16 Daniel DunbarMinor formatting tweaks.
2009-10-16 Daniel DunbarMC: Switch assembler API to using MCExpr instead of...
2009-10-16 Daniel DunbarMC: Remove unneeded context argument to MCExpr::Evaluate*.
2009-10-16 Daniel DunbarMC: Tweak variable assignment diagnostics, and make...
2009-10-16 Daniel DunbarMC: When parsing a variable reference, substitute absol...
2009-10-16 Daniel DunbarMC: Move assembler variable values from MCContext to...
2009-10-16 Daniel DunbarMC: Switch MCContext value table to storing MCExprs.
2009-10-07 Kevin EnderbyFixed MCSectionMachO::ParseSectionSpecifier to allow...
2009-10-05 Edward O'CallaghanNo newline at end of files.
2009-09-20 Chris Lattnereliminate a use of strtoul.
2009-09-18 Anton KorobeynikovAllow symbols to start from the digit if target request...
2009-09-16 Chris LattnerBig change #1 for personality function references:
2009-09-16 Chris Lattneradd a helper method for creating MCSymbol and MCSymbolR...
2009-09-15 Chris Lattnerremove some horrible MAI hooks which fortunately turn...
2009-09-14 Daniel DunbarUpdate CMake.
2009-09-14 Chris LattnerChange MCAsmStreamer to take an MCInstPrinter instead...
2009-09-14 Chris Lattneradd a new MCInstPrinter class, move the (trivial) MCDis...
2009-09-13 Chris Lattner'printMCInst' doesn't print newlines after instructions...
2009-09-13 Chris Lattnerremove MAI::JumpTableSpecialLabelPrefix now that MAI
2009-09-13 Chris Lattnerfix MCSymbol printing on darwin to exactly match the...
2009-09-13 Chris LattnerMake the MC symbol printer and llvm::Mangler exactly...
2009-09-12 Chris Lattnereliminate the "MBBLabel" MCOperand type, and just use...
2009-09-11 Ted KremenekUpdate CMake files.
2009-09-09 Chris Lattnercanonicalize namespace gymnastics
2009-09-09 Sean CallananAdded an abstract superclass, MCDisassembler, for
2009-09-09 Chris Lattnerallow @ in symbol names without quoting the identifier...
2009-09-08 Chris Lattnerparenthesize symbol names that start with $, fixing...
2009-09-08 Chris LattnerPrint "X-42" instead of "X+-42".
2009-09-08 Chris Lattnermake formatting of expressions more closely match the...
2009-09-08 Chris Lattnertidy whitespace.
2009-09-03 Chris Lattnerfix MCSymbol printing to exactly match the normal mangl...
2009-09-03 Chris LattnerThread an MCAsmInfo pointer through the various MC...
2009-09-03 Chris Lattnerinline insertion operators.
2009-09-03 Chris Lattneroutput alignment value in hex so that we get:
2009-09-01 Daniel Dunbarllvm-mc: Store MCSymbolData value as a pointer (to...
2009-08-31 Daniel Dunbarllvm-mc: Pass values to MCStreamer as MCExprs, not...
2009-08-31 Daniel Dunbarllvm-mc: Simplify EmitAssignment ('.set' is identical...
2009-08-31 Daniel Dunbarllvm-mc: Switch MCInst to storing an MCExpr* instead...
2009-08-31 Daniel Dunbarllvm-mc: Make MCSymbolData symbol member const.
2009-08-31 Daniel Dunbarllvm-mc: Add MCContext to MCAssembler.
2009-08-31 Daniel Dunbarllvm-mc: Add MCExpr::{dump,print}.
2009-08-31 Daniel Dunbarllvm-mc: Switch MCExpr construction to using static...
2009-08-31 Daniel Dunbarllvm-mc: Move AsmExpr into MC lib (as MCExpr).
2009-08-30 Daniel Dunbarllvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol...
2009-08-28 Daniel Dunbarllvm-mc: .lsym is more unsupported than unimplemented...
2009-08-28 Daniel Dunbarllvm-mc: Support .comm emission.
2009-08-28 Daniel Dunbarllvm-mc: Support .zerofill emission.
2009-08-28 Daniel Dunbarllvm-mc: Tweak section alignment and size computation...
2009-08-28 Daniel Dunbarllvm-mc: Factor getSectionData out of SwitchSection.
2009-08-28 Daniel Dunbarllvm-mc: Emit .lcomm as .zerofill.
next