Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DAArch64ErrataFix.cpp460 std::vector<const Defined *> &mapSyms = kv.second; in init() local
461 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in init()
464 mapSyms.erase( in init()
465 std::unique(mapSyms.begin(), mapSyms.end(), in init()
469 mapSyms.end()); in init()
471 if (!mapSyms.empty() && !isCodeMapSymbol(mapSyms.front())) in init()
472 mapSyms.erase(mapSyms.begin()); in init()
588 std::vector<const Defined *> &mapSyms = sectionMap[isec]; in patchInputSectionDescription() local
590 auto codeSym = mapSyms.begin(); in patchInputSectionDescription()
591 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 …]
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp1043 SmallVector<const Defined *, 0> &mapSyms = kv.second; in sortArmMappingSymbols() local
1044 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in sortArmMappingSymbols()
1105 SmallVector<const Defined *, 0> &mapSyms = sectionMap[sec]; in convertArmInstructionstoBE8() local
1107 if (mapSyms.empty()) in convertArmInstructionstoBE8()
1112 for (auto &msym : mapSyms) { in convertArmInstructionstoBE8()