| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | PassManagerImpl.h | 57 bool Inserted; in getResultImpl() local 58 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl() 63 if (Inserted) { in getResultImpl() 118 bool Inserted = in invalidate() local 120 (void)Inserted; in invalidate() 121 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate()
|
| H A D | PassManager.h | 717 bool Inserted; in invalidateImpl() local 718 std::tie(IMapI, Inserted) = in invalidateImpl() 720 (void)Inserted; in invalidateImpl() 721 assert(Inserted && "Should not have already inserted this ID, likely " in invalidateImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | CodeExpansions.h | 27 bool Inserted = Expansions.try_emplace(Name, Expansion).second; in declare() local 28 assert(Inserted && "Declared variable twice"); in declare() 29 (void)Inserted; in declare()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | MacroExpansionContext.cpp | 61 bool Inserted; in MacroExpands() local 62 std::tie(It, Inserted) = in MacroExpands() 64 if (Inserted) { in MacroExpands() 225 bool Inserted; in onTokenLexed() local 226 std::tie(It, Inserted) = in onTokenLexed() 228 if (!Inserted) in onTokenLexed()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | CodeMoverUtils.cpp | 134 bool Inserted = false; in collectControlConditions() local 143 Inserted = Conditions.addControlCondition( in collectControlConditions() 149 Inserted = Conditions.addControlCondition( in collectControlConditions() 154 if (Inserted) in collectControlConditions() 167 bool Inserted = false; in addControlCondition() local 172 Inserted = true; in addControlCondition() 175 LLVM_DEBUG(dbgs() << (Inserted ? "Inserted " : "Not inserted ") << C << "\n"); in addControlCondition() 176 return Inserted; in addControlCondition()
|
| H A D | LoopRotationUtils.cpp | 95 bool Inserted = VM.insert({K, V}).second; in InsertNewValueIntoMap() local 96 assert(Inserted); in InsertNewValueIntoMap() 97 (void)Inserted; in InsertNewValueIntoMap()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | PassRegistry.cpp | 57 bool Inserted = in registerPass() local 59 assert(Inserted && "Pass registered multiple times!"); in registerPass() 60 (void)Inserted; in registerPass()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinkerDeclContext.cpp | 165 bool Inserted; in getChildDeclContext() local 169 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext() 170 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext() 171 (void)Inserted; in getChildDeclContext()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | CFGMST.h | 263 bool Inserted; in addEdge() local 264 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr)); in addEdge() 265 if (Inserted) { in addEdge() 270 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); in addEdge() 271 if (Inserted) in addEdge()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionComparator.h | 73 bool Inserted; in getNumber() local 74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber() 75 if (Inserted) in getNumber()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/XRay/ |
| H A D | Profile.cpp | 212 bool Inserted; in mergeProfilesByThread() local 213 std::tie(PathDataIt, Inserted) = It->second->insert({NewPathID, Data}); in mergeProfilesByThread() 214 if (!Inserted) { in mergeProfilesByThread() 245 bool Inserted; in mergeProfilesByStack() local 246 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data}); in mergeProfilesByStack() 247 if (!Inserted) { in mergeProfilesByStack()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineDominators.h | 235 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local 236 (void)Inserted; in recordSplitCriticalEdge() 237 assert(Inserted && in recordSplitCriticalEdge()
|
| H A D | MachineFunction.h | 1179 bool Inserted = 1181 (void)Inserted; 1182 assert(Inserted && "Call site info not unique");
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Signposts.cpp | 54 const auto &Inserted = Signposts.insert(std::make_pair(O, ID)); in getSignpostForObject() local 55 return Inserted.first->second; in getSignpostForObject()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | CaptureTracking.cpp | 381 bool Inserted; in isNonEscapingLocalObject() local 382 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject() 383 if (!Inserted) in isNonEscapingLocalObject()
|
| H A D | CGSCCPassManager.cpp | 930 bool Inserted = RetainedEdges.insert(CalleeN).second; in updateCGAndAnalysisManagerForPass() local 931 (void)Inserted; in updateCGAndAnalysisManagerForPass() 932 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForPass() 966 bool Inserted = RetainedEdges.insert(RefereeN).second; in updateCGAndAnalysisManagerForPass() local 967 (void)Inserted; in updateCGAndAnalysisManagerForPass() 968 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForPass()
|
| H A D | IRSimilarityIdentifier.cpp | 768 bool Inserted; in findCandidateStructures() local 785 std::tie(CandToGroupIt, Inserted) = in findCandidateStructures() 796 std::tie(CurrentGroupPair, Inserted) = StructuralGroups.insert( in findCandidateStructures()
|
| H A D | LazyCallGraph.cpp | 348 bool Inserted = SCCSet.insert(C).second; in verify() local 349 assert(Inserted && "Found a duplicate SCC!"); in verify() 1954 bool Inserted = in buildRefSCCs() local 1956 (void)Inserted; in buildRefSCCs() 1957 assert(Inserted && "Cannot already have this RefSCC in the index map!"); in buildRefSCCs()
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangSyntaxEmitter.cpp | 88 bool Inserted = ByName.try_emplace(R->getName(), &AllTypes.back()).second; in add() local 89 assert(Inserted && "Duplicate node name"); in add() 90 (void)Inserted; in add()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/ |
| H A D | RemarkLinker.cpp | 55 auto Inserted = Remarks.insert(std::move(Remark)); in keep() local 56 return **Inserted.first; in keep()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SwiftErrorValueTracking.cpp | 127 bool Inserted = false; in createEntriesInEntryBlock() local 140 Inserted = true; in createEntriesInEntryBlock() 143 return Inserted; in createEntriesInEntryBlock()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | ConstantHoisting.cpp | 383 bool Inserted; in collectConstantCandidates() local 385 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 386 if (Inserted) { in collectConstantCandidates() 433 bool Inserted; in collectConstantCandidates() local 435 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 436 if (Inserted) { in collectConstantCandidates()
|
| H A D | SimpleLoopUnswitch.cpp | 1510 bool Inserted = ExitLoopMap.insert({PredBB, ExitL}).second; in buildClonedLoops() local 1511 (void)Inserted; in buildClonedLoops() 1512 assert(Inserted && "Should only visit an unlooped block once!"); in buildClonedLoops() 1917 bool Inserted = NewExitLoopBlocks.insert(PredBB).second; in rebuildLoopAfterUnswitch() local 1918 (void)Inserted; in rebuildLoopAfterUnswitch() 1919 assert(Inserted && "Should only visit an unlooped block once!"); in rebuildLoopAfterUnswitch() 2499 bool Inserted = DTCostMap.insert({&N, Cost}).second; in computeDomSubtreeCost() local 2500 (void)Inserted; in computeDomSubtreeCost() 2501 assert(Inserted && "Should not insert a node while visiting children!"); in computeDomSubtreeCost()
|
| H A D | LoopUnrollPass.cpp | 536 bool Inserted = InstCostMap.insert({&I, (int)Iteration, in analyzeLoopUnrollCost() local 539 (void)Inserted; in analyzeLoopUnrollCost() 540 assert(Inserted && "Cannot have a state for an unvisited instruction!"); in analyzeLoopUnrollCost()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | FoldingSet.h | 477 T *Inserted = GetOrInsertNode(N); in InsertNode() local 478 (void)Inserted; in InsertNode() 479 assert(Inserted == N && "Node already inserted!"); in InsertNode()
|