summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter
AgeCommit message (Expand)AuthorFilesLines
2009-07-31switch off of 'Section' onto MCSection. We're not properly usingChris Lattner3-11/+14
2009-07-31refactor section construction in TLOF to be through an explicitChris Lattner1-0/+4
2009-07-30Start using DebugInfoFinder.Devang Patel1-13/+11
2009-07-29Forgot to output the base offset.Bill Wendling1-4/+8
2009-07-29pass the mangler down into the various SectionForGlobal methods.Chris Lattner1-2/+3
2009-07-29Move comment to above method.Bill Wendling1-21/+21
2009-07-29- Temporarily unbreak the build by forcing the TType "absptr", which isn'tBill Wendling2-50/+75
2009-07-28Cleanup code to use iterators instead of ".size()".Bill Wendling1-21/+25
2009-07-28Doxygenify comments.Bill Wendling2-2/+4
2009-07-28Split out large loop into it's very own method. No intended functionality cha...Bill Wendling2-42/+62
2009-07-28Output the EH TType format and base offset only if there are types that we'reBill Wendling1-6/+15
2009-07-28Use the preferred EH data format for the preferred EH data format.Bill Wendling1-2/+2
2009-07-28Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner3-18/+24
2009-07-27hoist MCContext/MCStreamer up to AsmPrinter since we're going to start creatingChris Lattner1-0/+11
2009-07-27Eliminate SectionFlags, just embed a SectionKind into SectionChris Lattner1-10/+10
2009-07-26Remove Value::getName{Start,End}, the last of the old Name APIs.Daniel Dunbar3-6/+5
2009-07-26remove a densemap from TargetAsmInfo that was uniquing the targetflags strings,Chris Lattner1-4/+8
2009-07-26make SectionKind know whether a symbol is weak or not in additionChris Lattner1-8/+10
2009-07-26rename Mergable -> Mergeable and Writable -> WriteableChris Lattner1-5/+5
2009-07-26two files I missed in the last commit.Chris Lattner1-6/+6
2009-07-26simplify getSectionForMergableConstant to take a SectionKind.Chris Lattner1-5/+16
2009-07-25Remove Value::{isName, getNameRef}.Daniel Dunbar1-1/+1
2009-07-24remove a use of SectionFlagsForGlobal.Chris Lattner1-3/+4
2009-07-24document SectionFlags::Named better and make it more easily greppable byChris Lattner1-1/+1
2009-07-22Put comment printing under asm-verbose.David Greene1-13/+36
2009-07-22remove the SelectSectionForMachineConst hook, replacing it withChris Lattner1-2/+7
2009-07-21make AsmPrinter::doFinalization iterate over the global variablesChris Lattner1-0/+5
2009-07-21Rename LessPrivateGlobalPrefix -> LinkerPrivateGlobalPrefix to match theChris Lattner1-1/+1
2009-07-20Pass in the unfortunately named "LessPrivatePrefix" for theBill Wendling1-1/+2
2009-07-20implement a new magic global "llvm.compiler.used" which is like llvm.used, butChris Lattner2-3/+3
2009-07-17remove AsmPrinter::findGlobalValue, just use Value::stripPointerCasts instead.Chris Lattner1-28/+3
2009-07-17Use more terse and precise linkage checks.Chris Lattner1-15/+6
2009-07-17these two pieces of code are the same because we alwaysChris Lattner1-12/+3
2009-07-17Untangle a snarl that I discovered when updating the mangler,Chris Lattner2-15/+9
2009-07-17fix include guard.Chris Lattner1-2/+2
2009-07-16Emit line numbers in asm comments when available.David Greene1-2/+15
2009-07-16Skip special LLVM prefix '1' while emitting linknage name.Devang Patel1-4/+25
2009-07-15remove printSuffixedName.Chris Lattner1-27/+5
2009-07-14Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene1-4/+4
2009-07-14Reapply my previous asmprinter changes now with more testing and two Chris Lattner1-11/+11
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin3-14/+14
2009-07-14Revert r7561{9,8,7,6}, which depend on r75610. Daniel Dunbar1-11/+11
2009-07-14rename getValueName -> getMangledName. These two files have veryChris Lattner1-11/+11
2009-07-14Change the internal interface to makeNameProper to take a bool thatChris Lattner2-4/+4
2009-07-14Do not use Mangler to remove '1' from linkage name.Devang Patel1-13/+4
2009-07-13Use assertion.Devang Patel1-2/+4
2009-07-13Use AsmPrinter's Mangler to remove leading '1' from linkage names.Devang Patel1-4/+9
2009-07-13revert rev. 75503 for now.Devang Patel2-19/+4
2009-07-13Use Mangler to remove leading '1' from linkage names.Devang Patel2-4/+19
2009-07-13Add infrastructure to allow post instruction printing action triggers.David Greene1-0/+13