Home
last modified time | relevance | path

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

12

/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/lib/IR/
DPassRegistry.cpp55 bool Inserted = in registerPass() local
57 assert(Inserted && "Pass registered multiple times!"); in registerPass()
58 (void)Inserted; in registerPass()
/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/lib/VMCore/
DPassRegistry.cpp108 bool Inserted = in registerPass() local
110 assert(Inserted && "Pass registered multiple times!"); in registerPass()
111 (void)Inserted; in registerPass()
/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()
/external/llvm/lib/CodeGen/
DExecutionDepsFix.cpp666 bool Inserted = false; in visitSoftInstr() local
668 i != e && !Inserted; ++i) { in visitSoftInstr()
670 Inserted = true; in visitSoftInstr()
674 if (!Inserted) in visitSoftInstr()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DInlineSpiller.cpp478 bool Inserted; in traceSiblingValue() local
479 tie(SVI, Inserted) = in traceSiblingValue()
481 if (!Inserted) { in traceSiblingValue()
557 tie(SVI, Inserted) = in traceSiblingValue()
563 if (Inserted) in traceSiblingValue()
590 tie(SVI, Inserted) = SibValues.insert(std::make_pair(SrcVNI, in traceSiblingValue()
593 if (Inserted) in traceSiblingValue()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DFoldingSet.h172 Node *Inserted = GetOrInsertNode(N); in InsertNode() local
173 (void)Inserted; in InsertNode()
174 assert(Inserted == N && "Node already inserted!"); in InsertNode()
/external/llvm/lib/Transforms/Scalar/
DConstantHoisting.cpp195 bool Inserted; in collectConstantCandidates() local
196 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0)); in collectConstantCandidates()
197 if (Inserted) { in collectConstantCandidates()
DLoopUnrollPass.cpp423 bool Inserted = InstCostMap.insert({&I, (int)Iteration, in analyzeLoopUnrollCost() local
426 (void)Inserted; in analyzeLoopUnrollCost()
427 assert(Inserted && "Cannot have a state for an unvisited instruction!"); in analyzeLoopUnrollCost()
DLoopUnswitch.cpp267 bool Inserted; in countLoop() local
268 std::tie(PropsIt, Inserted) = in countLoop()
273 if (Inserted) { in countLoop()
DLoopStrengthReduce.cpp3024 bool Inserted = InsertFormula(LU, LUIdx, F); in InsertInitialFormula() local
3025 assert(Inserted && "Initial formula already exists!"); (void)Inserted; in InsertInitialFormula()
3036 bool Inserted = InsertFormula(LU, LUIdx, F); in InsertSupplementalFormula() local
3037 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted; in InsertSupplementalFormula()
4623 DenseMap<BasicBlock *, Value *> Inserted; in RewriteForPHI() local
4668 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr))); in RewriteForPHI()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DFoldingSet.h177 Node *Inserted = GetOrInsertNode(N); in InsertNode() local
178 (void)Inserted; in InsertNode()
179 assert(Inserted == N && "Node already inserted!"); in InsertNode()
/external/llvm/include/llvm/ADT/
DFoldingSet.h172 Node *Inserted = GetOrInsertNode(N); in InsertNode() local
173 (void)Inserted; in InsertNode()
174 assert(Inserted == N && "Node already inserted!"); in InsertNode()
/external/llvm/include/llvm/IR/
DPassManager.h527 bool Inserted; in getResultImpl() local
528 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl()
533 if (Inserted) { in getResultImpl()
/external/llvm/lib/MC/
DMCContext.cpp317 bool Inserted; in createELFRelSection() local
318 std::tie(I, Inserted) = in createELFRelSection()
/external/libnl/doc/stylesheets/
Dpygments.css18 .highlight .gi { color: #00A000 } /* Generic.Inserted */
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITEmitter.cpp149 bool Inserted = CallSiteToFunctionMap.insert( in AddCallSite() local
151 (void)Inserted; in AddCallSite()
152 assert(Inserted && "Pair was already in CallSiteToFunctionMap"); in AddCallSite()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2176 bool Inserted = InsertFormula(LU, LUIdx, F); in InsertInitialFormula() local
2177 assert(Inserted && "Initial formula already exists!"); (void)Inserted; in InsertInitialFormula()
2188 bool Inserted = InsertFormula(LU, LUIdx, F); in InsertSupplementalFormula() local
2189 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted; in InsertSupplementalFormula()
2220 SmallPtrSet<const SCEV *, 8> Inserted; in CollectLoopInvariantFixupsAndFormulae() local
2233 if (!Inserted.insert(U)) continue; in CollectLoopInvariantFixupsAndFormulae()
3669 DenseMap<BasicBlock *, Value *> Inserted; in RewriteForPHI() local
3709 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0))); in RewriteForPHI()
/external/swiftshader/third_party/subzero/src/
DIceCfg.cpp796 CfgUnorderedSet<SizeT> Inserted; in shortCircuitJumps() local
798 if (Inserted.find(Node->getIndex()) != Inserted.end()) in shortCircuitJumps()
804 Inserted.insert(Current->getIndex()); in shortCircuitJumps()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp1689 bool Inserted; in getChildDeclContext() local
1693 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
1694 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext()
1695 (void)Inserted; in getChildDeclContext()
3513 bool Inserted; in getStringOffset() local
3517 std::tie(It, Inserted) = Strings.insert(std::make_pair(S, Entry)); in getStringOffset()
3518 if (Inserted || It->getValue().first == 0) { in getStringOffset()
/external/llvm/lib/Analysis/
DLazyCallGraph.cpp821 bool Inserted = ConnectedSet.insert(C).second; in insertIncomingRefEdge() local
822 (void)Inserted; in insertIncomingRefEdge()
823 assert(Inserted && "Cannot insert a refSCC multiple times!"); in insertIncomingRefEdge()
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp160 bool Inserted; in getNumber() local
161 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber()
162 if (Inserted) in getNumber()
/external/llvm/lib/Transforms/Utils/
DLocal.cpp935 auto Inserted = PHISet.insert(PN); in EliminateDuplicatePHINodes() local
936 if (!Inserted.second) { in EliminateDuplicatePHINodes()
938 PN->replaceAllUsesWith(*Inserted.first); in EliminateDuplicatePHINodes()
/external/clang/lib/AST/
DVTableBuilder.cpp2898 bool Inserted; in GroupNewVirtualOverloads() local
2899 std::tie(J, Inserted) = VisitedGroupIndices.insert( in GroupNewVirtualOverloads()
2901 if (Inserted) in GroupNewVirtualOverloads()

12