Home
last modified time | relevance | path

Searched refs:ThunkSection (Results 1 – 13 of 13) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DThunks.cpp72 void addSymbols(ThunkSection &isec) override;
82 void addSymbols(ThunkSection &isec) override;
157 void addSymbols(ThunkSection &isec) override;
166 void addSymbols(ThunkSection &isec) override;
176 void addSymbols(ThunkSection &isec) override;
185 void addSymbols(ThunkSection &isec) override;
196 void addSymbols(ThunkSection &isec) override;
206 void addSymbols(ThunkSection &isec) override;
216 void addSymbols(ThunkSection &isec) override;
233 void addSymbols(ThunkSection &isec) override;
[all …]
H A DRelocations.h149 class ThunkSection; variable
161 ThunkSection *getISDThunkSec(OutputSection *os, InputSection *isec,
165 ThunkSection *getISThunkSec(InputSection *isec);
172 ThunkSection *addThunkSection(OutputSection *os, InputSectionDescription *,
197 llvm::DenseMap<InputSection *, ThunkSection *> thunkedSections;
H A DThunks.h19 class ThunkSection; variable
40 virtual void addSymbols(ThunkSection &isec) = 0;
H A DRelocations.cpp1821 auto *ta = dyn_cast<ThunkSection>(a); in mergeCmp()
1822 auto *tb = dyn_cast<ThunkSection>(b); in mergeCmp()
1958 std::vector<ThunkSection *> newThunks; in mergeThunks()
1963 [](const ThunkSection *a, const ThunkSection *b) { in mergeThunks()
1995 ThunkSection *ThunkCreator::getISDThunkSec(OutputSection *os, in getISDThunkSec()
2003 ThunkSection *ts = tp.first; in getISDThunkSec()
2030 ThunkSection *ThunkCreator::getISThunkSec(InputSection *isec) { in getISThunkSec()
2031 ThunkSection *ts = thunkedSections.lookup(isec); in getISThunkSec()
2107 ThunkSection *ThunkCreator::addThunkSection(OutputSection *os, in addThunkSection()
2110 auto *ts = make<ThunkSection>(os, off); in addThunkSection()
[all …]
H A DLinkerScript.h34 class ThunkSection; variable
224 SmallVector<std::pair<ThunkSection *, uint32_t>, 0> thunkSections;
H A DSyntheticSections.cpp3593 ThunkSection::ThunkSection(OutputSection *os, uint64_t off) in ThunkSection() function in ThunkSection
3600 size_t ThunkSection::getSize() const { in getSize()
3606 void ThunkSection::addThunk(Thunk *t) { in addThunk()
3611 void ThunkSection::writeTo(uint8_t *buf) { in writeTo()
3616 InputSection *ThunkSection::getTargetInputSection() const { in getTargetInputSection()
3623 bool ThunkSection::assignOffsets() { in assignOffsets()
H A DSyntheticSections.h1134 class ThunkSection final : public SyntheticSection {
1137 ThunkSection(OutputSection *os, uint64_t off);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp371 return {record.ThunkSection, record.ThunkOffset}; in GetSegmentAndOffset()
452 return {record.ThunkSection, record.ThunkOffset, record.Size}; in GetSegmentOffsetAndLength()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp81 error(IO.mapInteger(Tramp.ThunkSection)); in visitKnownRecord()
H A DSymbolDumper.cpp151 W.printNumber("ThunkSection", Tramp.ThunkSection); in visitKnownRecord()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp331 IO.mapRequired("ThunkSection", Symbol.ThunkSection); in map()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h99 uint16_t ThunkSection = 0; variable
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp450 formatSegmentOffset(Tramp.ThunkSection, Tramp.ThunkOffset), in visitKnownRecord()