aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ELFWriter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Get rid of a bunch of duplicated ELF enum values.Eli Friedman2010-07-161-14/+14
* Add more const qualifiers for LLVM IR pointers in CodeGen.Dan Gohman2010-04-151-1/+1
* Use twines to simplify calls to report_fatal_error. For code size and readabi...Benjamin Kramer2010-04-081-4/+2
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-2/+2
* give Mangler access to TargetData.Chris Lattner2010-03-121-1/+1
* make the mangler take an MCContext instead of an MAI.Chris Lattner2010-03-121-1/+1
* change MCContext to always have an MCAsmInfo.Chris Lattner2010-03-111-1/+1
* remove dead #include, stupid symlinks.Chris Lattner2010-02-021-1/+0
* Remove a bunch of stuff around the edges of the ELF writer.Chris Lattner2010-02-021-9/+0
* remove a dead call.Chris Lattner2010-01-231-4/+0
* now that mangler is in libtarget, it can use MCAsmInfo instead of clientsChris Lattner2010-01-171-1/+1
* move the mangler into libtarget from vmcore.Chris Lattner2010-01-161-1/+1
* remove a couple of actively incorrect uses of getMangledName.Chris Lattner2010-01-161-4/+6
* Change errs() to dbgs().David Greene2010-01-041-1/+1
* strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner2009-10-051-7/+6
* Fix ELF Writter related memory leaksBruno Cardoso Lopes2009-09-011-7/+18
* rename TAI -> MAI, being careful not to make MAILJMP instructions :)Chris Lattner2009-08-221-2/+2
* Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner2009-08-221-2/+2
* Convert DOUT to DEBUG(errs()...).Bill Wendling2009-08-221-6/+5
* *try* to use a better name to describe how common symbols are marked on the e...Bruno Cardoso Lopes2009-08-141-1/+1
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-7/+9
* Remove hack used to strip unwanted chars from section nameBruno Cardoso Lopes2009-08-131-98/+64
* Change MCSectionELF to represent a section semantically instead ofBruno Cardoso Lopes2009-08-131-16/+20
* Move ConstantExpr handling to ResolveConstantExpr method and alsoBruno Cardoso Lopes2009-08-101-27/+84
* sink the 'name' and 'isdirective' state out of MCSection into its derived cla...Chris Lattner2009-08-081-8/+12
* ELF improvements:Bruno Cardoso Lopes2009-08-081-53/+87
* - Remove custom handling of jumptables by the elf writter (this wasBruno Cardoso Lopes2009-08-051-77/+157
* remove the dead ELFTargetAsmInfo.h/cpp file. TargetAsmInfoChris Lattner2009-08-021-1/+1
* (re)introduce new simpler apis for creation sectionkinds.Chris Lattner2009-08-011-8/+7
* Remove "JumpTableDataSection" from TAI, instead, have AsmPrinterChris Lattner2009-08-011-2/+8
* Change SectionKind to be a property that is true of a *section*, itChris Lattner2009-08-011-6/+6
* switch off of 'Section' onto MCSection. We're not properly usingChris Lattner2009-07-311-2/+3
* refactor section construction in TLOF to be through an explicitChris Lattner2009-07-311-0/+8
* pass the mangler down into the various SectionForGlobal methods.Chris Lattner2009-07-291-1/+1
* Handle null and file symbol on doInitializationBruno Cardoso Lopes2009-07-281-8/+7
* Rip all of the global variable lowering logic out of TargetAsmInfo. SinceChris Lattner2009-07-281-2/+10
* add module identifier to the elf object fileBruno Cardoso Lopes2009-07-271-3/+8
* Handle external symbols for ELF and add some static methods to ELFSymBruno Cardoso Lopes2009-07-271-21/+55
* Eliminate SectionFlags, just embed a SectionKind into SectionChris Lattner2009-07-271-7/+7
* make SectionKind know whether a symbol is weak or not in additionChris Lattner2009-07-261-6/+8
* rename Mergable -> Mergeable and Writable -> WriteableChris Lattner2009-07-261-6/+5
* two files I missed in the last commit.Chris Lattner2009-07-261-6/+6
* simplify getSectionForMergableConstant to take a SectionKind.Chris Lattner2009-07-261-4/+14
* this is (unfortunately) several changes mixed together:Chris Lattner2009-07-251-1/+1
* remove the SelectSectionForMachineConst hook, replacing it withChris Lattner2009-07-221-1/+3
* Support adding relocations for data sections, handling the cases whereBruno Cardoso Lopes2009-07-211-24/+48
* For PC relative relocations where symbols are defined in the same section theyBruno Cardoso Lopes2009-07-201-27/+53