HomeSort by: relevance | last modified time | path
    Searched refs:Substs (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64A57FPLoadBalancing.cpp 545 std::map<unsigned, unsigned> Substs;
554 if (U.isReg() && U.isUse() && Substs.find(U.getReg()) != Substs.end()) {
556 U.setReg(Substs[OrigReg]);
562 for (auto J : Substs) {
568 // Now it's safe to remove the substs identified earlier.
570 Substs.erase(J);
581 Substs[MO.getReg()] = Reg;
588 assert(Substs.size() == 0 && "No substitutions should be left active!");
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 384 bool TGParser::resolve(const ForeachLoop &Loop, SubstStack &Substs,
388 for (const auto &S : Substs)
396 return resolve(Loop.Entries, Substs, Final, &Dest->back().Loop->Entries,
408 Substs.emplace_back(Loop.IterVar->getNameInit(), Elt);
409 Error = resolve(Loop.Entries, Substs, Final, Dest);
411 Substs.pop_back();
424 SubstStack &Substs, bool Final,
429 Error = resolve(*E.Loop, Substs, Final, Dest);
433 for (const auto &S : Substs)
450 for (const auto &S : Substs)
    [all...]
TGParser.h 211 bool resolve(const std::vector<RecordsEntry> &Source, SubstStack &Substs,
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
iteration.d 6659 Returns a range with all occurrences of `substs` in `r`.
6668 substs = a set of replacements/substitutions
6679 template substitute(substs...)
6680 if (substs.length >= 2 && isExpressions!substs)
6685 static assert(!(substs.length & 1), "The number of substitution parameters must be even");
6692 if (isInputRange!Value || !is(CommonType!(Value, typeof(substs[0])) == void))
6696 static if (!is(CommonType!(ElementType!Value, typeof(substs[0])) == void))
6702 !is(CommonType!(ElementType!Value, ElementType!(typeof(substs[0]))) == void))
6705 return .substitute(value, substs);
    [all...]

Completed in 56 milliseconds