Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DThunks.cpp86 void addSymbols(ThunkSection &isec) override;
91 ThunkSection *tsec = nullptr;
101 void addSymbols(ThunkSection &sec) override;
113 void addSymbols(ThunkSection &isec) override;
130 void addSymbols(ThunkSection &isec) override;
214 void addSymbols(ThunkSection &isec) override;
224 void addSymbols(ThunkSection &isec) override;
234 void addSymbols(ThunkSection &isec) override;
244 void addSymbols(ThunkSection &isec) override;
255 void addSymbols(ThunkSection &isec) override;
[all …]
H A DRelocations.h167 class ThunkSection; variable
182 ThunkSection *getISDThunkSec(OutputSection *os, InputSection *isec,
186 ThunkSection *getISThunkSec(InputSection *isec);
195 ThunkSection *addThunkSection(OutputSection *os, InputSectionDescription *,
226 llvm::DenseMap<InputSection *, ThunkSection *> thunkedSections;
H A DThunks.h20 class ThunkSection; variable
41 virtual void addSymbols(ThunkSection &isec) = 0;
H A DRelocations.cpp1980 auto *ta = dyn_cast<ThunkSection>(a); in mergeCmp()
1981 auto *tb = dyn_cast<ThunkSection>(b); in mergeCmp()
2114 [](const std::pair<ThunkSection *, uint32_t> &ts) { in mergeThunks() argument
2121 std::vector<ThunkSection *> newThunks; in mergeThunks()
2122 for (std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections) in mergeThunks()
2126 [](const ThunkSection *a, const ThunkSection *b) { in mergeThunks()
2184 ThunkSection *ThunkCreator::getISDThunkSec(OutputSection *os, in getISDThunkSec()
2191 for (std::pair<ThunkSection *, uint32_t> tp : isd->thunkSections) { in getISDThunkSec()
2192 ThunkSection *ts = tp.first; in getISDThunkSec()
2219 ThunkSection *ThunkCreator::getISThunkSec(InputSection *isec) { in getISThunkSec()
[all …]
H A DLinkerScript.h36 class ThunkSection; variable
251 SmallVector<std::pair<ThunkSection *, uint32_t>, 0> thunkSections;
H A DSyntheticSections.h1292 class ThunkSection final : public SyntheticSection {
1295 ThunkSection(Ctx &, OutputSection *os, uint64_t off);
H A DSyntheticSections.cpp4304 ThunkSection::ThunkSection(Ctx &ctx, OutputSection *os, uint64_t off) in ThunkSection() function in ThunkSection
4312 size_t ThunkSection::getSize() const { in getSize()
4318 void ThunkSection::addThunk(Thunk *t) { in addThunk()
4323 void ThunkSection::writeTo(uint8_t *buf) { in writeTo()
4328 InputSection *ThunkSection::getTargetInputSection() const { in getTargetInputSection()
4335 bool ThunkSection::assignOffsets() { in assignOffsets()
/freebsd/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/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/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp330 IO.mapRequired("ThunkSection", Symbol.ThunkSection); in map()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h100 uint16_t ThunkSection = 0; variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp454 formatSegmentOffset(Tramp.ThunkSection, Tramp.ThunkOffset), in visitKnownRecord()