Home
last modified time | relevance | path

Searched refs:local16 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp791 g.local16.insert({{nullptr, getMipsPageAddr(sym.getVA(ctx, addend))}, 0}); in addEntry()
801 g.local16.insert({{&sym, addend}, 0}); in addEntry()
813 return getPageEntriesNum() + local16.size() + global.size() + relocs.size() + in getEntriesNum()
825 size_t count = getPageEntriesNum() + local16.size() + global.size(); in getIndexedEntriesNum()
854 g.local16.lookup({nullptr, getMipsPageAddr(sym.getVA(ctx, addend))}); in getPageEntryOffset()
867 return g.local16.lookup({sym, addend}) * ctx.arg.wordsize; in getSymEntryOffset()
897 gots.front().local16.size(); in getLocalEntriesNum()
903 set_union(tmp.local16, src.local16); in tryMergeGots()
940 got.local16.insert({{p.first, 0}, 0}); in build()
953 set_union(got.local16, got.local32); in build()
[all …]
H A DSyntheticSections.h340 llvm::MapVector<GotEntry, size_t> local16; member