aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/ELFObjectWriter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Another case of 256 sections not being enough :-)Rafael Espindola2010-10-061-1/+1
* Get binding and visibility info from the the alias, but Type from the symbolRafael Espindola2010-10-061-3/+25
* If a symbol is global, reloc against it even if it is in a mergeable section.Rafael Espindola2010-10-061-3/+3
* Make sure weak symbols are listed after the local ones.Rafael Espindola2010-10-061-2/+3
* Correctly handle GOTPCREL relocations.Rafael Espindola2010-10-061-3/+6
* Use a relocation against the symbol if it is a PLT and the symbol is in anotherRafael Espindola2010-10-051-2/+11
* Implement more alias cases.Rafael Espindola2010-10-051-0/+11
* 256 sections should be enough for anyone...Rafael Espindola2010-10-051-1/+1
* Don't crash in a strange .size directive.Rafael Espindola2010-10-051-5/+15
* Implement a simple alias case and refactor the code a bit so that theRafael Espindola2010-10-051-17/+35
* Produce a undefined reference to _GLOBAL_OFFSET_TABLE_ when needed.Rafael Espindola2010-10-051-1/+25
* On ELF we need to know which symbols are used in relocations to decide ifRafael Espindola2010-10-051-23/+44
* Implement ELF::R_X86_64_GOTPCREL.Rafael Espindola2010-10-041-0/+3
* Move isFixupKindX86PCRel.Rafael Espindola2010-10-041-12/+12
* Produce a R_X86_64_PLT32 when needed.Rafael Espindola2010-10-041-1/+10
* Produce a R_X86_64_GOT32 when needed.Rafael Espindola2010-10-041-1/+12
* Include the section address in the computation of the relocation.Rafael Espindola2010-10-041-1/+8
* Correctly compute the relocation when it is not in the first fragment.Rafael Espindola2010-10-041-1/+1
* Implement a very basic PIC case.Rafael Espindola2010-10-031-0/+7
* Factor some logic into ShouldRelocOnSymbol. This simplifies the code andRafael Espindola2010-09-301-38/+31
* Correctly produce R_X86_64_32 or R_X86_64_32S.Rafael Espindola2010-09-301-8/+9
* Make it possible for the MCObjectWriter to decide if a given fixup is fullyRafael Espindola2010-09-301-4/+51
* On elf, undefined symbols can start with .L.Rafael Espindola2010-09-281-1/+4
* Write relocations in the end of the file. This matches what gas does andRafael Espindola2010-09-271-2/+1
* Factor symbol value computation into a function.Rafael Espindola2010-09-271-9/+17
* Move ELF to HasReliableSymbolDifference=true. Also take the opportunity to putRafael Espindola2010-09-251-7/+15
* Reapply 114678 and 114667. Reverting them did not fix the bot:Rafael Espindola2010-09-241-2/+5
* Revert 114678 and 114667 to see ifRafael Espindola2010-09-241-5/+2
* Correctly handle weak undefined symbols. Before we would get a invalid bindingRafael Espindola2010-09-231-5/+20
* Correctly compute the offset of the symbol. Forgot these bits from theRafael Espindola2010-09-231-1/+4
* Represent relocations against local symbols as relocations against the sectionRafael Espindola2010-09-231-1/+1
* Fix the FIXME.Rafael Espindola2010-09-231-1/+1
* Fix typo and add a FIXME.Rafael Espindola2010-09-221-1/+2
* Revert unrelated change that was accidentally included in the previous commit.Rafael Espindola2010-09-211-4/+1
* Implement support for .local and its "interesting" interactions with .comm.Rafael Espindola2010-09-211-5/+10
* Produce a R_X86_64_32 when the value is >=0.Rafael Espindola2010-09-201-2/+5
* Make sure the STT_FILE symbol is the first one in the symbol table.Rafael Espindola2010-09-181-0/+13
* Avoid relocations in a common case.Rafael Espindola2010-09-171-1/+10
* Print the address of sections as 0 and create the metadata sections in theRafael Espindola2010-09-161-33/+24
* MCELF: Write relocation fragments in the right endian.Benjamin Kramer2010-09-091-5/+26
* Make ELF OS ABI dependent on the OS from target triple.Roman Divacky2010-09-091-4/+13
* ELF_STB_Local is 0 so setting and checking it must be done speciallyRoman Divacky2010-09-081-2/+2
* Unresolved weak symbols have value equal zero.Roman Divacky2010-09-081-1/+1
* MCELF: Align symtab, relocation sections and section headers properly. Patch ...Benjamin Kramer2010-09-061-12/+24
* Allow creation of SHT_NULL sections, from Roman Divacky.Benjamin Kramer2010-08-311-0/+1
* MCELF: The value of all common symbols is the offset from the start of the se...Benjamin Kramer2010-08-301-3/+5
* The value is offset from the start of the section for non-common symbols, sub...Benjamin Kramer2010-08-301-0/+2
* Index external symbols by symbol table instead of parent section, by Roman Di...Benjamin Kramer2010-08-301-1/+1
* squish dead code.Chris Lattner2010-08-281-9/+8
* MCELF: Always overwrite FixedValue.Benjamin Kramer2010-08-271-2/+3