Searched refs:Manglings (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Mangle.cpp | 506 std::vector<std::string> Manglings; in getAllManglings() local 516 Manglings.emplace_back(getMangledStructor(CD, Ctor_Base)); in getAllManglings() 520 Manglings.emplace_back(getMangledStructor(CD, Ctor_Complete)); in getAllManglings() 525 Manglings.emplace_back(getMangledStructor(CD, Ctor_DefaultClosure)); in getAllManglings() 527 Manglings.emplace_back(getMangledStructor(DD, Dtor_Base)); in getAllManglings() 529 Manglings.emplace_back(getMangledStructor(DD, Dtor_Complete)); in getAllManglings() 531 Manglings.emplace_back(getMangledStructor(DD, Dtor_Deleting)); in getAllManglings() 534 Manglings.emplace_back(getName(ND)); in getAllManglings() 545 Manglings.emplace_back(ThunkName); in getAllManglings() 551 return Manglings; in getAllManglings()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 2132 const auto ExistingRecord = Manglings.find(NonTargetName); in UpdateMultiVersionNames() 2133 if (ExistingRecord != std::end(Manglings)) in UpdateMultiVersionNames() 2134 Manglings.remove(&(*ExistingRecord)); in UpdateMultiVersionNames() 2135 auto Result = Manglings.insert(std::make_pair(OtherName, OtherGD)); in UpdateMultiVersionNames() 2205 auto Result = Manglings.insert(std::make_pair(MangledName, GD)); in getMangledName() 2226 auto Result = Manglings.insert(std::make_pair(Out.str(), BD)); in getBlockMangledName() 4619 GlobalDecl ExistingDecl = Manglings.lookup(MangledName); in emitCPUDispatchDefinition() 7717 auto Res = Manglings.find(MangledName); in lookupRepresentativeDecl() 7718 if (Res == Manglings.end()) in lookupRepresentativeDecl() 8121 assert(NewBuilder->Manglings.empty() && in moveLazyEmissionStates() [all …]
|
| H A D | CodeGenModule.h | 477 llvm::StringMap<GlobalDecl, llvm::BumpPtrAllocator> Manglings; variable
|