Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching full:relocs

52                             std::vector<ELFRelocationEntry> &Relocs) override;
215 // When there are more *HI16 relocs paired with one *LO16 reloc, the 2nd rule
342 std::vector<ELFRelocationEntry> &Relocs) {
343 if (Relocs.size() < 2)
347 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);
349 // Init MipsRelocs from Relocs.
351 for (unsigned I = 0, E = Relocs.size(); I != E; ++I)
352 MipsRelocs.push_back(MipsRelocationEntry(Relocs[I]));
381 // Copy sorted MipsRelocs back to Relocs.
383 Relocs[I] = MipsRelocs[I].R;