| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | CFGMST.h | 258 bool Inserted; in addEdge() local 259 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr)); in addEdge() 260 if (Inserted) { in addEdge() 265 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); in addEdge() 266 if (Inserted) in addEdge()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | PassRegistry.cpp | 60 bool Inserted = in registerPass() local 62 assert(Inserted && "Pass registered multiple times!"); in registerPass() 63 (void)Inserted; in registerPass()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionComparator.h | 74 bool Inserted; in getNumber() local 75 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber() 76 if (Inserted) in getNumber()
|
| /freebsd-12.1/contrib/llvm/lib/XRay/ |
| H A D | Profile.cpp | 213 bool Inserted; in mergeProfilesByThread() local 214 std::tie(PathDataIt, Inserted) = It->second->insert({NewPathID, Data}); in mergeProfilesByThread() 215 if (!Inserted) { in mergeProfilesByThread() 246 bool Inserted; in mergeProfilesByStack() local 247 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data}); in mergeProfilesByStack() 248 if (!Inserted) { in mergeProfilesByStack()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | PassManager.h | 703 bool Inserted; in invalidateImpl() local 704 std::tie(IMapI, Inserted) = in invalidateImpl() 706 (void)Inserted; in invalidateImpl() 707 assert(Inserted && "Should not have already inserted this ID, likely " in invalidateImpl() 884 bool Inserted = in invalidate() local 887 (void)Inserted; in invalidate() 888 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate() 935 bool Inserted; in getResultImpl() local 936 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl() 941 if (Inserted) { in getResultImpl()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | MachineDominators.h | 246 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local 247 (void)Inserted; in recordSplitCriticalEdge() 248 assert(Inserted && in recordSplitCriticalEdge()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | CGSCCPassManager.cpp | 459 bool Inserted = RetainedEdges.insert(&CalleeN).second; in updateCGAndAnalysisManagerForFunctionPass() local 460 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass() 461 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass() 481 bool Inserted = RetainedEdges.insert(&RefereeN).second; in updateCGAndAnalysisManagerForFunctionPass() local 482 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass() 483 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass()
|
| H A D | BranchProbabilityInfo.cpp | 445 bool Inserted; in isSCCHeader() local 447 std::tie(HeaderMapIt, Inserted) = HeaderMap.insert(std::make_pair(BB, false)); in isSCCHeader() 448 if (Inserted) { in isSCCHeader()
|
| H A D | LazyCallGraph.cpp | 304 bool Inserted = SCCSet.insert(C).second; in verify() local 305 assert(Inserted && "Found a duplicate SCC!"); in verify() 1717 bool Inserted = in buildRefSCCs() local 1719 (void)Inserted; in buildRefSCCs() 1720 assert(Inserted && "Cannot already have this RefSCC in the index map!"); in buildRefSCCs()
|
| H A D | MemorySSA.cpp | 1600 bool Inserted = ValueToMemoryAccess.insert({BB, What}).second; in moveTo() local 1601 (void)Inserted; in moveTo() 1602 assert(Inserted && "Cannot move a Phi to a block that already has one"); in moveTo()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | ConstantHoisting.cpp | 370 bool Inserted; in collectConstantCandidates() local 372 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 373 if (Inserted) { in collectConstantCandidates() 418 bool Inserted; in collectConstantCandidates() local 420 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 421 if (Inserted) { in collectConstantCandidates()
|
| H A D | SpeculateAroundPHIs.cpp | 462 bool Inserted = SpecCostMap.insert({I, Cost}).second; in findProfitablePHIs() local 463 (void)Inserted; in findProfitablePHIs() 464 assert(Inserted && "Must not re-insert a cost during the DFS!"); in findProfitablePHIs()
|
| H A D | SimpleLoopUnswitch.cpp | 1372 bool Inserted = ExitLoopMap.insert({PredBB, ExitL}).second; in buildClonedLoops() local 1373 (void)Inserted; in buildClonedLoops() 1374 assert(Inserted && "Should only visit an unlooped block once!"); in buildClonedLoops() 1772 bool Inserted = NewExitLoopBlocks.insert(PredBB).second; in rebuildLoopAfterUnswitch() local 1773 (void)Inserted; in rebuildLoopAfterUnswitch() 1774 assert(Inserted && "Should only visit an unlooped block once!"); in rebuildLoopAfterUnswitch() 2317 bool Inserted = DTCostMap.insert({&N, Cost}).second; in computeDomSubtreeCost() local 2318 (void)Inserted; in computeDomSubtreeCost() 2319 assert(Inserted && "Should not insert a node while visiting children!"); in computeDomSubtreeCost()
|
| H A D | LoopUnrollPass.cpp | 509 bool Inserted = InstCostMap.insert({&I, (int)Iteration, in analyzeLoopUnrollCost() local 512 (void)Inserted; in analyzeLoopUnrollCost() 513 assert(Inserted && "Cannot have a state for an unvisited instruction!"); in analyzeLoopUnrollCost()
|
| H A D | LoopUnswitch.cpp | 278 bool Inserted; in countLoop() local 279 std::tie(PropsIt, Inserted) = in countLoop() 284 if (Inserted) { in countLoop()
|
| H A D | LoopStrengthReduce.cpp | 3309 bool Inserted = InsertFormula(LU, LUIdx, F); in InsertInitialFormula() local 3310 assert(Inserted && "Initial formula already exists!"); (void)Inserted; in InsertInitialFormula() 3321 bool Inserted = InsertFormula(LU, LUIdx, F); in InsertSupplementalFormula() local 3322 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted; in InsertSupplementalFormula() 5215 DenseMap<BasicBlock *, Value *> Inserted; in RewriteForPHI() local 5261 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr))); in RewriteForPHI()
|
| H A D | SROA.cpp | 881 bool Inserted; in visitMemTransferInst() local 883 std::tie(MTPI, Inserted) = in visitMemTransferInst() 886 if (!Inserted) { in visitMemTransferInst() 902 insertUse(II, Offset, Size, /*IsSplittable=*/Inserted && Length); in visitMemTransferInst()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | FoldingSet.h | 459 T *Inserted = GetOrInsertNode(N); in InsertNode() local 460 (void)Inserted; in InsertNode() 461 assert(Inserted == N && "Node already inserted!"); in InsertNode()
|
| /freebsd-12.1/contrib/llvm/tools/lld/COFF/ |
| H A D | SymbolTable.cpp | 290 bool Inserted = false; in insert() local 296 Inserted = true; in insert() 298 return {Sym, Inserted}; in insert()
|
| H A D | DriverUtils.cpp | 188 bool Inserted = Pair.second; in parseMerge() local 189 if (!Inserted) { in parseMerge() 650 bool Inserted = Pair.second; in fixupExports() local 651 if (Inserted) { in fixupExports()
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCContext.cpp | 357 bool Inserted; in createELFRelSection() local 358 std::tie(I, Inserted) = in createELFRelSection()
|
| /freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/ |
| H A D | ClangAttrEmitter.cpp | 1810 bool Inserted = in PragmaClangAttributeSupport() local 1816 if (!Inserted) { in PragmaClangAttributeSupport() 1850 bool Inserted = in PragmaClangAttributeSupport() local 1855 if (!Inserted) { in PragmaClangAttributeSupport()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | Local.cpp | 1116 auto Inserted = PHISet.insert(PN); in EliminateDuplicatePHINodes() local 1117 if (!Inserted.second) { in EliminateDuplicatePHINodes() 1119 PN->replaceAllUsesWith(*Inserted.first); in EliminateDuplicatePHINodes()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 2872 bool Inserted; in GroupNewVirtualOverloads() local 2873 std::tie(J, Inserted) = VisitedGroupIndices.insert( in GroupNewVirtualOverloads() 2875 if (Inserted) in GroupNewVirtualOverloads()
|
| /freebsd-12.1/sys/dev/mps/mpi/ |
| H A D | mpi2_history.txt | 187 * Inserted missing reserved field into structure for IOC
|