Home
last modified time | relevance | path

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

/src/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.h153 class ThunkSection; variable
165 ThunkSection *getISDThunkSec(OutputSection *os, InputSection *isec,
169 ThunkSection *getISThunkSec(InputSection *isec);
176 ThunkSection *addThunkSection(OutputSection *os, InputSectionDescription *,
201 llvm::DenseMap<InputSection *, ThunkSection *> thunkedSections;
H A DThunks.h19 class ThunkSection; variable
40 virtual void addSymbols(ThunkSection &isec) = 0;
H A DRelocations.cpp1883 auto *ta = dyn_cast<ThunkSection>(a); in mergeCmp()
1884 auto *tb = dyn_cast<ThunkSection>(b); in mergeCmp()
2013 [](const std::pair<ThunkSection *, uint32_t> &ts) { in mergeThunks() argument
2020 std::vector<ThunkSection *> newThunks; in mergeThunks()
2021 for (std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections) in mergeThunks()
2025 [](const ThunkSection *a, const ThunkSection *b) { in mergeThunks()
2057 ThunkSection *ThunkCreator::getISDThunkSec(OutputSection *os, in getISDThunkSec()
2064 for (std::pair<ThunkSection *, uint32_t> tp : isd->thunkSections) { in getISDThunkSec()
2065 ThunkSection *ts = tp.first; in getISDThunkSec()
2092 ThunkSection *ThunkCreator::getISThunkSec(InputSection *isec) { in getISThunkSec()
[all …]
H A DLinkerScript.h36 class ThunkSection; variable
226 SmallVector<std::pair<ThunkSection *, uint32_t>, 0> thunkSections;
H A DSyntheticSections.h1276 class ThunkSection final : public SyntheticSection {
1279 ThunkSection(OutputSection *os, uint64_t off);
H A DSyntheticSections.cpp4212 ThunkSection::ThunkSection(OutputSection *os, uint64_t off) in ThunkSection() function in ThunkSection
4219 size_t ThunkSection::getSize() const { in getSize()
4225 void ThunkSection::addThunk(Thunk *t) { in addThunk()
4230 void ThunkSection::writeTo(uint8_t *buf) { in writeTo()
4235 InputSection *ThunkSection::getTargetInputSection() const { in getTargetInputSection()
4242 bool ThunkSection::assignOffsets() { in assignOffsets()
/src/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()
/src/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()
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp331 IO.mapRequired("ThunkSection", Symbol.ThunkSection); in map()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h99 uint16_t ThunkSection = 0; variable
/src/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp454 formatSegmentOffset(Tramp.ThunkSection, Tramp.ThunkOffset), in visitKnownRecord()