Make it possible for the MCObjectWriter to decide if a given fixup is fully
[oota-llvm.git] / lib / MC / ELFObjectWriter.cpp
2010-09-30 Rafael EspindolaMake it possible for the MCObjectWriter to decide if...
2010-09-28 Rafael EspindolaOn elf, undefined symbols can start with .L.
2010-09-27 Rafael EspindolaWrite relocations in the end of the file. This matches...
2010-09-27 Rafael EspindolaFactor symbol value computation into a function.
2010-09-25 Rafael EspindolaMove ELF to HasReliableSymbolDifference=true. Also...
2010-09-24 Rafael EspindolaReapply 114678 and 114667. Reverting them did not fix...
2010-09-24 Rafael EspindolaRevert 114678 and 114667 to see if
2010-09-23 Rafael EspindolaCorrectly handle weak undefined symbols. Before we...
2010-09-23 Rafael EspindolaCorrectly compute the offset of the symbol. Forgot...
2010-09-23 Rafael EspindolaRepresent relocations against local symbols as relocati...
2010-09-23 Rafael EspindolaFix the FIXME.
2010-09-22 Rafael EspindolaFix typo and add a FIXME.
2010-09-21 Rafael EspindolaRevert unrelated change that was accidentally included...
2010-09-21 Rafael EspindolaImplement support for .local and its "interesting"...
2010-09-20 Rafael EspindolaProduce a R_X86_64_32 when the value is >=0.
2010-09-18 Rafael EspindolaMake sure the STT_FILE symbol is the first one in the...
2010-09-17 Rafael EspindolaAvoid relocations in a common case.
2010-09-16 Rafael EspindolaPrint the address of sections as 0 and create the metad...
2010-09-09 Benjamin KramerMCELF: Write relocation fragments in the right endian.
2010-09-09 Roman DivackyMake ELF OS ABI dependent on the OS from target triple.
2010-09-08 Roman DivackyELF_STB_Local is 0 so setting and checking it must...
2010-09-08 Roman DivackyUnresolved weak symbols have value equal zero.
2010-09-06 Benjamin KramerMCELF: Align symtab, relocation sections and section...
2010-08-31 Benjamin KramerAllow creation of SHT_NULL sections, from Roman Divacky.
2010-08-30 Benjamin KramerMCELF: The value of all common symbols is the offset...
2010-08-30 Benjamin KramerThe value is offset from the start of the section for...
2010-08-30 Benjamin KramerIndex external symbols by symbol table instead of paren...
2010-08-28 Chris Lattnersquish dead code.
2010-08-27 Benjamin KramerMCELF: Always overwrite FixedValue.
2010-08-26 Benjamin KramerMCELF: Fix a thinko of mine.
2010-08-26 Benjamin KramerMCELF: Compensate for the addend on i386. Patch by...
2010-08-25 Benjamin KramerMCELF: Use precomputed symbol indices, patch by Roman...
2010-08-24 Benjamin KramerRelocate against parent if the symbol is not in section...
2010-08-23 Benjamin KramerFix thinko. Having no tests is great ...
2010-08-23 Benjamin KramerReduce code duplication.
2010-08-23 Benjamin KramerELFObjectWriter: Run ComputeSymbolTable before recordin...
2010-08-23 Benjamin KramerAdd the symbol offset to the relocation value when...
2010-08-23 Benjamin KramerUse the proper relocation section + cleanup, from Roman...
2010-08-19 Benjamin KramerMCELF: Count the section orders properly. Patch by...
2010-08-17 Benjamin KramerRemove dead code. Fixes a GCC warning.
2010-08-17 Benjamin KramerSketch i386 relocations handling, from Roman Divacky.
2010-08-17 Benjamin KramerUse the correct entry size for relocation entries,...
2010-08-17 Benjamin KramerDifferentiate between RELA and REL relocations, from...
2010-08-17 Benjamin KramerOne baby step towards i386 ELF, from Roman Divacky.
2010-08-17 Benjamin KramerTry to silence a overeager GCC warning.
2010-08-17 Benjamin KramerA round of minor cleanups for ELFObjectWriter.
2010-08-16 Benjamin KramerSilence warnings and simplify code. Eliminate a 32...
2010-08-16 Eli FriedmanFixes for generation of ELF relocations. Patch by...
2010-08-16 Eli FriedmanFix a few warnings in and detabify MCELFStreamer and...
2010-08-16 Matt FlemingAdd ELF ObjectWriter and Streamer support.