HomeSort by: relevance | last modified time | path
    Searched defs:Inserted (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
CodeExpansions.h 27 bool Inserted = Expansions.try_emplace(Name, Expansion).second;
28 assert(Inserted && "Declared variable twice");
29 (void)Inserted;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PassManagerImpl.h 57 bool Inserted;
58 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair(
63 if (Inserted) {
77 // P.run may have inserted elements into AnalysisResults and invalidated
80 assert(RI != AnalysisResults.end() && "we just inserted it!");
118 bool Inserted =
120 (void)Inserted;
121 assert(Inserted && "Should never have already inserted this ID, likely "
PassManager.h 717 bool Inserted;
718 std::tie(IMapI, Inserted) =
720 (void)Inserted;
721 assert(Inserted && "Should not have already inserted this ID, likely "
  /src/external/apache2/llvm/dist/llvm/lib/IR/
PassRegistry.cpp 57 bool Inserted =
59 assert(Inserted && "Pass registered multiple times!");
60 (void)Inserted;
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
RemarkLinker.cpp 55 auto Inserted = Remarks.insert(std::move(Remark));
56 return **Inserted.first;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeMoverUtils.cpp 77 /// equals to \p True. Return true if inserted successfully.
134 bool Inserted = false;
143 Inserted = Conditions.addControlCondition(
149 Inserted = Conditions.addControlCondition(
154 if (Inserted)
167 bool Inserted = false;
172 Inserted = true;
175 LLVM_DEBUG(dbgs() << (Inserted ? "Inserted " : "Not inserted ") << C << "\n")
    [all...]
LoopRotationUtils.cpp 93 /// previously exist in the map, and the value was inserted.
95 bool Inserted = VM.insert({K, V}).second;
96 assert(Inserted);
97 (void)Inserted;
472 // MemorySSA cares whether the cloned instruction was inserted or not, and
524 // Keep the compile time impact low by only adapting the inserted block
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
FunctionComparator.h 73 bool Inserted;
74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber});
75 if (Inserted)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signposts.cpp 59 const auto &Inserted = Signposts.insert(std::make_pair(O, ID));
60 return Inserted.first->second;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
MacroExpansionContext.cpp 61 bool Inserted;
62 std::tie(It, Inserted) =
64 if (Inserted) {
225 bool Inserted;
226 std::tie(It, Inserted) =
228 if (!Inserted)
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangSyntaxEmitter.cpp 88 bool Inserted = ByName.try_emplace(R->getName(), &AllTypes.back()).second;
89 assert(Inserted && "Duplicate node name");
90 (void)Inserted;
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinkerDeclContext.cpp 165 bool Inserted;
169 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext);
170 assert(Inserted && "Failed to insert DeclContext");
171 (void)Inserted;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineDominators.h 61 /// Remember all the basic blocks that are inserted during
235 bool Inserted = NewBBs.insert(NewBB).second;
236 (void)Inserted;
237 assert(Inserted &&
238 "A basic block inserted via edge splitting cannot appear twice");
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CaptureTracking.cpp 381 bool Inserted;
382 std::tie(CacheIt, Inserted) = IsCapturedCache->insert({V, false});
383 if (!Inserted)
LazyCallGraph.cpp 348 bool Inserted = SCCSet.insert(C).second;
349 assert(Inserted && "Found a duplicate SCC!");
494 /// constraint after the edge is inserted.
1098 // a connected set with the inserted edge, merge all of them into this SCC.
1954 bool Inserted =
1956 (void)Inserted;
1957 assert(Inserted && "Cannot already have this RefSCC in the index map!");
CGSCCPassManager.cpp 925 bool Inserted = RetainedEdges.insert(CalleeN).second;
926 (void)Inserted;
927 assert(Inserted && "We should never visit a function twice.");
961 bool Inserted = RetainedEdges.insert(RefereeN).second;
962 (void)Inserted;
963 assert(Inserted && "We should never visit a function twice.");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SwiftErrorValueTracking.cpp 127 bool Inserted = false;
140 Inserted = true;
143 return Inserted;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
CFGMST.h 263 bool Inserted;
264 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
265 if (Inserted) {
266 // Newly inserted, update the real info.
270 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
271 if (Inserted)
272 // Newly inserted, update the real info.
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
Profile.cpp 212 bool Inserted;
213 std::tie(PathDataIt, Inserted) = It->second->insert({NewPathID, Data});
214 if (!Inserted) {
245 bool Inserted;
246 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data});
247 if (!Inserted) {
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
coff2yaml.cpp 147 bool Inserted;
148 std::tie(It, Inserted) = SymbolUnique.insert(std::make_pair(Name, true));
149 if (!Inserted)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
FoldingSet.h 31 /// it, otherwise return the bucket it should be inserted into.
73 /// If The result is equal to the input then the node has been inserted.
89 /// should be inserted using InsertNode.
477 T *Inserted = GetOrInsertNode(N);
478 (void)Inserted;
479 assert(Inserted == N && "Node already inserted!");
753 /// types in an enclosing object so that they can be inserted into FoldingSets.
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCContext.cpp 503 bool Inserted;
504 std::tie(I, Inserted) =
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 383 bool Inserted;
385 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0));
386 if (Inserted) {
433 bool Inserted;
435 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0));
436 if (Inserted) {
868 // If Base constant is to be inserted in multiple places,
LoopUnrollPass.cpp 538 bool Inserted = InstCostMap.insert({&I, (int)Iteration,
541 (void)Inserted;
542 assert(Inserted && "Cannot have a state for an unvisited instruction!");
1282 /// loop preheaders be inserted into the CFG...
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExpr.cpp 3569 bool Inserted = Platforms.insert(Spec.getPlatform()).second;
3570 if (!Inserted) {

Completed in 58 milliseconds

1 2