Home
last modified time | relevance | path

Searched refs:Inserted (Results 1 – 25 of 66) sorted by relevance

123

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DPassManagerImpl.h57 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()
/llvm-project-15.0.7/libcxx/benchmarks/
H A Dmap.bench.cpp252 if (Inserted) in run()
255 if (!Inserted) in run()
294 if (Inserted != *H) in run()
371 if (Inserted) in run()
374 if (!Inserted) in run()
413 if (Inserted != *H) in run()
491 if (Inserted) in run()
494 if (!Inserted) in run()
533 if (Inserted != *H) in run()
611 if (Inserted) in run()
[all …]
/llvm-project-15.0.7/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h27 bool Inserted = Expansions.try_emplace(Name, Expansion).second; in declare() local
28 assert(Inserted && "Declared variable twice"); in declare()
29 (void)Inserted; in declare()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DMacroExpansionContext.cpp61 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()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp134 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()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUReleaseVGPRs.cpp59 bool Inserted; in isLastVGPRUseVMEMStore() local
60 std::tie(It, Inserted) = BlockVMEMStore.insert({&MBB, false}); in isLastVGPRUseVMEMStore()
62 if (!Inserted) in isLastVGPRUseVMEMStore()
H A DAMDGPUInsertDelayAlu.cpp215 bool Inserted; in merge() local
216 std::tie(It, Inserted) = insert(KV); in merge()
217 if (!Inserted) in merge()
/llvm-project-15.0.7/llvm/lib/IR/
H A DPassRegistry.cpp51 bool Inserted = in registerPass() local
53 assert(Inserted && "Pass registered multiple times!"); in registerPass()
54 (void)Inserted; in registerPass()
/llvm-project-15.0.7/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp166 bool Inserted; in getChildDeclContext() local
170 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
171 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext()
172 (void)Inserted; in getChildDeclContext()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DCFGMST.h263 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()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h73 bool Inserted; in getNumber() local
74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber()
75 if (Inserted) in getNumber()
/llvm-project-15.0.7/llvm/lib/XRay/
H A DProfile.cpp212 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()
/llvm-project-15.0.7/llvm/lib/Support/
H A DSignposts.cpp58 const auto &Inserted = Signposts.insert(std::make_pair(O, ID)); in getSignpostForObject() local
59 return Inserted.first->second; in getSignpostForObject()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineDominators.h246 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local
247 (void)Inserted; in recordSplitCriticalEdge()
248 assert(Inserted && in recordSplitCriticalEdge()
/llvm-project-15.0.7/clang/utils/TableGen/
H A DClangSyntaxEmitter.cpp88 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()
/llvm-project-15.0.7/llvm/unittests/Transforms/Utils/
H A DSSAUpdaterBulkTest.cpp178 SmallVector<PHINode *, 8> Inserted; in TEST() local
180 Updater.RewriteAllUses(&DT, &Inserted); in TEST()
183 EXPECT_EQ(Inserted.size(), 1u); in TEST()
/llvm-project-15.0.7/llvm/lib/Remarks/
H A DRemarkLinker.cpp60 auto Inserted = Remarks.insert(std::move(Remark)); in keep() local
61 return **Inserted.first; in keep()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp127 bool Inserted = false; in createEntriesInEntryBlock() local
140 Inserted = true; in createEntriesInEntryBlock()
143 return Inserted; in createEntriesInEntryBlock()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DCaptureTracking.cpp492 bool Inserted; in isNonEscapingLocalObject() local
493 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
494 if (!Inserted) in isNonEscapingLocalObject()
H A DCGSCCPassManager.cpp929 bool Inserted = RetainedEdges.insert(CalleeN).second; in updateCGAndAnalysisManagerForPass() local
930 (void)Inserted; in updateCGAndAnalysisManagerForPass()
931 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForPass()
965 bool Inserted = RetainedEdges.insert(RefereeN).second; in updateCGAndAnalysisManagerForPass() local
966 (void)Inserted; in updateCGAndAnalysisManagerForPass()
967 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForPass()
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/X86/
H A Dinterleaved-accesses-waw-dependency.ll27 ; CHECK-NEXT: LV: Inserted: store i32 %tmp24, i32* %storeaddr22, align 4
29 ; CHECK-NEXT: LV: Inserted: store i32 %tmp14, i32* %storeaddr12, align 4
33 ; CHECK-NEXT: LV: Inserted: store i32 %tmp14, i32* %storeaddr12, align 4
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DStringMapTest.cpp260 bool Inserted; in TEST_F() local
262 std::tie(NewIt, Inserted) = in TEST_F()
268 EXPECT_TRUE(Inserted); in TEST_F()
271 std::tie(ExistingIt, Inserted) = in TEST_F()
275 EXPECT_FALSE(Inserted); in TEST_F()
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/SystemZ/
H A Dmem-interleaving-costs.ll56 ; CHECK: LV: Inserted: store i32 %tmp1, i32* %tmp2, align 4
59 ; CHECK: LV: Inserted: %tmp1 = load i32, i32* %tmp0, align 4
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp383 bool Inserted; in collectConstantCandidates() local
385 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates()
386 if (Inserted) { in collectConstantCandidates()
441 bool Inserted; in collectConstantCandidates() local
443 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates()
444 if (Inserted) { in collectConstantCandidates()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp149 bool Inserted; in dumpSections() local
150 std::tie(It, Inserted) = SymbolUnique.insert(std::make_pair(Name, true)); in dumpSections()
151 if (!Inserted) in dumpSections()

123