Home
last modified time | relevance | path

Searched refs:InsertResult (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPriorityWorklist.h92 auto InsertResult = M.insert({X, V.size()}); in insert() local
93 if (InsertResult.second) { in insert()
99 auto &Index = InsertResult.first->second; in insert()
124 auto InsertResult = M.insert({V[i], i}); in insert() local
125 if (InsertResult.second) in insert()
130 ptrdiff_t &Index = InsertResult.first->second; in insert()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDeltaTree.cpp56 struct InsertResult { struct in __anon400feef60111::DeltaTreeNode
108 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
110 void DoSplit(InsertResult &InsertRes);
134 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode()
184 InsertResult *InsertRes) { in DoInsertion()
298 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) { in DoSplit()
454 DeltaTreeNode::InsertResult InsertRes; in AddDelta()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp29 auto InsertResult = Strings.insert({S, Entry}); in internString() local
30 return InsertResult.first->getKey(); in internString()
H A DMachineBlockPlacement.cpp1410 auto InsertResult = TriangleChainMap.try_emplace(PDom, &BB, PDom); in precomputeTriangleChains() local
1411 assert(InsertResult.second && "Block seen twice."); in precomputeTriangleChains()
1412 (void)InsertResult; in precomputeTriangleChains()
1433 auto InsertResult = ComputedEdges.insert({src, {dst, true}}); in precomputeTriangleChains() local
1434 assert(InsertResult.second && "Block seen twice."); in precomputeTriangleChains()
1435 (void)InsertResult; in precomputeTriangleChains()
H A DAssignmentTrackingAnalysis.cpp2511 auto InsertResult = in removeRedundantDbgLocsUsingBackwardScan() local
2513 bool FirstDefinition = InsertResult.second; in removeRedundantDbgLocsUsingBackwardScan()
2514 BitVector &DefinedBytes = InsertResult.first->second; in removeRedundantDbgLocsUsingBackwardScan()
H A DLiveDebugVariables.cpp1605 auto InsertResult = NewLocations.insert({Loc, {Spilled, SpillOffset}}); in rewriteLocations() local
1606 unsigned NewLocNo = std::distance(NewLocations.begin(), InsertResult.first); in rewriteLocations()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp494 auto InsertResult = BuildIDPaths.insert({BuildIDStr, Result}); in getOrFindDebugBinary() local
495 assert(InsertResult.second); in getOrFindDebugBinary()
496 (void)InsertResult; in getOrFindDebugBinary()
627 auto InsertResult = Modules.insert( in createModuleInfo() local
629 assert(InsertResult.second); in createModuleInfo()
632 return InsertResult.first->second.get(); in createModuleInfo()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h127 auto InsertResult = TheTable.try_emplace(Key, TheTable.size()); in createImportIDs() local
128 return makeIDPair(InsertResult.first->second); in createImportIDs()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp347 auto InsertResult = Markers.insert( in addMarker() local
350 Marker &M = InsertResult.first->second; in addMarker()
351 if (!InsertResult.second) { in addMarker()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp676 bool InsertResult = getContext().addGenDwarfSection(Section); in parseSectionArguments() local
677 if (InsertResult && getContext().getDwarfVersion() <= 2) in parseSectionArguments()
H A DAsmParser.cpp969 bool InsertResult = getContext().addGenDwarfSection(Sec); in Run() local
970 assert(InsertResult && ".text section should not have debug info yet"); in Run()
971 (void)InsertResult; in Run()
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp961 InsertResult = LegalTypes.insert({Idx, T}); in computeType() local
962 return &(InsertResult.first->second); in computeType()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp622 auto InsertResult = in insertFunctionRecordIfNeeded() local
624 if (InsertResult.second) { in insertFunctionRecordIfNeeded()
637 size_t OldRecordIndex = InsertResult.first->second; in insertFunctionRecordIfNeeded()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp481 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode() local
482 (void)InsertResult; in recordTypeIndexForDINode()
483 assert(InsertResult.second && "DINode was already assigned a type index"); in recordTypeIndexForDINode()
2793 auto InsertResult = CompleteTypeIndices.try_emplace(CTy); in getCompleteTypeIndex() local
2794 if (!InsertResult.second) in getCompleteTypeIndex()
2795 return InsertResult.first->second; in getCompleteTypeIndex()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2372 auto InsertResult = in produceMLocTransferFunction() local
2376 assert(InsertResult.second); in produceMLocTransferFunction()
2377 (void)InsertResult; in produceMLocTransferFunction()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp7634 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result}); in verifyTBAABaseNode() local
7635 (void)InsertResult; in verifyTBAABaseNode()
7636 assert(InsertResult.second && "We just checked!"); in verifyTBAABaseNode()
7781 auto InsertResult = TBAAScalarNodes.insert({MD, Result}); in isValidScalarTBAANode() local
7782 (void)InsertResult; in isValidScalarTBAANode()
7783 assert(InsertResult.second && "Just checked!"); in isValidScalarTBAANode()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp6926 auto InsertResult = MaterializedGlobalTemporaryMap.insert({E, nullptr}); in GetAddrOfGlobalTemporary() local
6927 if (!InsertResult.second) { in GetAddrOfGlobalTemporary()
6930 if (!InsertResult.first->second) { in GetAddrOfGlobalTemporary()
6935 InsertResult.first->second = new llvm::GlobalVariable( in GetAddrOfGlobalTemporary()
6939 return ConstantAddress(InsertResult.first->second, in GetAddrOfGlobalTemporary()
6941 InsertResult.first->second->stripPointerCasts()) in GetAddrOfGlobalTemporary()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp8983 auto InsertResult = TripCountMap.insert({{ExitCond, ControlsOnlyExit}, EL}); in insert() local
8984 assert(InsertResult.second && "Expected successful insertion!"); in insert()
8985 (void)InsertResult; in insert()
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/
H A DDemangleTestCases.inc8585 …ltaTreeNode::DoInsertion(unsigned int, int, (anonymous namespace)::DeltaTreeNode::InsertResult*)"},
8586 …nonymous namespace)::DeltaTreeNode::DoSplit((anonymous namespace)::DeltaTreeNode::InsertResult&)"},