Home | History | Annotate | Download | only in MC

Lines Matching defs:Relocations

69   int              Relocations;
89 typedef std::vector<COFFRelocation> relocations;
99 relocations Relocations;
211 , Relocations(0)
234 // if it has relocations pointing at it, keep it
235 if (Relocations > 0) {
236 assert(Section->Number != -1 && "Sections with relocations must be real!");
687 // Turn relocations for temporary symbols into section relocations.
695 ++Reloc.Symb->Relocations;
707 coff_section->Relocations.push_back(Reloc);
813 if (Sec->Relocations.size() > 0) {
814 bool RelocationsOverflow = Sec->Relocations.size() >= 0xffff;
821 Sec->Header.NumberOfRelocations = Sec->Relocations.size();
830 offset += COFF::RelocationSize * Sec->Relocations.size();
832 for (relocations::iterator cr = Sec->Relocations.begin(),
833 er = Sec->Relocations.end();
865 if ((*i)->Relocations.size() >= 0xffff) {
885 if ((*i)->Relocations.size() > 0) {
889 if ((*i)->Relocations.size() >= 0xffff) {
893 r.VirtualAddress = (*i)->Relocations.size() + 1;
899 for (relocations::const_iterator k = (*i)->Relocations.begin(),
900 ke = (*i)->Relocations.end();