/openbsd/gnu/llvm/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningFilesystem.cpp | 130 auto Insertion = EntriesByFilename.insert({Filename, nullptr}); in getOrEmplaceEntryForFilename() local 131 if (Insertion.second) in getOrEmplaceEntryForFilename() 132 Insertion.first->second = in getOrEmplaceEntryForFilename() 134 return *Insertion.first->second; in getOrEmplaceEntryForFilename() 142 auto Insertion = EntriesByUID.insert({UID, nullptr}); in getOrEmplaceEntryForUID() local 143 if (Insertion.second) { in getOrEmplaceEntryForUID() 148 Insertion.first->second = new (EntryStorage.Allocate()) in getOrEmplaceEntryForUID() 151 return *Insertion.first->second; in getOrEmplaceEntryForUID()
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | InMemoryModuleCache.cpp | 27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer))); in addPCM() local 28 assert(Insertion.second && "Already has a PCM"); in addPCM() 29 return *Insertion.first->second.Buffer; in addPCM()
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | Type.cpp | 373 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local 374 if (Insertion.second) { in get() 381 *Insertion.first = FT; in get() 384 FT = *Insertion.first; in get() 419 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local 420 if (Insertion.second) { in get() 426 *Insertion.first = ST; in get() 429 ST = *Insertion.first; in get() 823 if (Insertion.second) { in get() 831 *Insertion.first = TT; in get() [all …]
|
/openbsd/gnu/llvm/clang/lib/Basic/ |
H A D | FileManager.cpp | 485 auto Insertion = SeenBypassFileEntries->insert( in getBypassFile() local 487 if (!Insertion.second) in getBypassFile() 488 return FileEntryRef(*Insertion.first); in getBypassFile() 493 Insertion.first->second = FileEntryRef::MapValue(*BFE, VF.getDir()); in getBypassFile() 494 BFE->LastRef = FileEntryRef(*Insertion.first); in getBypassFile() 501 return FileEntryRef(*Insertion.first); in getBypassFile()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaAvailability.cpp | 404 std::optional<AttributeInsertion> Insertion = createAttributeInsertion( in DoEmitAvailabilityWarning() local 406 if (!Insertion) in DoEmitAvailabilityWarning() 415 Insertion->Loc, in DoEmitAvailabilityWarning() 416 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName + in DoEmitAvailabilityWarning() 417 "(" + Introduced + "))" + Insertion->Suffix) in DoEmitAvailabilityWarning()
|
/openbsd/gnu/llvm/llvm/lib/MC/ |
H A D | MCCodeView.cpp | 150 auto Insertion = in addToStringTable() local 154 std::make_pair(Insertion.first->first(), Insertion.first->second); in addToStringTable() 155 if (Insertion.second) { in addToStringTable()
|
/openbsd/gnu/llvm/llvm/lib/Object/ |
H A D | ArchiveWriter.cpp | 295 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); in printMemberHeader() local 296 if (Insertion.second) { in printMemberHeader() 297 Insertion.first->second = StringTable.tell(); in printMemberHeader() 300 NamePos = Insertion.first->second; in printMemberHeader()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CodeGenTypes.cpp | 787 auto Insertion = RecordsWithOpaqueMemberPointers.insert({C, nullptr}); in ConvertType() local 788 if (Insertion.second) in ConvertType() 789 Insertion.first->second = llvm::StructType::create(getLLVMContext()); in ConvertType() 790 ResultType = Insertion.first->second; in ConvertType()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/ |
H A D | MergeICmps.cpp | 119 const auto Insertion = BaseToIndex.try_emplace(Base, Order); in getBaseId() local 120 if (Insertion.second) in getBaseId() 122 return Insertion.first->second; in getBaseId()
|
/openbsd/gnu/llvm/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILValueEnumerator.cpp | 699 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local 700 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl() 701 if (!Insertion.second) { in enumerateMetadataImpl() 704 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
|
/openbsd/gnu/llvm/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 694 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local 695 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl() 696 if (!Insertion.second) { in enumerateMetadataImpl() 699 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 202 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() local 203 if (Insertion.second) { in maybeRecordFile() 230 return Insertion.first->second; in maybeRecordFile() 1456 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()}); in beginFunctionImpl() local 1457 assert(Insertion.second && "function already has info"); in beginFunctionImpl() 1458 CurFn = Insertion.first->second.get(); in beginFunctionImpl() 3233 auto Insertion = ScopeGlobals.insert( in collectGlobalVariableInfo() local 3235 if (Insertion.second) in collectGlobalVariableInfo() 3236 Insertion.first->second = std::make_unique<GlobalVariableList>(); in collectGlobalVariableInfo() 3237 VariableList = Insertion.first->second.get(); in collectGlobalVariableInfo()
|
/openbsd/gnu/llvm/llvm/utils/TableGen/ |
H A D | AsmWriterEmitter.cpp | 1114 auto Insertion = in EmitPrintAliasInstruction() local 1116 if (Insertion.second) { in EmitPrintAliasInstruction() 1121 unsigned AsmStrOffset = Insertion.first->second; in EmitPrintAliasInstruction()
|
/openbsd/gnu/llvm/clang/lib/Parse/ |
H A D | ParseTemplate.cpp | 1060 FixItHint Insertion; in DiagnoseMisplacedEllipsis() local 1062 Insertion = FixItHint::CreateInsertion(CorrectLoc, "..."); in DiagnoseMisplacedEllipsis() 1064 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion in DiagnoseMisplacedEllipsis()
|
H A D | ParseDeclCXX.cpp | 2570 FixItHint Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local 2575 Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() 2581 << FixItHint::CreateRemoval(SpecLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() 2591 FixItHint Insertion = in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local 2599 << FixItHint::CreateRemoval(RefQualifierLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | HowToUpdateDebugInfo.rst | 459 MIRDebugify inserts a ``DBG_VALUE`` that references a constant. Insertion of
|
H A D | CodeGenerator.rst | 138 5. `Prolog/Epilog Code Insertion`_ --- Once the machine code has been generated 1511 .. _Prolog/Epilog Code Insertion: 1513 Prolog/Epilog Code Insertion
|
H A D | Statepoints.rst | 545 Utility Passes for Safepoint Insertion
|
/openbsd/gnu/llvm/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 4122 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local 4124 getStreamer().emitInt32(Insertion.second); in parseDirectiveCVString()
|
H A D | MasmParser.cpp | 5427 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local 5429 getStreamer().emitIntValue(Insertion.second, 4); in parseDirectiveCVString()
|
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/ |
H A D | SystemZScheduleZ196.td | 287 // Insertion
|
H A D | SystemZScheduleZEC12.td | 298 // Insertion
|
H A D | SystemZScheduleZ13.td | 324 // Insertion
|
H A D | SystemZScheduleZ16.td | 329 // Insertion
|
H A D | SystemZScheduleZ14.td | 325 // Insertion
|