Home
last modified time | relevance | path

Searched refs:hasPLT (Results 1 – 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64LDBackend.cpp239 if (file_format->hasPLT()) { in doPostLayout()
274 if (file_format->hasPLT() && (&pSection == &(file_format->getPLT()))) { in emitSectionData()
305 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
403 assert(file_format->hasPLT()); in doRelax()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMLDBackend.cpp329 if (file_format->hasPLT()) { in doPostLayout()
395 if (file_format->hasPLT() && (&pSection == &(file_format->getPLT()))) { in emitSectionData()
697 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
856 assert(file_format->hasPLT()); in doRelax()
/frameworks/compile/mclinker/lib/Target/X86/
DX86LDBackend.cpp169 if (FileFormat->hasPLT() && (&pSection == &(FileFormat->getPLT()))) { in emitSectionData()
248 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsRelocator.cpp349 bool hasPLT = rsym->reserved() & ReservePLT; in scanGlobalReloc() local
367 getTarget().symbolNeedsDynRel(*rsym, hasPLT, true)) { in scanGlobalReloc()
377 if (getTarget().symbolNeedsDynRel(*rsym, hasPLT, true) || in scanGlobalReloc()
407 if (getTarget().symbolNeedsPLT(*rsym) && !hasPLT) { in scanGlobalReloc()
DMipsLDBackend.cpp238 if (format->hasPLT()) { in doPostLayout()
270 if (file_format->hasPLT() && (&pSection == &(file_format->getPLT()))) { in emitSectionData()
558 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp147 if (FileFormat->hasPLT() && (&pSection == &(FileFormat->getPLT()))) { in emitSectionData()
390 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
/frameworks/compile/mclinker/include/mcld/LD/
DELFFileFormat.h48 bool hasPLT() const { return (f_pPLT != NULL) && (f_pPLT->size() != 0); } in hasPLT() function