Lines Matching refs:ThunkSection
1563 auto *ta = dyn_cast<ThunkSection>(a); in mergeCmp()
1564 auto *tb = dyn_cast<ThunkSection>(b); in mergeCmp()
1693 [](const std::pair<ThunkSection *, uint32_t> &ts) { in mergeThunks() argument
1700 std::vector<ThunkSection *> newThunks; in mergeThunks()
1701 for (std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections) in mergeThunks()
1705 [](const ThunkSection *a, const ThunkSection *b) { in mergeThunks()
1724 ThunkSection *ThunkCreator::getISDThunkSec(OutputSection *os, InputSection *isec, in getISDThunkSec()
1727 for (std::pair<ThunkSection *, uint32_t> tp : isd->thunkSections) { in getISDThunkSec()
1728 ThunkSection *ts = tp.first; in getISDThunkSec()
1752 ThunkSection *ThunkCreator::getISThunkSec(InputSection *isec) { in getISThunkSec()
1753 ThunkSection *ts = thunkedSections.lookup(isec); in getISThunkSec()
1829 ThunkSection *ThunkCreator::addThunkSection(OutputSection *os, in addThunkSection()
1832 auto *ts = make<ThunkSection>(os, off); in addThunkSection()
1998 ThunkSection *ts; in createThunks()