Searched refs:offsetInSec (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/lld/ELF/ |
| H A D | SyntheticSections.h | 447 uint64_t offsetInSec, Kind kind, Symbol &sym, int64_t addend, in DynamicReloc() argument 449 : sym(&sym), inputSec(inputSec), offsetInSec(offsetInSec), type(type), in DynamicReloc() 453 uint64_t offsetInSec, int64_t addend = 0) 454 : sym(nullptr), inputSec(inputSec), offsetInSec(offsetInSec), type(type), in sym() 459 uint64_t offsetInSec, const OutputSection *outputSec, in DynamicReloc() argument 462 offsetInSec(offsetInSec), type(type), addend(addend), in DynamicReloc() 481 uint64_t offsetInSec; variable 520 uint64_t offsetInSec, Symbol &sym, int64_t addend = 0, 525 uint64_t offsetInSec, Symbol &sym, int64_t addend, 584 uint64_t getOffset() const { return inputSec->getVA(offsetInSec); } in getOffset() [all …]
|
| H A D | Relocations.cpp | 866 static void addRelativeReloc(InputSectionBase &isec, uint64_t offsetInSec, in addRelativeReloc() argument 877 if (part.relrDyn && isec.alignment >= 2 && offsetInSec % 2 == 0) { in addRelativeReloc() 878 isec.relocations.push_back({expr, type, offsetInSec, addend, &sym}); in addRelativeReloc() 879 part.relrDyn->relocs.push_back({&isec, offsetInSec}); in addRelativeReloc() 882 part.relaDyn->addRelativeReloc(target->relativeRel, isec, offsetInSec, sym, in addRelativeReloc()
|
| H A D | SyntheticSections.cpp | 1573 return inputSec->getVA(offsetInSec); in getOffset() 1616 uint64_t offsetInSec, Symbol &sym, in addSymbolReloc() argument 1619 addReloc(DynamicReloc::AgainstSymbol, dynType, isec, offsetInSec, sym, addend, in addSymbolReloc() 1624 RelType dynType, InputSectionBase &inputSec, uint64_t offsetInSec, in addRelativeReloc() argument 1632 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, inputSec, offsetInSec, in addRelativeReloc() 1637 RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym, in addAddendOnlyRelocIfNonPreemptible() argument 1641 addReloc({dynType, &isec, offsetInSec, DynamicReloc::AgainstSymbol, sym, 0, in addAddendOnlyRelocIfNonPreemptible() 1644 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, isec, offsetInSec, in addAddendOnlyRelocIfNonPreemptible() 1650 uint64_t offsetInSec, Symbol &sym, in addReloc() argument 1657 {expr, addendRelType, offsetInSec, addend, &sym}); in addReloc() [all …]
|
| H A D | OutputSections.cpp | 653 bufStart + relOsec->offset + rel.inputSec->getOffset(rel.offsetInSec); in checkDynRelAddends()
|