Home
last modified time | relevance | path

Searched refs:TOCSection (Results 1 – 2 of 2) sorted by relevance

/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_ppc64.cpp170 if (Section *TOCSection = G.findSectionByName(TOC.getSectionName())) { in buildTables_ELF_ppc64() local
174 G.mergeSections(*TOCSection, *gotSection); in buildTables_ELF_ppc64()
176 G.mergeSections(*TOCSection, *tocSection); in buildTables_ELF_ppc64()
178 G.mergeSections(*TOCSection, *sdataSection); in buildTables_ELF_ppc64()
180 G.mergeSections(*TOCSection, *sbssSection); in buildTables_ELF_ppc64()
184 G.mergeSections(*TOCSection, *tocbssSection); in buildTables_ELF_ppc64()
186 G.mergeSections(*TOCSection, *pltSection); in buildTables_ELF_ppc64()
439 if (Section *TOCSection = G.findSectionByName( in defineTOCBase()
441 assert(!TOCSection->empty() && "TOC section should have reserved an " in defineTOCBase()
444 SectionRange SR(*TOCSection); in defineTOCBase()
436 if (Section *TOCSection = G.findSectionByName( defineTOCBase() local
[all...]
/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Dppc64.h190 TOCSection = G.findSectionByName(getSectionName()); in getOrCreateTOCSection()
191 if (!TOCSection) in getOrCreateTOCSection()
192 TOCSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getOrCreateTOCSection()
193 return *TOCSection; in getOrCreateTOCSection()
196 Section *TOCSection = nullptr; variable