Home
last modified time | relevance | path

Searched refs:getFragmentList (Results 1 – 17 of 17) sorted by relevance

/frameworks/compile/mclinker/lib/Object/
DObjectBuilder.cpp144 pTo.getFragmentList().push_back(align); in MoveSectionData()
149 SectionData::FragmentListType& from_list = pFrom.getFragmentList(); in MoveSectionData()
150 SectionData::FragmentListType& to_list = pTo.getFragmentList(); in MoveSectionData()
196 pSD.getFragmentList().push_back(align); in AppendFragment()
203 pSD.getFragmentList().push_back(&pFrag); in AppendFragment()
/frameworks/compile/mclinker/lib/LD/
DEhFrame.cpp134 m_pSectionData->getFragmentList().push_back(&pFrag); in addFragment()
315 SectionData::FragmentListType& in_frag_list = in_sd.getFragmentList(); in moveInputFragments()
317 SectionData::FragmentListType& out_frag_list = out_sd.getFragmentList(); in moveInputFragments()
328 SectionData::FragmentListType& in_frag_list = in_sd.getFragmentList(); in moveInputFragments()
330 SectionData::FragmentListType& out_frag_list = out_sd.getFragmentList(); in moveInputFragments()
357 getSectionData()->getFragmentList(); in computeOffsetSize()
DBranchIsland.cpp113 sd->getFragmentList().insert(end(), align_frag); in addStub()
119 sd->getFragmentList().insert(end(), &pStub); in addStub()
/frameworks/compile/mclinker/lib/Target/X86/
DX86GOTPLT.cpp37 llvm::cast<X86_32GOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
70 llvm::cast<X86_64GOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
DX86PLT.cpp122 iterator first = m_pSectionData->getFragmentList().begin(); in getPLT0()
124 assert(first != m_pSectionData->getFragmentList().end() && in getPLT0()
DX86LDBackend.cpp282 eh_frame->getSectionData()->getFragmentList(); in addEhFrameForPLT()
/frameworks/compile/mclinker/include/mcld/LD/
DSectionData.h57 const FragmentListType& getFragmentList() const { return m_Fragments; } in getFragmentList() function
58 FragmentListType& getFragmentList() { return m_Fragments; } in getFragmentList() function
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp690 SectionData::FragmentListType& to_list = pTo->getFragmentList(); in SetSDataSection()
701 SectionData::FragmentListType& newlist = pTo->getFragmentList(); in SetSDataSection()
874 SectionData::FragmentListType& to_list = pTo.getFragmentList(); in MoveCommonData()
905 pFrom.getFragmentList().push_front(align); in MoveCommonData()
908 to_list.splice(fragInsert, pFrom.getFragmentList()); in MoveCommonData()
910 to_list.splice(frag, pFrom.getFragmentList()); in MoveCommonData()
941 SectionData::FragmentListType& to_list = pTo.getFragmentList(); in MoveSectionDataAndSort()
972 pFrom.getFragmentList().push_front(align); in MoveSectionDataAndSort()
975 to_list.splice(fragInsert, pFrom.getFragmentList()); in MoveSectionDataAndSort()
977 to_list.splice(frag, pFrom.getFragmentList()); in MoveSectionDataAndSort()
DHexagonGOTPLT.cpp40 llvm::cast<HexagonGOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
DHexagonPLT.cpp54 iterator first = m_pSectionData->getFragmentList().begin(); in getPLT0()
56 assert(first != m_pSectionData->getFragmentList().end() && in getPLT0()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64GOT.cpp56 SectionData::FragmentListType& frag_list = m_SectionData->getFragmentList(); in finalizeSectionSize()
97 llvm::cast<AArch64GOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
DAArch64PLT.cpp67 iterator first = m_pSectionData->getFragmentList().begin(); in applyPLT0()
68 assert(first != m_pSectionData->getFragmentList().end() && in applyPLT0()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMGOT.cpp53 SectionData::FragmentListType& frag_list = m_SectionData->getFragmentList(); in finalizeSectionSize()
94 llvm::cast<ARMGOTEntry>(*(m_SectionData->getFragmentList().begin())) in applyGOT0()
DARMPLT.cpp76 iterator first = m_pSectionData->getFragmentList().begin(); in applyPLT0()
78 assert(first != m_pSectionData->getFragmentList().end() && in applyPLT0()
DARMLDBackend.cpp447 sectData->getFragmentList().push_back(frag); in mergeSection()
454 pSection.getSectionData()->getFragmentList(); in mergeSection()
456 m_pEXIDX->getSectionData()->getFragmentList(); in mergeSection()
DARMException.cpp234 SectionData::FragmentListType& list = sectData->getFragmentList(); in rewriteARMExIdxSection()
/frameworks/compile/mclinker/lib/Fragment/
DFragment.cpp27 m_pParent->getFragmentList().push_back(this); in Fragment()