Home
last modified time | relevance | path

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

123

/netbsd-src/external/apache2/llvm/dist/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()
H A DPassManager.h717 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()
/netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/
H A 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 …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
H A DLoopRotationUtils.cpp95 bool Inserted = VM.insert({K, V}).second; in InsertNewValueIntoMap() local
96 assert(Inserted); in InsertNewValueIntoMap()
97 (void)Inserted; in InsertNewValueIntoMap()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DPassRegistry.cpp57 bool Inserted = in registerPass() local
59 assert(Inserted && "Pass registered multiple times!"); in registerPass()
60 (void)Inserted; in registerPass()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp165 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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineDominators.h235 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local
236 (void)Inserted; in recordSplitCriticalEdge()
237 assert(Inserted && in recordSplitCriticalEdge()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSignposts.cpp59 const auto &Inserted = Signposts.insert(std::make_pair(O, ID)); in getSignpostForObject() local
60 return Inserted.first->second; in getSignpostForObject()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCaptureTracking.cpp381 bool Inserted; in isNonEscapingLocalObject() local
382 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false}); in isNonEscapingLocalObject()
383 if (!Inserted) in isNonEscapingLocalObject()
H A DCGSCCPassManager.cpp925 bool Inserted = RetainedEdges.insert(CalleeN).second; in updateCGAndAnalysisManagerForPass() local
926 (void)Inserted; in updateCGAndAnalysisManagerForPass()
927 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForPass()
961 bool Inserted = RetainedEdges.insert(RefereeN).second; in updateCGAndAnalysisManagerForPass() local
962 (void)Inserted; in updateCGAndAnalysisManagerForPass()
963 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForPass()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DRemarkLinker.cpp55 auto Inserted = Remarks.insert(std::move(Remark)); in keep() local
56 return **Inserted.first; in keep()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp127 bool Inserted = false; in createEntriesInEntryBlock() local
140 Inserted = true; in createEntriesInEntryBlock()
143 return Inserted; in createEntriesInEntryBlock()
/netbsd-src/external/apache2/llvm/dist/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()
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 DSpeculateAroundPHIs.cpp475 bool Inserted = SpecCostMap.insert({I, Cost}).second; in findProfitablePHIs() local
476 (void)Inserted; in findProfitablePHIs()
477 assert(Inserted && "Must not re-insert a cost during the DFS!"); in findProfitablePHIs()
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/avr/
H A Dt-copy-libgcc3 # Inserted at the end of Makefile by magic[tm].
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/avr/
H A Dt-copy-libgcc3 # Inserted at the end of Makefile by magic[tm].
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp147 bool Inserted; in dumpSections() local
148 std::tie(It, Inserted) = SymbolUnique.insert(std::make_pair(Name, true)); in dumpSections()
149 if (!Inserted) in dumpSections()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h477 T *Inserted = GetOrInsertNode(N); in InsertNode() local
478 (void)Inserted; in InsertNode()
479 assert(Inserted == N && "Node already inserted!"); in InsertNode()

123