aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Mangler.cpp
AgeCommit message (Expand)Author
2010-01-16move the mangler into libtarget from vmcore.Chris Lattner
2010-01-16reapply the mangler gutting patch.Chris Lattner
2010-01-16Revert 93648.Rafael Espindola
2010-01-16Mangler::getMangledName is now dead, remove it and all the other stuff in Man...Chris Lattner
2010-01-16add an inefficient version of getNameWithPrefix that returns an std::string.Chris Lattner
2010-01-13Introduce Twine::toStringRef, a variant of toVector which avoids the copy if theBenjamin Kramer
2010-01-13don't add the \1 to the name.Chris Lattner
2010-01-13add new isSingleStringRef()/getSingleStringRef() methods to twine, Chris Lattner
2010-01-13ugh, my last patch just sped up a method and changed all the clientsChris Lattner
2010-01-13change Mangler::makeNameProper to return its result in a SmallVectorChris Lattner
2010-01-13my mistake, Mangler::makeNameProper wants to take a twine, not a stringref!Chris Lattner
2010-01-13change makeNameProper to take a stringref instead of std::string.Chris Lattner
2009-09-21initialize SymbolsCanStartWithDigit to false by defaultNuno Lopes
2009-09-18Allow symbols to start from the digit if target requests it. This allows, e.g...Anton Korobeynikov
2009-09-13Make the MC symbol printer and llvm::Mangler exactly agree on manglingChris Lattner
2009-09-11fix prefix ordering, it's L_foo not _LfooChris Lattner
2009-09-11add a new Mangler::getNameWithPrefix API which returns theChris Lattner
2009-08-17Add prefix only if it is needed.Devang Patel
2009-07-22Switch some clients to Value::getName(), and other getName() userDaniel Dunbar
2009-07-20Rename Mangler linkage enums to something less gross.Bill Wendling
2009-07-20Add plumbing for the `linker_private' linkage type. This type is meant forBill Wendling
2009-07-15eliminate the Mangler::PreserveAsmNames bit, the sole client of thisChris Lattner
2009-07-14Reapply my previous asmprinter changes now with more testing and two Chris Lattner
2009-07-14Revert r75610 (and r75620, which was blocking the revert), in the hopes ofDaniel Dunbar
2009-07-14Change the X86 asmprinter to use the mangler to apply suffixes like "$non_laz...Chris Lattner
2009-07-14Change the internal interface to makeNameProper to take a bool thatChris Lattner
2009-07-14the mangler can never mangle intrinsics, don't allow this.Chris Lattner
2009-07-14rename Memo/Count to AnonGlobalIDs/NextAnonGlobalID to be more Chris Lattner
2009-07-13remove Mangler::getTypeID and related data, it was only used for manglingChris Lattner
2009-07-13remove mangler support for mangling local names. Mangler should only be Chris Lattner
2009-07-13the mangler should put suffixes on unnamed global's mangled names as well Chris Lattner
2009-07-13Two changes:Chris Lattner
2009-06-23Revert my last series of commits related to Timer and 64-bit atomics. Not al...Owen Anderson
2009-06-23Atomic ops that do arithmetic use signed arithmetic.Owen Anderson
2009-06-23Label the existing atomic functions as 32-bit specific, and add a 64-bit one ...Owen Anderson
2009-06-17Use atomic increment here.Owen Anderson
2009-05-05Quotes should be printed before private prefix; some code clean up.Evan Cheng
2009-01-15Add the private linkage.Rafael Espindola
2009-01-12Remove some dead code from the days llvm had type planes.Rafael Espindola
2008-07-10- Replace use of std::map<std::string, ..> with StringMap. Replace use of std...Evan Cheng
2008-05-15Fix a bunch of 80col violations that arose from the Create API change. Tweak ...Gabor Greif
2008-05-06Remove uses of llvm/System/IncludeFile.h that are no longer needed.Dan Gohman
2008-02-15targets that support quotes for mangled names still need to escape newlinesChris Lattner
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-03Rather than having special rules like "intrinsics cannotDuncan Sands
2007-09-17Add support for appending a suffix to the end of a mangled name.Bill Wendling
2007-09-07Add lengthof and endof templates that hide a lot of sizeof computations.Owen Anderson
2007-01-30For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer
2006-09-14Adding dllimport, dllexport and external weak linkage types.Anton Korobeynikov
2006-09-07Add new option to leave asm names aloneChris Lattner