Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching defs:GOTOffset

1733           uint64_t GOTOffset = allocateGOTEntries(SectionID, 1);
1736 resolveGOTOffsetRelocation(SectionID, StubOffset + 2, GOTOffset - 4);
1740 computeGOTOffsetRE(SectionID, GOTOffset, 0, ELF::R_X86_64_64),
1755 uint64_t GOTOffset = allocateGOTEntries(SectionID, 1);
1756 resolveGOTOffsetRelocation(SectionID, Offset, GOTOffset + Addend);
1759 RelocationEntry RE = computeGOTOffsetRE(SectionID, GOTOffset, Value.Offset, ELF::R_X86_64_64);
1831 void RuntimeDyldELF::resolveGOTOffsetRelocation(unsigned SectionID, uint64_t Offset, uint64_t GOTOffset)
1834 RelocationEntry GOTRE(SectionID, Offset, ELF::R_X86_64_PC32, GOTOffset);
1838 RelocationEntry RuntimeDyldELF::computeGOTOffsetRE(unsigned SectionID, uint64_t GOTOffset, uint64_t SymbolOffset,
1842 return RelocationEntry(GOTSectionID, GOTOffset, Type, SymbolOffset);