Searched refs:pTo (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Object/
H A DObjectBuilder.h67 /// MoveSectionData - move the fragment of pFrom to pTo section data.
68 static bool MoveSectionData(SectionData& pFrom, SectionData& pTo);
71 static void UpdateSectionAlign(LDSection& pTo, const LDSection& pFrom);
/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/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...]
H A DHexagonLDBackend.h133 bool MoveCommonData(SectionData& pFrom, SectionData& pTo);
135 bool MoveSectionDataAndSort(SectionData& pFrom, SectionData& pTo);
/frameworks/compile/mclinker/include/mcld/LD/
H A DGarbageCollection.h38 /// addReference - add a reference from pFrom to pTo
39 void addReference(const LDSection& pFrom, const LDSection& pTo);
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h238 virtual void connect(TreeIteratorBase& pFrom, NodeBase* pTo) const = 0;
247 void connect(TreeIteratorBase& pFrom, NodeBase* pTo) const {
248 pFrom.hook<Positional>(pTo);
258 void connect(TreeIteratorBase& pFrom, NodeBase* pTo) const {
259 pFrom.hook<Inclusive>(pTo);
/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
H A DGNULDBackend.h195 /// updateSectionFlags - update pTo's flags when merging pFrom
197 virtual bool updateSectionFlags(LDSection& pTo, const LDSection& pFrom);
/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/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);
H A DMipsLDBackend.h262 void moveSectionData(SectionData& pFrom, SectionData& pTo);
/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 157 milliseconds