Lines Matching full:relocations
72 int Relocations; member in __anona70a18bc0111::COFFSymbol
92 typedef std::vector<COFFRelocation> relocations; typedef
102 relocations Relocations; member in __anona70a18bc0111::COFFSection
212 , Relocations(0) in COFFSymbol()
235 // if it has relocations pointing at it, keep it in should_keep()
236 if (Relocations > 0) { in should_keep()
237 assert(Section->Number != -1 && "Sections with relocations must be real!"); in should_keep()
686 // Turn relocations for temporary symbols into section relocations. in RecordRelocation()
694 ++Reloc.Symb->Relocations; in RecordRelocation()
728 coff_section->Relocations.push_back(Reloc); in RecordRelocation()
806 if (Sec->Relocations.size() > 0) { in WriteObject()
807 Sec->Header.NumberOfRelocations = Sec->Relocations.size(); in WriteObject()
810 offset += COFF::RelocationSize * Sec->Relocations.size(); in WriteObject()
812 for (relocations::iterator cr = Sec->Relocations.begin(), in WriteObject()
813 er = Sec->Relocations.end(); in WriteObject()
861 if ((*i)->Relocations.size() > 0) { in WriteObject()
865 for (relocations::const_iterator k = (*i)->Relocations.begin(), in WriteObject()
866 ke = (*i)->Relocations.end(); in WriteObject()