Home
last modified time | relevance | path

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

12345

/external/llvm-project/llvm/include/llvm/IR/
DPassManagerImpl.h59 bool Inserted; in getResultImpl() local
60 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl()
65 if (Inserted) { in getResultImpl()
120 bool Inserted = in invalidate() local
122 (void)Inserted; in invalidate()
123 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate()
/external/llvm-project/llvm/utils/TableGen/GlobalISel/
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()
/external/llvm-project/libcxx/benchmarks/
Dmap.bench.cpp250 bool Inserted = Map.insert(std::make_pair(K, 1)).second; in run()
252 if (Inserted) in run()
255 if (!Inserted) in run()
292 auto Inserted = Map.insert(*H, std::make_pair(K, 1)); in run()
294 if (Inserted != *H) in run()
297 if (++Inserted != *H) in run()
369 bool Inserted = Map.insert_or_assign(K, 1).second; in run()
371 if (Inserted) in run()
374 if (!Inserted) in run()
411 auto Inserted = Map.insert_or_assign(*H, K, 1); in run()
[all …]
/external/llvm-project/llvm/lib/Transforms/Utils/
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()
/external/llvm/lib/Transforms/Instrumentation/
DCFGMST.h187 bool Inserted; in addEdge() local
188 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr)); in addEdge()
189 if (Inserted) { in addEdge()
194 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); in addEdge()
195 if (Inserted) in addEdge()
/external/llvm-project/llvm/lib/DWARFLinker/
DDWARFLinkerDeclContext.cpp187 bool Inserted; in getChildDeclContext() local
191 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
192 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext()
193 (void)Inserted; in getChildDeclContext()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/
DDWARFLinkerDeclContext.cpp183 bool Inserted; in getChildDeclContext() local
187 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
188 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext()
189 (void)Inserted; in getChildDeclContext()
/external/llvm-project/llvm/lib/IR/
DPassRegistry.cpp59 bool Inserted = in registerPass() local
61 assert(Inserted && "Pass registered multiple times!"); in registerPass()
62 (void)Inserted; in registerPass()
/external/llvm/lib/IR/
DPassRegistry.cpp55 bool Inserted = in registerPass() local
57 assert(Inserted && "Pass registered multiple times!"); in registerPass()
58 (void)Inserted; in registerPass()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassRegistry.cpp59 bool Inserted = in registerPass() local
61 assert(Inserted && "Pass registered multiple times!"); in registerPass()
62 (void)Inserted; in registerPass()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DCFGMST.h256 bool Inserted; in addEdge() local
257 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr)); in addEdge()
258 if (Inserted) { in addEdge()
263 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); in addEdge()
264 if (Inserted) in addEdge()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DFunctionComparator.h73 bool Inserted; in getNumber() local
74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber()
75 if (Inserted) in getNumber()
/external/llvm-project/llvm/include/llvm/Transforms/Utils/
DFunctionComparator.h73 bool Inserted; in getNumber() local
74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber()
75 if (Inserted) in getNumber()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
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()
/external/llvm-project/llvm/lib/XRay/
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()
/external/llvm-project/llvm/lib/Support/
DSignposts.cpp49 const auto &Inserted = Signposts.insert( in getSignpostForTimer() local
51 return Inserted.first->second; in getSignpostForTimer()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DSignposts.cpp49 const auto &Inserted = Signposts.insert( in getSignpostForTimer() local
51 return Inserted.first->second; in getSignpostForTimer()
/external/llvm-project/llvm/include/llvm/CodeGen/
DMachineDominators.h235 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local
236 (void)Inserted; in recordSplitCriticalEdge()
237 assert(Inserted && in recordSplitCriticalEdge()
/external/llvm/include/llvm/CodeGen/
DMachineDominators.h238 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local
239 (void)Inserted; in recordSplitCriticalEdge()
240 assert(Inserted && in recordSplitCriticalEdge()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineDominators.h245 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local
246 (void)Inserted; in recordSplitCriticalEdge()
247 assert(Inserted && in recordSplitCriticalEdge()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPassManager.h710 bool Inserted; in invalidateImpl() local
711 std::tie(IMapI, Inserted) = in invalidateImpl()
713 (void)Inserted; in invalidateImpl()
714 assert(Inserted && "Should not have already inserted this ID, likely " in invalidateImpl()
891 bool Inserted = in invalidate() local
894 (void)Inserted; in invalidate()
895 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate()
942 bool Inserted; in getResultImpl() local
943 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl()
948 if (Inserted) { in getResultImpl()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCGSCCPassManager.cpp464 bool Inserted = RetainedEdges.insert(&CalleeN).second; in updateCGAndAnalysisManagerForFunctionPass() local
465 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass()
466 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass()
486 bool Inserted = RetainedEdges.insert(&RefereeN).second; in updateCGAndAnalysisManagerForFunctionPass() local
487 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass()
488 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass()
/external/llvm-project/clang/utils/TableGen/
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()
/external/llvm/unittests/ADT/
DStringMapTest.cpp237 bool Inserted; in TEST_F() local
239 std::tie(NewIt, Inserted) = in TEST_F()
245 EXPECT_TRUE(Inserted); in TEST_F()
248 std::tie(ExistingIt, Inserted) = in TEST_F()
252 EXPECT_FALSE(Inserted); in TEST_F()

12345