Home
last modified time | relevance | path

Searched refs:GOTSection (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_i386.cpp60 if (auto *GOTSection = G.findSectionByName( in getOrCreateGOTSymbol() local
63 return {*GOTSection, true}; in getOrCreateGOTSymbol()
80 if (auto *GOTSection = in getOrCreateGOTSymbol() local
84 for (auto *Sym : GOTSection->symbols()) in getOrCreateGOTSymbol()
91 SectionRange SR(*GOTSection); in getOrCreateGOTSymbol()
H A DELF_x86_64.cpp258 if (auto *GOTSection = G.findSectionByName( in getOrCreateGOTSymbol() local
261 return {*GOTSection, true}; in getOrCreateGOTSymbol()
278 if (auto *GOTSection = in getOrCreateGOTSymbol() local
282 for (auto *Sym : GOTSection->symbols()) in getOrCreateGOTSymbol()
289 SectionRange SR(*GOTSection); in getOrCreateGOTSymbol()
H A DELF_aarch64.cpp527 if (!GOTSection) in getTLSDescSection()
528 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSDescSection()
529 return *GOTSection; in getTLSDescSection()
543 Section *GOTSection = nullptr; member in __anon8321e4d40111::TLSDescTableManager_ELF_aarch64
H A DELF_riscv.cpp90 if (!GOTSection) in getGOTSection()
91 GOTSection = &G.createSection("$__GOT", orc::MemProt::Read); in getGOTSection()
92 return *GOTSection; in getGOTSection()
112 mutable Section *GOTSection = nullptr; member in __anon7d51f2520111::PerGraphGOTAndPLTStubsBuilder_ELF_riscv
H A Daarch32.cpp714 if (!GOTSection) in createEntry()
715 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in createEntry()
716 Block &B = allocPointer(G, *GOTSection, GOTEntryInit); in createEntry()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Di386.h376 if (!GOTSection) in getGOTSection()
377 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
378 return *GOTSection; in getGOTSection()
381 Section *GOTSection = nullptr; variable
H A Dloongarch.h349 if (!GOTSection) in getGOTSection()
350 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
352 return *GOTSection; in getGOTSection()
355 Section *GOTSection = nullptr; variable
H A Dx86_64.h616 if (!GOTSection) in getGOTSection()
617 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
618 return *GOTSection; in getGOTSection()
621 Section *GOTSection = nullptr; variable
H A Daarch64.h719 if (!GOTSection) in getGOTSection()
720 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
722 return *GOTSection; in getGOTSection()
725 Section *GOTSection = nullptr; variable
H A Daarch32.h339 Section *GOTSection = nullptr;