Displaying 1 result from an estimated 1 matches for "_readerstorage".
2014 Feb 26
2
[LLVMdev] [lld] Relocation reading refactoring
...t; StringRef symbolName, StringRef sectionName, const Elf_Sym *symbol,
> const Elf_Shdr *section, ArrayRef<uint8_t> content) {
> @@ -380,6 +534,11 @@ private:
> (ri->r_offset < symbol->st_value + content.size())) {
> auto *ERef = new (_readerStorage)
> ELFReference<ELFT>(ri, ri->r_offset - symbol->st_value, nullptr);
> + // Read the addend from the section contents
> + // TODO : We should move the way lld reads relocations totally from
> + // ELFObjectFile
> + int32_...