aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/AsmPrinter
AgeCommit message (Expand)Author
2009-08-13TargetRegistry: Reorganize AsmPrinter construction so that clients pass in theDaniel Dunbar
2009-08-13Various AsmWriter output cleanups. Use WriteAsOperand instead ofDan Gohman
2009-08-10split MachO section handling stuff out to its out .h/.cpp file.Chris Lattner
2009-08-10Fix a weird ppc64-specific link error during an llvm-gcc build:Chris Lattner
2009-08-10Make the big switch: Change MCSectionMachO to represent a section *semantically*Chris Lattner
2009-08-08make printInstruction return void since its result is omitted. Make the Chris Lattner
2009-08-08don't check the result of printInstruction anymore.Chris Lattner
2009-08-05Remove dead code. MDNode and MDString are not Constant anymore.Devang Patel
2009-08-05Don't flush the raw_ostream between each MachineFunction. These flushDan Gohman
2009-08-04make MergeableCString be a SectionKind "abstract class", andChris Lattner
2009-08-03switch ppc to using SwitchToSection instead of textual section stuff.Chris Lattner
2009-07-31switch off of 'Section' onto MCSection. We're not properly usingChris Lattner
2009-07-29pass the mangler down into the various SectionForGlobal methods.Chris Lattner
2009-07-28Rename MDNode.h header. It defines MDnode and other metadata classes.Devang Patel
2009-07-28Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner
2009-07-27Eliminate SectionFlags, just embed a SectionKind into SectionChris Lattner
2009-07-26Eliminate some uses of DOUT, cerr, and getNameStart().Daniel Dunbar
2009-07-25Remove Value::{isName, getNameRef}.Daniel Dunbar
2009-07-25Add new helpers for registering targets.Daniel Dunbar
2009-07-24use section flags more correctly.Chris Lattner
2009-07-24reduce api exposure: clients shouldn't call SectionKindForGlobal directly.Chris Lattner
2009-07-21make AsmPrinter::doFinalization iterate over the global variablesChris Lattner
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-18Put Target definitions inside Target specific header, and llvm namespace.Daniel Dunbar
2009-07-16Kill off <TARGET>MachineModule variables, and <TARGETASMPRINTER>ForceLinkDaniel Dunbar
2009-07-16fix section switching to ensure that stubs are emitted to the rightChris Lattner
2009-07-15Remove old style hacks to register AsmPrinter into TargetMachine.Daniel Dunbar
2009-07-15Reapply TargetRegistry refactoring commits.Daniel Dunbar
2009-07-15Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repai...Stuart Hastings
2009-07-15Register Target's TargetMachine and AsmPrinter in the new registry.Daniel Dunbar
2009-07-15get the PPC stub temporary label from the mangler instead of Chris Lattner
2009-07-15turn some if/then's into ?:Chris Lattner
2009-07-15eliminate a bunch of printSuffixedName's by using info computed fromChris Lattner
2009-07-15convert FnStubs to using a more structured form, eliminatingChris Lattner
2009-07-15simplify "EmitExternalGlobal": it is only used to output aChris Lattner
2009-07-15Convert GVStubs and HiddenGVStubs to work more like the X86 backend, thisChris Lattner
2009-07-15minor cleanups: only switch sections once before all function stubs, instead ofChris 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 r75615, which depended on 75610.Daniel Dunbar
2009-07-14eliminate extra space.Torok Edwin
2009-07-14Rename getValueName -> getMangledName.Chris Lattner
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-08Implement changes from Chris's feedback.Torok Edwin
2009-07-02simplify some logic by using isWeakForLinker(). Thanks to Anton forChris Lattner
2009-07-01Fix codegen for references to available_externally symbols. This fixesChris Lattner
2009-07-01Remove unused AsmPrinter OptLevel argument, and propogate.Daniel Dunbar
2009-06-30Add an "alignment" field to the MachineFunction object. It makes more sense toBill Wendling