aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ELFWriter.cpp
AgeCommit message (Expand)Author
2010-03-12give Mangler access to TargetData.Chris Lattner
2010-03-12make the mangler take an MCContext instead of an MAI.Chris Lattner
2010-03-11change MCContext to always have an MCAsmInfo.Chris Lattner
2010-02-02remove dead #include, stupid symlinks.Chris Lattner
2010-02-02Remove a bunch of stuff around the edges of the ELF writer.Chris Lattner
2010-01-23remove a dead call.Chris Lattner
2010-01-17now that mangler is in libtarget, it can use MCAsmInfo instead of clientsChris Lattner
2010-01-16move the mangler into libtarget from vmcore.Chris Lattner
2010-01-16remove a couple of actively incorrect uses of getMangledName.Chris Lattner
2010-01-04Change errs() to dbgs().David Greene
2009-10-05strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner
2009-09-01Fix ELF Writter related memory leaksBruno Cardoso Lopes
2009-08-22rename TAI -> MAI, being careful not to make MAILJMP instructions :)Chris Lattner
2009-08-22Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner
2009-08-22Convert DOUT to DEBUG(errs()...).Bill Wendling
2009-08-14*try* to use a better name to describe how common symbols are marked on the e...Bruno Cardoso Lopes
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-13Remove hack used to strip unwanted chars from section nameBruno Cardoso Lopes
2009-08-13Change MCSectionELF to represent a section semantically instead ofBruno Cardoso Lopes
2009-08-10Move ConstantExpr handling to ResolveConstantExpr method and alsoBruno Cardoso Lopes
2009-08-08sink the 'name' and 'isdirective' state out of MCSection into its derived cla...Chris Lattner
2009-08-08ELF improvements:Bruno Cardoso Lopes
2009-08-05- Remove custom handling of jumptables by the elf writter (this wasBruno Cardoso Lopes
2009-08-02remove the dead ELFTargetAsmInfo.h/cpp file. TargetAsmInfoChris Lattner
2009-08-01(re)introduce new simpler apis for creation sectionkinds.Chris Lattner
2009-08-01Remove "JumpTableDataSection" from TAI, instead, have AsmPrinterChris Lattner
2009-08-01Change SectionKind to be a property that is true of a *section*, itChris Lattner
2009-07-31switch off of 'Section' onto MCSection. We're not properly usingChris Lattner
2009-07-31refactor section construction in TLOF to be through an explicitChris Lattner
2009-07-29pass the mangler down into the various SectionForGlobal methods.Chris Lattner
2009-07-28Handle null and file symbol on doInitializationBruno Cardoso Lopes
2009-07-28Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner
2009-07-27add module identifier to the elf object fileBruno Cardoso Lopes
2009-07-27Handle external symbols for ELF and add some static methods to ELFSymBruno Cardoso Lopes
2009-07-27Eliminate SectionFlags, just embed a SectionKind into SectionChris Lattner
2009-07-26make SectionKind know whether a symbol is weak or not in additionChris Lattner
2009-07-26rename Mergable -> Mergeable and Writable -> WriteableChris Lattner
2009-07-26two files I missed in the last commit.Chris Lattner
2009-07-26simplify getSectionForMergableConstant to take a SectionKind.Chris Lattner
2009-07-25this is (unfortunately) several changes mixed together:Chris Lattner
2009-07-22remove the SelectSectionForMachineConst hook, replacing it withChris Lattner
2009-07-21Support adding relocations for data sections, handling the cases whereBruno Cardoso Lopes
2009-07-20For PC relative relocations where symbols are defined in the same section theyBruno Cardoso Lopes
2009-07-18Use R_X86_64_32S to handle Jump Table Index relocation entries. Hide TAI usag...Bruno Cardoso Lopes
2009-07-18Add support to properly reference private symbols on relocation entries.Bruno Cardoso Lopes
2009-07-17revert one of the loops to use indicies over iterators because there are vect...Bruno Cardoso Lopes
2009-07-16Fix coding style issues pointed by Bill.Bruno Cardoso Lopes
2009-07-15use std::vector instead of std::list for both Section and Symbol lists becauseBruno Cardoso Lopes
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