Searched refs:Manglings (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Mangle.cpp | 487 std::vector<std::string> Manglings; in getAllManglings() local 497 Manglings.emplace_back(getMangledStructor(CD, Ctor_Base)); in getAllManglings() 501 Manglings.emplace_back(getMangledStructor(CD, Ctor_Complete)); in getAllManglings() 506 Manglings.emplace_back(getMangledStructor(CD, Ctor_DefaultClosure)); in getAllManglings() 508 Manglings.emplace_back(getMangledStructor(DD, Dtor_Base)); in getAllManglings() 510 Manglings.emplace_back(getMangledStructor(DD, Dtor_Complete)); in getAllManglings() 512 Manglings.emplace_back(getMangledStructor(DD, Dtor_Deleting)); in getAllManglings() 515 Manglings.emplace_back(getName(ND)); in getAllManglings() 526 Manglings.emplace_back(ThunkName); in getAllManglings() 532 return Manglings; in getAllManglings()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenModule.cpp | 1960 const auto ExistingRecord = Manglings.find(NonTargetName); in UpdateMultiVersionNames() 1961 if (ExistingRecord != std::end(Manglings)) in UpdateMultiVersionNames() 1962 Manglings.remove(&(*ExistingRecord)); in UpdateMultiVersionNames() 1963 auto Result = Manglings.insert(std::make_pair(OtherName, OtherGD)); in UpdateMultiVersionNames() 2023 auto Result = Manglings.insert(std::make_pair(MangledName, GD)); in getMangledName() 2044 auto Result = Manglings.insert(std::make_pair(Out.str(), BD)); in getBlockMangledName() 4375 GlobalDecl ExistingDecl = Manglings.lookup(MangledName); in emitCPUDispatchDefinition() 7384 auto Res = Manglings.find(MangledName); in lookupRepresentativeDecl() 7385 if (Res == Manglings.end()) in lookupRepresentativeDecl() 7788 assert(NewBuilder->Manglings.empty() && in moveLazyEmissionStates() [all …]
|
H A D | CodeGenModule.h | 431 llvm::StringMap<GlobalDecl, llvm::BumpPtrAllocator> Manglings; variable
|