Home
last modified time | relevance | path

Searched refs:newRelocs (Results 1 – 5 of 5) sorted by relevance

/llvm-project/lld/MachO/
H A DEhFrame.cpp112 SmallVectorImpl<Reloc> *newRelocs) { in createSubtraction() argument
122 newRelocs->push_back(subtrahendReloc); in createSubtraction()
123 newRelocs->push_back(minuendReloc); in createSubtraction()
129 createSubtraction(isec->symbols[0], target, off, length, &newRelocs); in makePcRel()
135 createSubtraction</*Invert=*/true>(isec, target, off, length, &newRelocs); in makeNegativePcRel()
139 isec->relocs.insert(isec->relocs.end(), newRelocs.begin(), newRelocs.end()); in commit()
H A DEhFrame.h111 SmallVector<Reloc, 6> newRelocs; variable
/llvm-project/lld/COFF/
H A DChunks.h319 void setRelocs(ArrayRef<coff_relocation> newRelocs) {
320 relocsData = newRelocs.data();
321 relocsSize = newRelocs.size();
322 assert(relocsSize == newRelocs.size() && "reloc size truncation");
312 setRelocs(ArrayRef<coff_relocation> newRelocs) setRelocs() argument
H A DChunks.cpp475 MutableArrayRef<coff_relocation> newRelocs( in sortRelocations()
477 memcpy(newRelocs.data(), relocsData, relocsSize * sizeof(coff_relocation)); in sortRelocations()
478 llvm::sort(newRelocs, cmpByVa);
479 setRelocs(newRelocs);
472 MutableArrayRef<coff_relocation> newRelocs( sortRelocations() local
H A DWriter.cpp546 MutableArrayRef<coff_relocation> newRelocs; in createThunks()
548 newRelocs = MutableArrayRef( in createThunks()
552 newRelocs = MutableArrayRef(
561 newRelocs[i] = originalRelocs[i]; in createECCodeMap()
563 newRelocs[i].SymbolTableIndex = nextReplacement->second; in createECCodeMap()
568 sc->setRelocs(newRelocs); in createECCodeMap()
526 MutableArrayRef<coff_relocation> newRelocs; createThunks() local