Searched refs:offsetInSec (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | SyntheticSections.h | 430 : sym(&sym), inputSec(inputSec), offsetInSec(offsetInSec), type(type), in DynamicReloc() 434 uint64_t offsetInSec, int64_t addend = 0) 435 : sym(nullptr), inputSec(inputSec), offsetInSec(offsetInSec), type(type), in sym() 440 uint64_t offsetInSec, const OutputSection *outputSec, in DynamicReloc() argument 443 offsetInSec(offsetInSec), type(type), addend(addend), in DynamicReloc() 462 uint64_t offsetInSec; variable 513 uint64_t offsetInSec, Symbol &sym, int64_t addend, in addRelativeReloc() argument 517 offsetInSec, sym, addend, expr, addendRelType); in addRelativeReloc() 531 sec.addReloc({expr, addendRelType, offsetInSec, addend, &sym}); in addReloc() 594 uint64_t getOffset() const { return inputSec->getVA(offsetInSec); } in getOffset() [all …]
|
| H A D | Relocations.cpp | 869 static void addRelativeReloc(InputSectionBase &isec, uint64_t offsetInSec, in addRelativeReloc() argument 876 part.relaDyn->addRelativeReloc(target->relativeRel, isec, offsetInSec, sym, in addRelativeReloc() 887 isec.relocations.push_back({expr, type, offsetInSec, addend, &sym}); in addRelativeReloc() 897 if (part.relrDyn && isec.addralign >= 2 && offsetInSec % 2 == 0) { in addRelativeReloc() 898 isec.addReloc({expr, type, offsetInSec, addend, &sym}); in addRelativeReloc() 901 {&isec, offsetInSec}); in addRelativeReloc() 903 part.relrDyn->relocs.push_back({&isec, offsetInSec}); in addRelativeReloc() 906 part.relaDyn->addRelativeReloc<shard>(target->relativeRel, isec, offsetInSec, in addRelativeReloc()
|
| H A D | SyntheticSections.cpp | 1574 return inputSec->getVA(offsetInSec); in getOffset() 1619 RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym, in addSymbolReloc() argument 1621 addReloc(DynamicReloc::AgainstSymbol, dynType, isec, offsetInSec, sym, addend, in addSymbolReloc() 1626 RelType dynType, GotSection &sec, uint64_t offsetInSec, Symbol &sym, in addAddendOnlyRelocIfNonPreemptible() argument 1630 addReloc({dynType, &sec, offsetInSec, DynamicReloc::AgainstSymbol, sym, 0, in addAddendOnlyRelocIfNonPreemptible() 1633 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, sec, offsetInSec, in addAddendOnlyRelocIfNonPreemptible()
|
| H A D | OutputSections.cpp | 756 bufStart + relOsec->offset + rel.inputSec->getOffset(rel.offsetInSec); in checkDynRelAddends()
|