Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h443 uint64_t offsetInSec, Kind kind, Symbol &sym, int64_t addend, in DynamicReloc() argument
445 : sym(&sym), inputSec(inputSec), offsetInSec(offsetInSec), type(type), in DynamicReloc()
449 uint64_t offsetInSec, int64_t addend = 0)
450 : sym(nullptr), inputSec(inputSec), offsetInSec(offsetInSec), type(type), in sym()
455 uint64_t offsetInSec, const OutputSection *outputSec, in DynamicReloc() argument
458 offsetInSec(offsetInSec), type(type), addend(addend), in DynamicReloc()
477 uint64_t offsetInSec; variable
519 uint64_t offsetInSec, Symbol &sym, int64_t addend = 0,
528 uint64_t offsetInSec, Symbol &sym, int64_t addend, in addRelativeReloc() argument
532 offsetInSec, sym, addend, expr, addendRelType); in addRelativeReloc()
[all …]
H A DRelocations.cpp844 uint64_t offsetInSec, Symbol &sym, int64_t addend, in addRelativeReloc() argument
850 offsetInSec, sym, addend, type, expr); in addRelativeReloc()
860 isec.relocations.push_back({expr, type, offsetInSec, addend, &sym}); in addRelativeReloc()
870 if (part.relrDyn && isec.addralign >= 2 && offsetInSec % 2 == 0) { in addRelativeReloc()
871 isec.addReloc({expr, type, offsetInSec, addend, &sym}); in addRelativeReloc()
880 offsetInSec, sym, addend, type, expr); in addRelativeReloc()
H A DSyntheticSections.cpp1645 return inputSec->getVA(offsetInSec); in getOffset()
1692 RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym, in addSymbolReloc() argument
1694 addReloc(DynamicReloc::AgainstSymbol, dynType, isec, offsetInSec, sym, addend, in addSymbolReloc()
1699 RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym, in addAddendOnlyRelocIfNonPreemptible() argument
1703 addReloc({dynType, &isec, offsetInSec, DynamicReloc::AgainstSymbol, sym, 0, in addAddendOnlyRelocIfNonPreemptible()
1706 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, isec, offsetInSec, in addAddendOnlyRelocIfNonPreemptible()
H A DOutputSections.cpp925 rel.inputSec->getOffset(rel.offsetInSec); in checkDynRelAddends()