aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/MC
AgeCommit message (Expand)Author
2010-01-22rename addComment -> AddComment for consistency.Chris Lattner
2010-01-22Simplify some uses of str(n)cmp with StringRef.Benjamin Kramer
2010-01-22Add the ability for MCStreamer to emit comments on the same line as directives.Chris Lattner
2010-01-22pass "-fasm-verbose" into createAsmStreamer.Chris Lattner
2010-01-22move some files out of the llvm-mc tool into the MCParser library soChris Lattner
2010-01-22create a new MCParser library and move some stuff into it.Chris Lattner
2010-01-20Modified MCAsmLexer to return error information upwardSean Callanan
2010-01-20give createAsmStreamer an 'isLittleEndian' argument.Chris Lattner
2010-01-20revert 93934, removing the MCAsmInfo endianness bit. I can'tChris Lattner
2010-01-19give MCAsmInfo a 'has little endian' bit. This is unfortunate, butChris Lattner
2010-01-19add a new EmitIntValue method that MCStreamer impls can optionally defineChris Lattner
2010-01-19eliminate AsmPrinter::EmitZeros: just use MCStreamer directly.Chris Lattner
2010-01-19Promoted the getTok() method to MCAsmParser so thatSean Callanan
2010-01-19Propagated the parser-side Lex function's declaration toSean Callanan
2010-01-19Generalize mcasmstreamer data emission APIs to take an address spaceChris Lattner
2010-01-19add a "MCStreamer::EmitFill" method, and move the default implementationChris Lattner
2010-01-19remove MAI::ZeroDirectiveSuffix, which is only used by MASM,Chris Lattner
2010-01-19stop using the .lcomm pseudoop on darwin, instead, directly use theChris Lattner
2010-01-19hookize the cygwin ".linkonce" directive.Chris Lattner
2010-01-19add a bool for whether .lcomm takes an alignment instead of basing this on "i...Chris Lattner
2010-01-19move production of .reference directives for static ctor/dtor list onChris Lattner
2010-01-19make TLOF subclassify BSS based on linkage type into private, externalChris Lattner
2010-01-19introduce a section kind for common linkage. Use this to slightlyChris Lattner
2010-01-19Cleanup handling of .zerofill on darwin:Chris Lattner
2010-01-18switch x86 zerofill emission over to use MCStreamer.Chris Lattner
2010-01-18remove the MAI argument to MCExpr::print and switch overthing to use << when ...Chris Lattner
2010-01-17now that MCSymbol::print doesn't use it's MAI argument, we can Chris Lattner
2010-01-17Get MCSymbol out of the mangling business, and move all the logicChris Lattner
2010-01-15fix a bug in range information for $42, eliminate an Chris Lattner
2010-01-15extend MCAsmParser::ParseExpression and ParseParenExpressionChris Lattner
2010-01-15Make sure include/llvm/MC/MCParsedAsmOperand.h can be compiled alone.Jeffrey Yasskin
2010-01-14add virtual methods to get the start/end of a MCParsedAsmOperand,Chris Lattner
2010-01-14prune #includes in TargetAsmParser.hChris Lattner
2010-01-14introduce the MCParsedAsmOperand class.Chris Lattner
2010-01-13expose a static function as a static method on the MCSymbol class.Chris Lattner
2009-12-19Fix a bunch of little errors that Clang complains about when its being pedanticDouglas Gregor
2009-11-06Pass StringRef by value.Daniel Dunbar
2009-10-30Remove a redundant copy constructor.Dan Gohman
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-10-19add a twine version of MCContext::GetOrCreateSymbol.Chris Lattner
2009-10-16Minor formatting tweaks.Daniel Dunbar
2009-10-16MC: Switch assembler API to using MCExpr instead of MCValue.Daniel Dunbar
2009-10-16MC: Remove unneeded context argument to MCExpr::Evaluate*.Daniel Dunbar
2009-10-16MC: Move assembler variable values from MCContext to MCSymbol.Daniel Dunbar
2009-10-16MC: Switch MCContext value table to storing MCExprs.Daniel Dunbar
2009-09-18Allow symbols to start from the digit if target requests it. This allows, e.g...Anton Korobeynikov
2009-09-16Big change #1 for personality function references:Chris Lattner
2009-09-16add a helper method for creating MCSymbol and MCSymbolRefExpr atChris Lattner
2009-09-15remove some horrible MAI hooks which fortunately turn out to be always empty.Chris Lattner
2009-09-14Change MCAsmStreamer to take an MCInstPrinter instead of a Chris Lattner