aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter
AgeCommit message (Expand)Author
2009-07-21make AsmPrinter::doFinalization iterate over the global variablesChris Lattner
2009-07-21Rename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPrefix to match theChris Lattner
2009-07-20Pass in the unfortunately named "LessPrivatePrefix" for theBill Wendling
2009-07-20implement a new magic global "llvm.compiler.used" which is like llvm.used, butChris Lattner
2009-07-17remove AsmPrinter::findGlobalValue, just use Value::stripPointerCasts instead.Chris Lattner
2009-07-17Use more terse and precise linkage checks.Chris Lattner
2009-07-17these two pieces of code are the same because we alwaysChris Lattner
2009-07-17Untangle a snarl that I discovered when updating the mangler,Chris Lattner
2009-07-17fix include guard.Chris Lattner
2009-07-16Emit line numbers in asm comments when available.David Greene
2009-07-16Skip special LLVM prefix '1' while emitting linknage name.Devang Patel
2009-07-15remove printSuffixedName.Chris Lattner
2009-07-14Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene
2009-07-14Reapply my previous asmprinter changes now with more testing and two Chris Lattner
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-14Revert r7561{9,8,7,6}, which depend on r75610. Daniel Dunbar
2009-07-14rename getValueName -> getMangledName. These two files have veryChris Lattner
2009-07-14Change the internal interface to makeNameProper to take a bool thatChris Lattner
2009-07-14Do not use Mangler to remove '1' from linkage name.Devang Patel
2009-07-13Use assertion.Devang Patel
2009-07-13Use AsmPrinter's Mangler to remove leading '1' from linkage names.Devang Patel
2009-07-13revert rev. 75503 for now.Devang Patel
2009-07-13Use Mangler to remove leading '1' from linkage names.Devang Patel
2009-07-13Add infrastructure to allow post instruction printing action triggers.David Greene
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-07Accidently dropped this while removing dead code in previous commit.Devang Patel
2009-07-07Remove dead code.Devang Patel
2009-07-01Remove unused AsmPrinter OptLevel argument, and propogate.Daniel Dunbar
2009-06-29Struct types are described using field types only.Devang Patel
2009-06-29s/MainCU/ModuleCU/gDevang Patel
2009-06-29Multiple DW_TAG_compile_unit is not used, afaict, on any target.Devang Patel
2009-06-26Remove debug info anchors - llvm.dbg.compile_units, llvm.dbg.subprogramsDevang Patel
2009-06-25Simplify.Devang Patel
2009-06-25Privatize some more debug-related static data.Owen Anderson
2009-06-24Down with _even more_ statics!Owen Anderson
2009-06-24Down with statics!Owen Anderson
2009-06-24Move local statics to per-instance variables.Owen Anderson
2009-06-24sink management of DwarfWriter & MachineModuleInfo into the AsmPrinter base c...Chris Lattner
2009-06-24sink dwarf finalization out of each target into AsmPrinter::doFinalizationChris Lattner
2009-06-24eliminate the ExtWeakSymbols set from AsmPrinter. This eliminatesChris Lattner
2009-06-24remove dead makefile flags.Chris Lattner
2009-06-19Move up dwarf writer initialization in common AsmPrinter class.Devang Patel
2009-06-18move mangler quote handling from asm printers to TargetAsmInfo.Chris Lattner
2009-06-18simplify macro debug info directive handling.Chris Lattner
2009-06-18On Darwin, ams printer should output a second label before a jump table so th...Evan Cheng
2009-06-16Fix typos.Bill Wendling
2009-06-16Use MainCU if it is available.Devang Patel
2009-06-15Gracefully handle imbalanced inline function begin and end markers.Devang Patel
2009-06-14Fix old-style type names in comments.Dan Gohman