Searched defs:pTo (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Target/
H A DTargetLDBackend.h138 /// updateSectionFlags - update pTo's flags when merging pFrom
142 virtual bool updateSectionFlags(LDSection& pTo, const LDSection& pFrom) { argument
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp129 /// MoveSectionData - move the fragments of pTO section data to pTo
130 bool ObjectBuilder::MoveSectionData(SectionData& pFrom, SectionData& pTo) { argument
131 assert(&pFrom != &pTo && "Cannot move section data to itself!");
133 uint64_t offset = pTo.getSection().size();
143 align->setParent(&pTo);
144 pTo.getFragmentList().push_back(align);
150 SectionData::FragmentListType& to_list = pTo.getFragmentList();
153 frag->setParent(&pTo);
159 // set up pTo's header
160 pTo
166 UpdateSectionAlign(LDSection& pTo, const LDSection& pFrom) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp76 const LDSection& pTo) {
77 m_ReachedSections[&pFrom].insert(&pTo);
74 addReference( const LDSection& pFrom, const LDSection& pTo) argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp713 SectionData* pTo = (m_psdata->getSectionData()); local
715 if (pTo) {
716 MoveCommonData(*m_pscommon_1->getSectionData(), *pTo);
717 MoveCommonData(*m_pscommon_2->getSectionData(), *pTo);
718 MoveCommonData(*m_pscommon_4->getSectionData(), *pTo);
719 MoveCommonData(*m_pscommon_8->getSectionData(), *pTo);
721 SectionData::FragmentListType& to_list = pTo->getFragmentList();
729 // set up pTo's header
730 pTo->getSection().setSize(offset);
732 SectionData::FragmentListType& newlist = pTo
904 MoveCommonData(SectionData& pFrom, SectionData& pTo) argument
969 MoveSectionDataAndSort(SectionData& pFrom, SectionData& pTo) argument
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp1211 void MipsGNULDBackend::moveSectionData(SectionData& pFrom, SectionData& pTo) { argument
1212 assert(&pFrom != &pTo && "Cannot move section data to itself!");
1214 uint64_t offset = pTo.getSection().size();
1224 align->setParent(&pTo);
1225 pTo.getFragmentList().push_back(align);
1231 SectionData::FragmentListType& to_list = pTo.getFragmentList();
1234 frag->setParent(&pTo);
1240 // set up pTo's header
1241 pTo.getSection().setSize(offset);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1596 /// updateSectionFlags - update pTo's flags when merging pFrom
1598 bool GNULDBackend::updateSectionFlags(LDSection& pTo, const LDSection& pFrom) { argument
1600 uint32_t flags = pTo.flag();
1612 pTo.setFlag(flags);

Completed in 1296 milliseconds