Lines Matching refs:InputSectionBase

39 std::string lld::toString(const InputSectionBase *sec) {  in toString()
51 InputSectionBase::InputSectionBase(InputFile *file, uint64_t flags, in InputSectionBase() function in InputSectionBase
89 InputSectionBase::InputSectionBase(ObjFile<ELFT> &file, in InputSectionBase() function in InputSectionBase
92 : InputSectionBase(&file, getFlags(hdr.sh_flags), hdr.sh_type, in InputSectionBase()
103 size_t InputSectionBase::getSize() const { in getSize()
110 static void decompressAux(const InputSectionBase &sec, uint8_t *out, in decompressAux()
122 void InputSectionBase::decompress() const { in decompress()
135 template <class ELFT> RelsOrRelas<ELFT> InputSectionBase::relsOrRelas() const { in relsOrRelas()
207 template <typename ELFT> void InputSectionBase::parseCompressedHeader() { in parseCompressedHeader()
237 InputSection *InputSectionBase::getLinkOrderDep() const { in getLinkOrderDep()
245 Defined *InputSectionBase::getEnclosingFunction(uint64_t offset) { in getEnclosingFunction()
255 std::string InputSectionBase::getLocation(uint64_t offset) { in getLocation()
276 std::string InputSectionBase::getSrcMsg(const Symbol &sym, uint64_t offset) { in getSrcMsg()
289 std::string InputSectionBase::getObjMsg(uint64_t off) { in getObjMsg()
314 : InputSectionBase(f, flags, type, in InputSection()
321 : InputSectionBase(f, header, name, InputSectionBase::Regular) {} in InputSection()
336 ArrayRef<InputSectionBase *> sections = file->getSections(); in copyShtGroup()
345 InputSectionBase *InputSection::getRelocatedSection() const { in getRelocatedSection()
348 ArrayRef<InputSectionBase *> sections = file->getSections(); in getRelocatedSection()
358 InputSectionBase *sec = getRelocatedSection(); in copyRelocations()
627 uint64_t InputSectionBase::getRelocTargetVA(const InputFile *file, RelType type, in getRelocTargetVA()
963 void InputSectionBase::relocate(uint8_t *buf, uint8_t *bufEnd) { in relocate()
1035 void InputSectionBase::adjustSplitStackFunctionPrologues(uint8_t *buf, in adjustSplitStackFunctionPrologues()
1147 : InputSectionBase(f, header, name, InputSectionBase::EHFrame) {} in EhInputSection()
1272 : InputSectionBase(f, header, name, InputSectionBase::Merge) {} in MergeInputSection()
1277 : InputSectionBase(nullptr, flags, type, entsize, /*Link*/ 0, /*Info*/ 0, in MergeInputSection()
1322 template RelsOrRelas<ELF32LE> InputSectionBase::relsOrRelas<ELF32LE>() const;
1323 template RelsOrRelas<ELF32BE> InputSectionBase::relsOrRelas<ELF32BE>() const;
1324 template RelsOrRelas<ELF64LE> InputSectionBase::relsOrRelas<ELF64LE>() const;
1325 template RelsOrRelas<ELF64BE> InputSectionBase::relsOrRelas<ELF64BE>() const;