HomeSort by: relevance | last modified time | path
    Searched defs:Added (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
SymbolStringPool.h 164 bool Added;
165 std::tie(I, Added) = Pool.try_emplace(S, 0);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineInstrBundle.cpp 208 SmallSet<Register, 32> Added;
211 if (Added.insert(Reg).second) {
RegisterCoalescer.cpp 777 LiveRange::Segment Added = LiveRange::Segment(S.start, S.end, DstValNo);
778 LiveRange::Segment &Merged = *Dst.addSegment(Added);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstraintElimination.cpp 125 /// Value2Index. Additional indices for newly discovered values are added to \p
450 bool Added = false;
457 Added |= CS.addVariableRowFill(Coeffs);
458 // If R has been added to the system, queue it for removal once it goes
460 if (Added)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 320 bool Added = KillingInstr->addRegisterKilled(KilledOperand, TRI, true);
321 (void)Added; // suppress compiler warning
322 assert(Added && "Must successfully update kill flag");
384 bool Added = I1.addRegisterKilled(KilledOperand, TRI);
385 (void)Added; // suppress compiler warning
386 assert(Added && "Must successfully update kill flag");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 451 bool Added = false;
456 Added = true;
460 return Added;
SelectionDAGISel.cpp 722 SmallPtrSet<SDNode *, 16> Added;
726 Added.insert(CurDAG->getRoot().getNode());
735 if (Op.getValueType() == MVT::Other && Added.insert(Op.getNode()).second)
1102 // Create a dummy node (which is not added to allnodes), that adds
2322 // If FREEZE instruction is added later, the code below must be changed as
2418 // Add chains that aren't already added (internal). Peek through
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
Core.cpp 209 bool Added = QueryRegistrations[&JD].insert(std::move(Name)).second;
210 (void)Added;
211 assert(Added && "Duplicate dependence notification?");
671 // Remove any symbols already added.
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSAUpdater.cpp 260 // added, rename all uses if we are asked.
389 // Once they are complete, all these Phis are added to the FixupList, and
426 // Optimize potentially non-minimal phis added in this method.
886 // DT is invalidated. Return LoE as its last def. This will be added to
937 // Map a BB to its predecessors: added + previously existing. To get a
952 SmallSetVector<BasicBlock *, 2> Added;
959 auto &AddedBlockSet = PredMap[BB].Added;
968 const auto &AddedBlockSet = BBPredPair.second.Added;
977 assert(pred_size(BB) == AddedBlockSet.size() && "Duplicate edges added.");
981 "This must be an edge added to a new, likely cloned, block.
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp 432 bool Added = Node.addDataChild(Entry.Identifier.ID, Table.MajorVersion,
435 if (Added) {
504 bool Added = addDataChild(Entry.getLanguage(), Entry.getMajorVersion(),
507 if (Added)
509 return Added;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 326 bool Added = Nodes.insert({From, To}).second;
327 (void)Added;
328 assert(Added && "mapping added twice");
335 bool Added = NNSNodes.insert({From, To}).second;
336 (void)Added;
337 assert(Added && "mapping added twice");
356 /// Initially all tokens are added as pending nodes. When processing a clang AST
566 /// Ensures that added nodes properly nest and cover the whole token stream
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 1296 AddedStructorArgCounts Added;
1302 ++Added.Suffix;
1306 return Added;
1316 ++Added.Prefix;
1319 ++Added.Suffix;
1323 return Added;
2002 bool Added;
2003 std::tie(Entry, Added) =
2006 if (!Added)

Completed in 79 milliseconds