Home
last modified time | relevance | path

Searched refs:pSectHdr (Results 1 – 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp1305 unsigned int GNULDBackend::getSectionOrder(const LDSection& pSectHdr) const { in getSectionOrder()
1309 if (LDFileFormat::Null == pSectHdr.kind()) in getSectionOrder()
1312 if (&pSectHdr == &file_format->getStrTab()) in getSectionOrder()
1316 if (0 == (pSectHdr.flag() & llvm::ELF::SHF_ALLOC)) in getSectionOrder()
1319 bool is_write = (pSectHdr.flag() & llvm::ELF::SHF_WRITE) != 0; in getSectionOrder()
1320 bool is_exec = (pSectHdr.flag() & llvm::ELF::SHF_EXECINSTR) != 0; in getSectionOrder()
1322 switch (pSectHdr.kind()) { in getSectionOrder()
1326 if (&pSectHdr == &file_format->getInit()) in getSectionOrder()
1328 if (&pSectHdr == &file_format->getFini()) in getSectionOrder()
1335 if (&pSectHdr == &file_format->getPreInitArray() || in getSectionOrder()
[all …]
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64LDBackend.cpp293 const LDSection& pSectHdr) const { in getTargetSectionOrder()
296 if (file_format->hasGOT() && (&pSectHdr == &file_format->getGOT())) { in getTargetSectionOrder()
302 if (file_format->hasGOTPLT() && (&pSectHdr == &file_format->getGOTPLT())) in getTargetSectionOrder()
305 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
DAArch64LDBackend.h105 unsigned int getTargetSectionOrder(const LDSection& pSectHdr) const;
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp374 const LDSection& pSectHdr) const { in getTargetSectionOrder()
378 if (file_format->hasGOT() && (&pSectHdr == &file_format->getGOT())) { in getTargetSectionOrder()
384 if (file_format->hasGOTPLT() && (&pSectHdr == &file_format->getGOTPLT())) { in getTargetSectionOrder()
390 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
394 if (&pSectHdr == m_pstart) in getTargetSectionOrder()
397 if (&pSectHdr == m_psdata) in getTargetSectionOrder()
DHexagonLDBackend.h122 unsigned int getTargetSectionOrder(const LDSection& pSectHdr) const;
/frameworks/compile/mclinker/lib/Target/X86/
DX86LDBackend.cpp233 const LDSection& pSectHdr) const { in getTargetSectionOrder()
236 if (file_format->hasGOT() && (&pSectHdr == &file_format->getGOT())) { in getTargetSectionOrder()
242 if (file_format->hasGOTPLT() && (&pSectHdr == &file_format->getGOTPLT())) { in getTargetSectionOrder()
248 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
DX86LDBackend.h96 unsigned int getTargetSectionOrder(const LDSection& pSectHdr) const;
/frameworks/compile/mclinker/lib/Target/ARM/
DARMLDBackend.cpp688 const LDSection& pSectHdr) const { in getTargetSectionOrder()
691 if (file_format->hasGOT() && (&pSectHdr == &file_format->getGOT())) { in getTargetSectionOrder()
697 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
700 if (&pSectHdr == m_pEXIDX || &pSectHdr == m_pEXTAB) { in getTargetSectionOrder()
DARMLDBackend.h113 unsigned int getTargetSectionOrder(const LDSection& pSectHdr) const;
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.cpp549 const LDSection& pSectHdr) const { in getTargetSectionOrder()
552 if (file_format->hasGOT() && (&pSectHdr == &file_format->getGOT())) in getTargetSectionOrder()
555 if (file_format->hasGOTPLT() && (&pSectHdr == &file_format->getGOTPLT())) in getTargetSectionOrder()
558 if (file_format->hasPLT() && (&pSectHdr == &file_format->getPLT())) in getTargetSectionOrder()
561 if (&pSectHdr == m_psdata) in getTargetSectionOrder()
564 if (&pSectHdr == m_pAbiFlags) in getTargetSectionOrder()
DMipsLDBackend.h119 unsigned int getTargetSectionOrder(const LDSection& pSectHdr) const;
/frameworks/compile/mclinker/include/mcld/Target/
DGNULDBackend.h160 virtual unsigned int getSectionOrder(const LDSection& pSectHdr) const;
168 virtual unsigned int getTargetSectionOrder(const LDSection& pSectHdr) const { in getTargetSectionOrder() argument
DTargetLDBackend.h97 virtual unsigned int getSectionOrder(const LDSection& pSectHdr) const = 0;