Searched refs:mapSyms (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | AArch64ErrataFix.cpp | 458 std::vector<const Defined *> &mapSyms = kv.second; in init() local 459 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in init() 462 mapSyms.erase(llvm::unique(mapSyms, in init() 467 mapSyms.end()); in init() 469 if (!mapSyms.empty() && !isCodeMapSymbol(mapSyms.front())) in init() 470 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() 593 uint64_t limit = (dataSym == mapSyms.end()) ? isec->content().size() in patchInputSectionDescription() [all …]
|
| H A D | ARMErrataFix.cpp | 351 std::vector<const Defined *> &mapSyms = kv.second; in init() local 352 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in init() 355 mapSyms.erase(llvm::unique(mapSyms, in init() 360 mapSyms.end()); in init() 362 if (!mapSyms.empty() && !isThumbMapSymbol(mapSyms.front())) in init() 363 mapSyms.erase(mapSyms.begin()); in init() 501 std::vector<const Defined *> &mapSyms = sectionMap[isec]; in patchInputSectionDescription() local 503 auto thumbSym = mapSyms.begin(); in patchInputSectionDescription() 504 while (thumbSym != mapSyms.end()) { in patchInputSectionDescription() 507 uint64_t limit = nonThumbSym == mapSyms.end() ? isec->content().size() in patchInputSectionDescription() [all …]
|
| /freebsd/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | ARM.cpp | 1053 SmallVector<const Defined *, 0> &mapSyms = kv.second; in sortArmMappingSymbols() local 1054 llvm::stable_sort(mapSyms, [](const Defined *a, const Defined *b) { in sortArmMappingSymbols() 1119 SmallVector<const Defined *, 0> &mapSyms = it->second; in convertArmInstructionstoBE8() local 1121 if (mapSyms.empty()) in convertArmInstructionstoBE8() 1126 for (auto &msym : mapSyms) { in convertArmInstructionstoBE8()
|