Home
last modified time | relevance | path

Searched refs:inputSec (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lld/ELF/
DSyntheticSections.h428 DynamicReloc(RelType type, const InputSectionBase *inputSec, in DynamicReloc() argument
430 : type(type), sym(sym), inputSec(inputSec), offsetInSec(offsetInSec), in DynamicReloc()
435 DynamicReloc(RelType type, const InputSectionBase *inputSec, in DynamicReloc() argument
438 : type(type), sym(nullptr), inputSec(inputSec), offsetInSec(offsetInSec), in DynamicReloc()
452 const InputSectionBase *inputSec = nullptr; variable
500 void addReloc(RelType dynType, InputSectionBase *inputSec,
547 uint64_t getOffset() const { return inputSec->getVA(offsetInSec); } in getOffset()
549 const InputSectionBase *inputSec; member
DWriter.cpp1788 const InputSectionBase *inputSec = dyn_cast<InputSectionBase>(sec->repl); in fixSymbolsAfterShrinking() local
1789 if (!inputSec || !inputSec->bytesDropped) in fixSymbolsAfterShrinking()
1792 const size_t OldSize = inputSec->data().size(); in fixSymbolsAfterShrinking()
1793 const size_t NewSize = OldSize - inputSec->bytesDropped; in fixSymbolsAfterShrinking()
1799 << def->value - inputSec->bytesDropped << " bytes\n"); in fixSymbolsAfterShrinking()
1800 def->value -= inputSec->bytesDropped; in fixSymbolsAfterShrinking()
1808 << def->size << " to " << def->size - inputSec->bytesDropped in fixSymbolsAfterShrinking()
1810 def->size -= inputSec->bytesDropped; in fixSymbolsAfterShrinking()
DSyntheticSections.cpp1555 return inputSec->getVA(offsetInSec); in getOffset()
1585 InputSectionBase *inputSec, in addReloc() argument
1592 inputSec->relocations.push_back({expr, type, offsetInSec, addend, sym}); in addReloc()
1593 addReloc({dynType, inputSec, offsetInSec, expr != R_ADDEND, sym, addend}); in addReloc()