Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp1232 if (ctx.symtab->cmseImportLib.count(sym->getName())) { in importCmseSymbols()
1244 ctx.symtab->cmseImportLib[sym->getName()] = sym; in importCmseSymbols()
1335 for (auto &[_, sym] : ctx.symtab->cmseImportLib) { in ArmCmseSGSection()
1345 for (auto &[_, sym] : ctx.symtab->cmseImportLib) { in ArmCmseSGSection()
1352 if (!ctx.symtab->cmseImportLib.empty() && ctx.arg.cmseOutputLib.empty()) { in ArmCmseSGSection()
1364 if (ctx.symtab->cmseImportLib.count(sym->getName())) in addSGVeneer()
1373 auto it = ctx.symtab->cmseImportLib.find(sym->getName()); in addSGVeneer()
1374 if (it != ctx.symtab->cmseImportLib.end()) { in addSGVeneer()
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbolTable.h78 llvm::StringMap<Defined *> cmseImportLib; variable