Home
last modified time | relevance | path

Searched refs:offsetInSec (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h450 uint64_t offsetInSec, Kind kind, Symbol &sym, int64_t addend, in DynamicReloc() argument
452 : type(type), sym(&sym), inputSec(inputSec), offsetInSec(offsetInSec), in DynamicReloc()
456 uint64_t offsetInSec, int64_t addend = 0)
457 : type(type), sym(nullptr), inputSec(inputSec), offsetInSec(offsetInSec), in type()
462 uint64_t offsetInSec, const OutputSection *outputSec, in DynamicReloc() argument
464 : type(type), sym(nullptr), inputSec(inputSec), offsetInSec(offsetInSec), in DynamicReloc()
482 uint64_t offsetInSec; variable
527 uint64_t offsetInSec, Symbol &sym, int64_t addend = 0,
532 uint64_t offsetInSec, Symbol &sym, int64_t addend,
591 uint64_t getOffset() const { return inputSec->getVA(offsetInSec); } in getOffset()
[all …]
H A DSyntheticSections.cpp1573 return inputSec->getVA(offsetInSec); in getOffset()
1609 uint64_t offsetInSec, Symbol &sym, in addSymbolReloc() argument
1612 addReloc(DynamicReloc::AgainstSymbol, dynType, isec, offsetInSec, sym, addend, in addSymbolReloc()
1617 RelType dynType, InputSectionBase *inputSec, uint64_t offsetInSec, in addRelativeReloc() argument
1625 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, inputSec, offsetInSec, in addRelativeReloc()
1630 RelType dynType, InputSectionBase *isec, uint64_t offsetInSec, Symbol &sym, in addAddendOnlyRelocIfNonPreemptible() argument
1634 addReloc({dynType, isec, offsetInSec, DynamicReloc::AgainstSymbol, sym, 0, in addAddendOnlyRelocIfNonPreemptible()
1637 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, isec, offsetInSec, in addAddendOnlyRelocIfNonPreemptible()
1643 uint64_t offsetInSec, Symbol &sym, in addReloc() argument
1650 {expr, addendRelType, offsetInSec, addend, &sym}); in addReloc()
[all …]
H A DRelocations.cpp1057 static void addRelativeReloc(InputSectionBase *isec, uint64_t offsetInSec, in addRelativeReloc() argument
1068 if (part.relrDyn && isec->alignment >= 2 && offsetInSec % 2 == 0) { in addRelativeReloc()
1069 isec->relocations.push_back({expr, type, offsetInSec, addend, &sym}); in addRelativeReloc()
1070 part.relrDyn->relocs.push_back({isec, offsetInSec}); in addRelativeReloc()
1073 part.relaDyn->addRelativeReloc(target->relativeRel, isec, offsetInSec, sym, in addRelativeReloc()
H A DOutputSections.cpp559 bufStart + relOsec->offset + rel.inputSec->getOffset(rel.offsetInSec); in checkDynRelAddends()