Displaying 2 results from an estimated 2 matches for "_references".
Did you mean:
references
2014 Feb 26
2
[LLVMdev] [lld] Relocation reading refactoring
...dend from the section contents
> + // TODO : We should move the way lld reads relocations totally from
> + // ELFObjectFile
> + int32_t addend = *(content.data() + ri->r_offset - symbol->st_value);
> + ERef->setAddend(addend);
> _references.push_back(ERef);
> }
What do you mean by removing relocation reading from the
ELFObjectFile? I considered to customize the relocation reading for
MIPS targets and my first idea was to factor out ELFReference creation
into a couple of virtual functions. The first one is for Elf_Rel, the...
2013 Nov 11
1
[LLVMdev] [lld] consolidating the usage of saving references
Hi,
It looks like each flavor chooses to save references in its own way.
The GNU flavor (ELF) uses a single vector of references and uses
referenceStartIndex/referenceEndIndex to point to the references for
each DefinedAtom.
Darwin(Mach-O) / WinLink (PECOFF) uses a different way of storing
references ?
Is there a plan to make the WinLink/Darwin(Mach-O) use a single vector
of references too