aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC
Commit message (Expand)AuthorAgeFilesLines
* forgot to svn add these, doh.Chris Lattner2010-01-222-0/+22
* create a new MCParser library and move some stuff into it.Chris Lattner2010-01-225-7/+5
* don't forget to initialize an instance variable!Chris Lattner2010-01-201-2/+2
* use getGlobalDirective(), don't hardcode .globl. PR6093Chris Lattner2010-01-201-13/+13
* make mcasmstreamer handle expanding 8 byte integer constants to Chris Lattner2010-01-201-3/+12
* give createAsmStreamer an 'isLittleEndian' argument.Chris Lattner2010-01-201-3/+8
* revert 93934, removing the MCAsmInfo endianness bit. I can'tChris Lattner2010-01-203-5/+3
* give MCAsmInfo a 'has little endian' bit. This is unfortunate, butChris Lattner2010-01-193-3/+5
* add a new EmitIntValue method that MCStreamer impls can optionally defineChris Lattner2010-01-192-6/+36
* Promoted the getTok() method to MCAsmParser so thatSean Callanan2010-01-191-1/+5
* Generalize mcasmstreamer data emission APIs to take an address spaceChris Lattner2010-01-194-33/+41
* mcstreamerize AsmPrinter::EmitZeros, at least when emitting to the Chris Lattner2010-01-191-0/+2
* add an MCAsmStreamer::EmitFill specialization of EmitFill thatChris Lattner2010-01-191-0/+15
* add a "MCStreamer::EmitFill" method, and move the default implementationChris Lattner2010-01-191-0/+9
* remove MAI::ZeroDirectiveSuffix, which is only used by MASM,Chris Lattner2010-01-191-1/+0
* stop using the .lcomm pseudoop on darwin, instead, directly use theChris Lattner2010-01-192-3/+2
* mc'ize some stuff, don't comment out .lcomm directive in -fverbose-asm mode.Chris Lattner2010-01-191-3/+7
* hookize the cygwin ".linkonce" directive.Chris Lattner2010-01-192-0/+2
* add a bool for whether .lcomm takes an alignment instead of basing this on "i...Chris Lattner2010-01-192-0/+2
* move production of .reference directives for static ctor/dtor list onChris Lattner2010-01-192-0/+2
* Cleanup handling of .zerofill on darwin:Chris Lattner2010-01-192-2/+2
* Remove this fixme, looking at the linker source, all targets pad to 4 bytes.Nate Begeman2010-01-191-2/+0
* remove the MAI argument to MCExpr::print and switch overthing to use << when ...Chris Lattner2010-01-183-23/+11
* now that MCSymbol::print doesn't use it's MAI argument, we can Chris Lattner2010-01-174-31/+15
* rename NameNeedsEscaping -> NameNeedsQuoting, eliminate the checkChris Lattner2010-01-171-9/+4
* Get MCSymbol out of the mangling business, and move all the logicChris Lattner2010-01-171-57/+4
* Add a note for the macho streamer and remove a used of the mangler from the s...Nate Begeman2010-01-171-0/+2
* unbreak the build, grr symlinks.Chris Lattner2010-01-151-1/+1
* extend MCAsmParser::ParseExpression and ParseParenExpressionChris Lattner2010-01-151-1/+14
* tidyChris Lattner2010-01-131-4/+3
* expose a static function as a static method on the MCSymbol class.Chris Lattner2010-01-131-4/+7
* Change errs() to dbgs().David Greene2010-01-051-4/+5
* Change errs() to dbgs().David Greene2010-01-051-1/+2
* Change errs() to dbgs().David Greene2010-01-051-1/+2
* Change errs() to dbgs().David Greene2010-01-051-2/+3
* Pass StringRef by value.Daniel Dunbar2009-11-0610-16/+15
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* add a twine version of MCContext::GetOrCreateSymbol.Chris Lattner2009-10-191-1/+9
* MC: Set symbol values in MachO MCStreamer.Daniel Dunbar2009-10-161-1/+3
* Minor formatting tweaks.Daniel Dunbar2009-10-162-34/+34
* MC: Switch assembler API to using MCExpr instead of MCValue.Daniel Dunbar2009-10-162-31/+41
* MC: Remove unneeded context argument to MCExpr::Evaluate*.Daniel Dunbar2009-10-162-9/+8
* 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
* MC: Move assembler variable values from MCContext to MCSymbol.Daniel Dunbar2009-10-161-2/+5
* MC: Switch MCContext value table to storing MCExprs.Daniel Dunbar2009-10-162-21/+3
* Fixed MCSectionMachO::ParseSectionSpecifier to allow an attribute of "none" soKevin Enderby2009-10-071-4/+6
* No newline at end of files.Edward O'Callaghan2009-10-052-2/+2
* eliminate a use of strtoul.Chris Lattner2009-09-201-12/+2
* Allow symbols to start from the digit if target requests it. This allows, e.g...Anton Korobeynikov2009-09-182-6/+10