Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/ELF/
H A DAArch64ErrataFix.cpp459 std::vector<const Defined *> &mapSyms = kv.second; in init() local
460 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in init()
463 mapSyms.erase( in init()
464 std::unique(mapSyms.begin(), mapSyms.end(), in init()
468 mapSyms.end()); in init()
470 if (!mapSyms.empty() && !isCodeMapSymbol(mapSyms.front())) in init()
471 mapSyms.erase(mapSyms.begin()); in init()
587 std::vector<const Defined *> &mapSyms = sectionMap[isec]; in patchInputSectionDescription() local
589 auto codeSym = mapSyms.begin(); in patchInputSectionDescription()
590 while (codeSym != mapSyms.end()) { in patchInputSectionDescription()
[all …]
H A DARMErrataFix.cpp346 std::vector<const Defined *> &mapSyms = kv.second; in init() local
347 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in init()
350 mapSyms.erase(std::unique(mapSyms.begin(), mapSyms.end(), in init()
355 mapSyms.end()); in init()
357 if (!mapSyms.empty() && !isThumbMapSymbol(mapSyms.front())) in init()
358 mapSyms.erase(mapSyms.begin()); in init()
494 std::vector<const Defined *> &mapSyms = sectionMap[isec]; in patchInputSectionDescription() local
496 auto thumbSym = mapSyms.begin(); in patchInputSectionDescription()
497 while (thumbSym != mapSyms.end()) { in patchInputSectionDescription()
500 uint64_t limit = nonThumbSym == mapSyms.end() ? isec->content().size() in patchInputSectionDescription()
[all …]