/frameworks/compile/mclinker/lib/LD/ |
D | ELFObjectReader.cpp | 120 assert((*section)->getLink() != NULL); in readSections() 122 pInput, *(*section)->getLink(), (*section)->getInfo()); in readSections() 186 assert((*section)->getLink() != NULL); in readSections() 187 size_t link_index = (*section)->getLink()->index(); in readSections() 286 LDSection* strtab_shdr = symtab_shdr->getLink(); in readSymbols()
|
D | ELFDynObjReader.cpp | 103 LDSection* strtab_shdr = symtab_shdr->getLink(); in readSymbols()
|
D | GarbageCollection.cpp | 137 LDSection* apply_sect = reloc_sect->getLink(); in setUpReachedSections() 351 if (LDFileFormat::Ignore == reloc_sect->getLink()->kind()) in stripSections()
|
D | ELFReader.cpp | 435 LDSection* strtab = symtab->getLink(); in readSignature() 482 const LDSection* dynstr_sect = dynamic_sect->getLink(); in readDynamic() 929 LDSection* strtab = symtab->getLink(); in readSignature() 976 const LDSection* dynstr_sect = dynamic_sect->getLink(); in readDynamic()
|
D | IdenticalCodeFolding.cpp | 134 LDSection* target = (*sect)->getLink(); in findCandidates()
|
D | EhFrame.cpp | 175 if ((*ri)->getLink() == &pFrame.getSection()) { in merge()
|
D | ELFObjectWriter.cpp | 624 const LDSection* info_link = pSection.getLink(); in getSectInfo()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | LDSection.h | 112 LDSection* getLink() { return m_pLink; } in getLink() function 114 const LDSection* getLink() const { return m_pLink; } in getLink() function
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMException.cpp | 73 exTuple->setTextSection(sect->getLink()); in create() 74 if (sect->getLink() == NULL) { in create()
|
D | ARMLDBackend.cpp | 493 assert(pSection.getLink() != NULL); in mergeSection() 494 if ((pSection.getLink()->kind() == LDFileFormat::Ignore) || in mergeSection() 495 (pSection.getLink()->kind() == LDFileFormat::Folded)) { in mergeSection() 571 LDSection* apply_sect = reloc_sect->getLink(); in setUpReachedSectionsForGC() 612 assert(apply_sect->getLink() != NULL); in setUpReachedSectionsForGC() 613 pSectReachedListMap.addReference(*apply_sect->getLink(), *apply_sect); in setUpReachedSectionsForGC()
|
D | ARMRelocator.cpp | 449 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 571 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 648 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 738 assert(pSection.getLink() != NULL); in scanRelocation() 739 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0) in scanRelocation()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsRelocator.cpp | 198 assert(pSection.getLink() != NULL); in scanRelocation() 199 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0) in scanRelocation() 262 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 300 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 309 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 313 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 317 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 370 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 395 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 422 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() [all …]
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86Relocator.cpp | 172 assert(pSection.getLink() != NULL); in scanRelocation() 173 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0) in scanRelocation() 326 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 350 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 449 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 499 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 550 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 643 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 703 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 752 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() [all …]
|
/frameworks/compile/mclinker/unittests/ |
D | ELFReaderTest.cpp | 92 ASSERT_EQ(NULL, (*iter)->getLink()); in TEST_F() 105 LDSection* strtab_shdr = symtab_shdr->getLink(); in TEST_F()
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64Relocator.cpp | 163 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 189 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 248 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc() 383 assert(pSection.getLink() != NULL); in scanRelocation() 384 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0) in scanRelocation()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonRelocator.cpp | 211 assert(pSection.getLink() != NULL); in scanRelocation() 212 if ((pSection.getLink()->flag() & llvm::ELF::SHF_ALLOC) == 0) in scanRelocation() 277 getTarget().checkAndSetHasTextRel(*pSection.getLink()); in scanLocalReloc() 338 ld_backend.checkAndSetHasTextRel(*pSection.getLink()); in scanGlobalReloc()
|
/frameworks/compile/mclinker/lib/Object/ |
D | ObjectLinker.cpp | 357 if ((*sect)->getLink()->kind() == LDFileFormat::Ignore || in mergeSections() 358 (*sect)->getLink()->kind() == LDFileFormat::Folded) in mergeSections()
|
/frameworks/compile/mclinker/lib/Core/ |
D | IRBuilder.cpp | 594 FragmentRef* frag_ref = FragmentRef::Create(*pSection.getLink(), pOffset); in AddRelocation()
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 2532 const LDSection* input_link = (*rs)->getLink(); in preLayout()
|