Home
last modified time | relevance | path

Searched refs:RelaPlt (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Object/
H A DELFObjectFile.cpp359 Optional<SectionRef> Plt = None, RelaPlt = None, GotPlt = None; in getPltAddresses() local
367 RelaPlt = Section; in getPltAddresses()
371 if (!Plt || !RelaPlt || !GotPlt) in getPltAddresses()
387 for (const auto &Relocation : RelaPlt->relocations()) { in getPltAddresses()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DSyntheticSections.cpp1263 size_t Size = In.RelaPlt->getSize(); in addPltRelSz()
1264 if (In.RelaIplt->getParent() == In.RelaPlt->getParent() && in addPltRelSz()
1265 In.RelaIplt->Name == In.RelaPlt->Name) in addPltRelSz()
1352 if (In.RelaPlt->getParent()->Live) { in finalizeContents()
1353 addInSec(DT_JMPREL, In.RelaPlt); in finalizeContents()
1518 if (In.RelaPlt == this) in finalizeContents()
2342 RelocationBaseSection *PltRelocSection = In.RelaPlt; in addEntry()
H A DWriter.cpp395 In.RelaPlt = make<RelocationSection<ELFT>>( in createSyntheticSections()
397 Add(In.RelaPlt); in createSyntheticSections()
408 : In.RelaPlt->Name, in createSyntheticSections()
1786 finalizeSynthetic(In.RelaPlt); in finalizeSections()
H A DRelocations.cpp969 addPltEntry<ELFT>(In.Plt, In.GotPlt, In.RelaPlt, Target->PltRel, Sym); in processRelocAux()
1063 addPltEntry<ELFT>(In.Plt, In.GotPlt, In.RelaPlt, Target->PltRel, Sym); in scanReloc()
H A DSyntheticSections.h1022 RelocationBaseSection *RelaPlt; member