Home
last modified time | relevance | path

Searched refs:getLink (Results 1 – 21 of 21) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DELFObjectReader.cpp120 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()
DELFDynObjReader.cpp103 LDSection* strtab_shdr = symtab_shdr->getLink(); in readSymbols()
DGarbageCollection.cpp137 LDSection* apply_sect = reloc_sect->getLink(); in setUpReachedSections()
351 if (LDFileFormat::Ignore == reloc_sect->getLink()->kind()) in stripSections()
DELFReader.cpp435 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()
DIdenticalCodeFolding.cpp134 LDSection* target = (*sect)->getLink(); in findCandidates()
DEhFrame.cpp175 if ((*ri)->getLink() == &pFrame.getSection()) { in merge()
DELFObjectWriter.cpp624 const LDSection* info_link = pSection.getLink(); in getSectInfo()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMException.cpp73 exTuple->setTextSection(sect->getLink()); in create()
74 if (sect->getLink() == NULL) { in create()
DARMLDBackend.cpp493 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()
DARMRelocator.cpp449 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/include/mcld/LD/
DLDSection.h112 LDSection* getLink() { return m_pLink; } in getLink() function
114 const LDSection* getLink() const { return m_pLink; } in getLink() function
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsRelocator.cpp198 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/
DX86Relocator.cpp172 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/
DELFReaderTest.cpp92 ASSERT_EQ(NULL, (*iter)->getLink()); in TEST_F()
105 LDSection* strtab_shdr = symtab_shdr->getLink(); in TEST_F()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64Relocator.cpp163 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/
DHexagonRelocator.cpp211 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/
DObjectLinker.cpp357 if ((*sect)->getLink()->kind() == LDFileFormat::Ignore || in mergeSections()
358 (*sect)->getLink()->kind() == LDFileFormat::Folded) in mergeSections()
/frameworks/compile/mclinker/lib/Core/
DIRBuilder.cpp594 FragmentRef* frag_ref = FragmentRef::Create(*pSection.getLink(), pOffset); in AddRelocation()
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp2532 const LDSection* input_link = (*rs)->getLink(); in preLayout()
/frameworks/opt/setupwizard/tools/docs/
Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ ...
/frameworks/base/config/
Dhiddenapi-private-dex.txt34493 Landroid/icu/text/ArabicShaping;->getLink(C)I