• Home
  • Raw
  • Download

Lines Matching refs:frag

572                   symbol->fragRef()->frag()->getParent()->getSection().addr();  in doRelax()
791 Fragment* frag = new FillFragment(0x0, 1, (*com_sym)->size()); in allocateCommonSymbols() local
798 *frag, *(m_pscommon_1->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
799 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
805 *frag, *(m_pscommon_2->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
806 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
812 *frag, *(m_pscommon_4->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
813 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
819 *frag, *(m_pscommon_8->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
820 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
829 *frag, *tbss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
830 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
834 *frag, *bss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
835 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
849 Fragment* frag = new FillFragment(0x0, 1, (*com_sym)->size()); in allocateCommonSymbols() local
856 *frag, *(m_pscommon_1->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
857 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
863 *frag, *(m_pscommon_2->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
864 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
870 *frag, *(m_pscommon_4->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
871 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
877 *frag, *(m_pscommon_8->getSectionData()), (*com_sym)->value()); in allocateCommonSymbols()
878 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
887 *frag, *tbss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
888 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
892 *frag, *bss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
893 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
906 SectionData::FragmentListType::iterator frag, fragEnd = to_list.end(); in MoveCommonData() local
913 for (frag = to_list.begin(); frag != fragEnd; ++frag) { in MoveCommonData()
914 if (frag->getKind() == mcld::Fragment::Alignment) { in MoveCommonData()
915 fragInsert = frag; in MoveCommonData()
918 if ((frag->getKind() != mcld::Fragment::Region) && in MoveCommonData()
919 (frag->getKind() != mcld::Fragment::Fillment)) { in MoveCommonData()
922 uint32_t flag = frag->getParent()->getSection().align(); in MoveCommonData()
941 to_list.splice(frag, pFrom.getFragmentList()); in MoveCommonData()
947 Fragment* frag = NULL; in readSection() local
952 frag = new FillFragment(0x0, 1, size); in readSection()
958 frag = new FillFragment(0x0, 0, 0); in readSection()
960 frag = new RegionFragment(region); in readSection()
964 ObjectBuilder::AppendFragment(*frag, pSD); in readSection()
973 SectionData::FragmentListType::iterator frag, fragEnd = to_list.end(); in MoveSectionDataAndSort() local
980 for (frag = to_list.begin(); frag != fragEnd; ++frag) { in MoveSectionDataAndSort()
981 if (frag->getKind() == mcld::Fragment::Alignment) { in MoveSectionDataAndSort()
982 fragInsert = frag; in MoveSectionDataAndSort()
985 if ((frag->getKind() != mcld::Fragment::Region) && in MoveSectionDataAndSort()
986 (frag->getKind() != mcld::Fragment::Fillment)) { in MoveSectionDataAndSort()
989 uint32_t flag = frag->getParent()->getSection().align(); in MoveSectionDataAndSort()
1008 to_list.splice(frag, pFrom.getFragmentList()); in MoveSectionDataAndSort()
1011 for (frag = to_list.begin(); frag != fragEnd; ++frag) { in MoveSectionDataAndSort()
1012 frag->setOffset(offset); in MoveSectionDataAndSort()
1013 offset += frag->size(); in MoveSectionDataAndSort()