Searched refs:TOCSection (Results 1 – 2 of 2) sorted by relevance
170 if (Section *TOCSection = G.findSectionByName(TOC.getSectionName())) { in buildTables_ELF_ppc64() local174 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() local441 assert(!TOCSection->empty() && "TOC section should have reserved an " in defineTOCBase()444 SectionRange SR(*TOCSection); in defineTOCBase()
191 TOCSection = G.findSectionByName(getSectionName()); in getOrCreateTOCSection()192 if (!TOCSection) in getOrCreateTOCSection()193 TOCSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getOrCreateTOCSection()194 return *TOCSection; in getOrCreateTOCSection()197 Section *TOCSection = nullptr; variable