Home
last modified time | relevance | path

Searched refs:Substitutions (Results 1 – 8 of 8) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
HDSimplifyConstraints.cpp19 const llvm::DenseMap<Atom, const Formula *> &Substitutions, in substitute() argument
23 if (auto iter = Substitutions.find(F.getAtom()); in substitute()
24 iter != Substitutions.end()) in substitute()
30 return arena.makeNot(substitute(*F.operands()[0], Substitutions, arena)); in substitute()
32 return arena.makeAnd(substitute(*F.operands()[0], Substitutions, arena), in substitute()
33 substitute(*F.operands()[1], Substitutions, arena)); in substitute()
35 return arena.makeOr(substitute(*F.operands()[0], Substitutions, arena), in substitute()
36 substitute(*F.operands()[1], Substitutions, arena)); in substitute()
39 substitute(*F.operands()[0], Substitutions, arena), in substitute()
40 substitute(*F.operands()[1], Substitutions, arena)); in substitute()
[all …]
/freebsd-14-stable/contrib/llvm-project/clang/utils/TableGen/
HDClangBuiltinsEmitter.cpp299 auto Substitutions = R->getValueAsListOfStrings("Substitutions"); in getTemplateInsts() local
303 if (Substitutions.size() != Affixes.size()) in getTemplateInsts()
307 for (auto [Affix, Substitution] : llvm::zip(Affixes, Substitutions)) { in getTemplateInsts()
HDClangDiagnosticsEmitter.cpp590 Substitutions.try_emplace( in DiagnosticTextBuilder()
598 if (Substitutions.count(Name)) in DiagnosticTextBuilder()
611 auto It = Substitutions.find(S->Name); in getSubstitution()
612 if (It == Substitutions.end()) in getSubstitution()
683 StringMap<DiagText> Substitutions; member
/freebsd-14-stable/contrib/llvm-project/llvm/lib/FileCheck/
HDFileCheckImpl.h445 std::vector<std::unique_ptr<Substitution>> Substitutions; variable
582 std::vector<Substitution *> Substitutions; variable
717 return !(Substitutions.empty() && VariableDefs.empty()); in hasVariable()
HDFileCheck.cpp1033 Substitutions.push_back(Substitution); in parsePattern()
1098 if (!Substitutions.empty()) { in match()
1109 for (const auto &Substitution : Substitutions) { in match()
1210 if (!Substitutions.empty()) { in printSubstitutions()
1211 for (const auto &Substitution : Substitutions) { in printSubstitutions()
1377 Substitutions.push_back( in makeStringSubstitution()
1379 return Substitutions.back().get(); in makeStringSubstitution()
1385 Substitutions.push_back(std::make_unique<NumericSubstitution>( in makeNumericSubstitution()
1387 return Substitutions.back().get(); in makeNumericSubstitution()
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Basic/
HDBuiltinsBase.td124 list<string> Substitutions = substitutions;
HDDiagnosticCommonKinds.td15 // Substitutions.
/freebsd-14-stable/contrib/llvm-project/clang/lib/AST/
HDItaniumMangle.cpp395 llvm::DenseMap<uintptr_t, unsigned> Substitutions; member in __anone0039bd60111::CXXNameMangler
438 Substitutions(Outer.Substitutions), in CXXNameMangler()
6779 llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr); in mangleSubstitution()
6780 if (I == Substitutions.end()) in mangleSubstitution()
6950 assert(!Substitutions.count(Ptr) && "Substitution already exists!"); in addSubstitution()
6951 Substitutions[Ptr] = SeqID++; in addSubstitution()
6957 Substitutions.swap(Other->Substitutions); in extendSubstitutions()