aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ELFWriter.cpp
AgeCommit message (Expand)Author
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
2009-07-14Revert r7561{9,8,7,6}, which depend on r75610. Daniel Dunbar
2009-07-14Rename getValueName -> getMangledNameChris Lattner
2009-07-13Cleanup the global emission and refactor some codeBruno Cardoso Lopes
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-06Changed ELFCodeEmitter to inherit from ObjectCodeEmitterBruno Cardoso Lopes
2009-07-06Add the Object Code Emitter class. Original patch by Aaron Gray, I did someBruno Cardoso Lopes
2009-07-03Factor some code out and support for Jump Table relocationsBruno Cardoso Lopes
2009-07-02shrinking down #includesBruno Cardoso Lopes
2009-06-25Support Constant Pool SectionsBruno Cardoso Lopes
2009-06-23Use a default alignment for data and bss sections.Bruno Cardoso Lopes
2009-06-22Use different functions to emit the string and symbol tables.Bruno Cardoso Lopes
2009-06-22Add more methods to gather target specific elf stuffBruno Cardoso Lopes
2009-06-14Introduce new BinaryObject (blob) class, ELF Writer modified to use it. Binar...Bruno Cardoso Lopes
2009-06-11Support for ELF VisibilityBruno Cardoso Lopes
2009-06-07Delete comment and fix typoBruno Cardoso Lopes
2009-06-07Simple ELF32/64 binary files can now be emitted for x86 and x86_64 withoutBruno Cardoso Lopes
2009-06-06Remove elf specific info from ELFWriter.h to Elf.h. Code cleanup and more com...Bruno Cardoso Lopes
2009-06-03Move ELFCodeEmiter stuff to new filesBruno Cardoso Lopes
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-03-07Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman
2009-01-15Add the private linkage.Rafael Espindola
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands
2009-01-04elf writer really wants the size of the global, not the size Chris Lattner
2009-01-04The llvm::ELFWriter::EmitGlobal() method is calling theBill Wendling
2008-12-10Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some...Evan Cheng
2008-11-08Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ...Evan Cheng
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-08-21Use raw_ostream throughout the AsmPrinter.Owen Anderson