Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp57 struct InsertResult { struct in __anon546ba07b0111::DeltaTreeNode
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
111 void DoSplit(InsertResult &InsertRes);
136 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode()
185 InsertResult *InsertRes) { in DoInsertion()
298 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) { in DoSplit()
459 DeltaTreeNode::InsertResult InsertRes; in AddDelta()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp34 auto InsertResult = Strings.insert({S, Entry}); in internString() local
35 return InsertResult.first->getKey(); in internString()
H A DMachineBlockPlacement.cpp1344 auto InsertResult = TriangleChainMap.try_emplace(PDom, &BB, PDom); in precomputeTriangleChains() local
1345 assert(InsertResult.second && "Block seen twice."); in precomputeTriangleChains()
1346 (void)InsertResult; in precomputeTriangleChains()
1367 auto InsertResult = ComputedEdges.insert({src, {dst, true}}); in precomputeTriangleChains() local
1368 assert(InsertResult.second && "Block seen twice."); in precomputeTriangleChains()
1369 (void)InsertResult; in precomputeTriangleChains()
H A DAssignmentTrackingAnalysis.cpp2531 auto InsertResult = in removeRedundantDbgLocsUsingBackwardScan() local
2533 bool FirstDefinition = InsertResult.second; in removeRedundantDbgLocsUsingBackwardScan()
2534 BitVector &DefinedBytes = InsertResult.first->second; in removeRedundantDbgLocsUsingBackwardScan()
H A DLiveDebugVariables.cpp1559 auto InsertResult = NewLocations.insert({Loc, {Spilled, SpillOffset}}); in rewriteLocations() local
1560 unsigned NewLocNo = std::distance(NewLocations.begin(), InsertResult.first); in rewriteLocations()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp489 auto InsertResult = BuildIDPaths.insert({BuildIDStr, Result}); in getOrFindDebugBinary() local
490 assert(InsertResult.second); in getOrFindDebugBinary()
491 (void)InsertResult; in getOrFindDebugBinary()
594 auto InsertResult = Modules.insert( in createModuleInfo() local
596 assert(InsertResult.second); in createModuleInfo()
599 return InsertResult.first->second.get(); in createModuleInfo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp739 auto InsertResult = ValueInfoNums.insert({Operand, ValueInfos.size() - 1}); in getOrCreateValueInfo() local
740 assert(InsertResult.second && "Value info number already existed?"); in getOrCreateValueInfo()
741 return ValueInfos[InsertResult.first->second]; in getOrCreateValueInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp345 auto InsertResult = Markers.insert( in addMarker() local
348 Marker &M = InsertResult.first->second; in addMarker()
349 if (!InsertResult.second) { in addMarker()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp718 bool InsertResult = getContext().addGenDwarfSection(Section); in ParseSectionArguments() local
719 if (InsertResult) { in ParseSectionArguments()
H A DAsmParser.cpp993 bool InsertResult = getContext().addGenDwarfSection(Sec); in Run() local
994 assert(InsertResult && ".text section should not have debug info yet"); in Run()
995 (void)InsertResult; in Run()
H A DMasmParser.cpp1361 bool InsertResult = getContext().addGenDwarfSection(Sec); in Run() local
1362 assert(InsertResult && ".text section should not have debug info yet"); in Run()
1363 (void)InsertResult; in Run()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp607 auto InsertResult = in insertFunctionRecordIfNeeded() local
609 if (InsertResult.second) { in insertFunctionRecordIfNeeded()
622 size_t OldRecordIndex = InsertResult.first->second; in insertFunctionRecordIfNeeded()
/freebsd-14.2/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp964 InsertResult = LegalTypes.insert({Idx, T}); in computeType() local
965 return &(InsertResult.first->second); in computeType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp479 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode() local
480 (void)InsertResult; in recordTypeIndexForDINode()
481 assert(InsertResult.second && "DINode was already assigned a type index"); in recordTypeIndexForDINode()
2779 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); in getCompleteTypeIndex() local
2780 if (!InsertResult.second) in getCompleteTypeIndex()
2781 return InsertResult.first->second; in getCompleteTypeIndex()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp6822 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result}); in verifyTBAABaseNode() local
6823 (void)InsertResult; in verifyTBAABaseNode()
6824 assert(InsertResult.second && "We just checked!"); in verifyTBAABaseNode()
6969 auto InsertResult = TBAAScalarNodes.insert({MD, Result}); in isValidScalarTBAANode() local
6970 (void)InsertResult; in isValidScalarTBAANode()
6971 assert(InsertResult.second && "Just checked!"); in isValidScalarTBAANode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2306 auto InsertResult = in produceMLocTransferFunction() local
2310 assert(InsertResult.second); in produceMLocTransferFunction()
2311 (void)InsertResult; in produceMLocTransferFunction()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp6455 auto InsertResult = MaterializedGlobalTemporaryMap.insert({E, nullptr}); in GetAddrOfGlobalTemporary() local
6456 if (!InsertResult.second) { in GetAddrOfGlobalTemporary()
6459 if (!InsertResult.first->second) { in GetAddrOfGlobalTemporary()
6464 InsertResult.first->second = new llvm::GlobalVariable( in GetAddrOfGlobalTemporary()
6468 return ConstantAddress(InsertResult.first->second, in GetAddrOfGlobalTemporary()
6470 InsertResult.first->second->stripPointerCasts()) in GetAddrOfGlobalTemporary()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp8903 auto InsertResult = TripCountMap.insert({{ExitCond, ControlsOnlyExit}, EL}); in insert() local
8904 assert(InsertResult.second && "Expected successful insertion!"); in insert()
8905 (void)InsertResult; in insert()