Home
last modified time | relevance | path

Searched refs:IterBool (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/LTO/
H A DLTOModule.cpp275 auto IterBool = in addObjCClass() local
277 if (IterBool.second) { in addObjCClass()
311 auto IterBool = in addObjCCategory() local
314 if (!IterBool.second) in addObjCCategory()
318 info.name = IterBool.first->first(); in addObjCCategory()
330 auto IterBool = in addObjCClassRef() local
333 if (!IterBool.second) in addObjCClassRef()
483 if (!IterBool.second) in addAsmGlobalSymbol()
526 if (!IterBool.second) in addAsmGlobalSymbolUndef()
548 auto IterBool = in addPotentialUndefinedSymbol() local
[all …]
/openbsd/gnu/llvm/llvm/lib/IR/
H A DValueSymbolTable.cpp64 auto IterBool = vmap.insert(std::make_pair(UniqueName.str(), V)); in makeUniqueName() local
65 if (IterBool.second) in makeUniqueName()
66 return &*IterBool.first; in makeUniqueName()
107 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
108 if (IterBool.second) { in createValueName()
111 return &*IterBool.first; in createValueName()
H A DType.cpp487 auto IterBool = in setName() local
491 if (!IterBool.second) { in setName()
501 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
503 } while (!IterBool.second); in setName()
509 SymbolTableEntry = &*IterBool.first; in setName()
/openbsd/gnu/llvm/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h32 auto IterBool = variable
34 if (IterBool.second) {
41 return IterBool.first->second;
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
/openbsd/gnu/llvm/llvm/lib/MC/
H A DMCContext.cpp546 auto IterBool = ELFUniquingMap.insert(std::make_pair( in getELFSection() local
550 auto &Entry = *IterBool.first; in getELFSection()
551 if (!IterBool.second) in getELFSection()
676 auto Iter = IterBool.first; in getCOFFSection()
677 if (!IterBool.second) in getCOFFSection()
743 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
745 auto &Entry = *IterBool.first; in getWasmSection()
746 if (!IterBool.second) in getWasmSection()
782 auto IterBool = XCOFFUniquingMap.insert(std::make_pair( in getXCOFFSection() local
786 auto &Entry = *IterBool.first; in getXCOFFSection()
[all …]
H A DMCDwarf.cpp603 auto IterBool = SourceIdMap.insert( in tryGetFile() local
606 if (!IterBool.second) in tryGetFile()
607 return IterBool.first->second; in tryGetFile()
/openbsd/gnu/llvm/clang/lib/Basic/
H A DSourceManager.cpp191 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local
192 if (IterBool.second) in getLineTableFilenameID()
193 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
194 return IterBool.first->second; in getLineTableFilenameID()