Home
last modified time | relevance | path

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

/src/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.cpp261 if (auto *GOTSection = G.findSectionByName( in getOrCreateGOTSymbol() local
264 return {*GOTSection, true}; in getOrCreateGOTSymbol()
281 if (auto *GOTSection = in getOrCreateGOTSymbol() local
285 for (auto *Sym : GOTSection->symbols()) in getOrCreateGOTSymbol()
292 SectionRange SR(*GOTSection); in getOrCreateGOTSymbol()
H A DELF_aarch64.cpp541 if (!GOTSection) in getTLSDescSection()
542 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSDescSection()
543 return *GOTSection; in getTLSDescSection()
557 Section *GOTSection = nullptr; member in __anon2ad8a1810111::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 __anone8e79fbf0111::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()
/src/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.h638 if (!GOTSection) in getGOTSection()
639 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
640 return *GOTSection; in getGOTSection()
643 Section *GOTSection = nullptr; variable
H A Daarch64.h729 if (!GOTSection) in getGOTSection()
730 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
732 return *GOTSection; in getGOTSection()
735 Section *GOTSection = nullptr; variable
H A Daarch32.h339 Section *GOTSection = nullptr;