Home
last modified time | relevance | path

Searched refs:Conditions (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp55 ConditionVectorTy Conditions; member in __anonfe4de1c30111::ControlConditions
70 bool isUnconditional() const { return Conditions.empty(); } in isUnconditional()
73 const ConditionVectorTy &getControlConditions() const { return Conditions; } in getControlConditions()
115 ControlConditions Conditions; in collectControlConditions() local
120 return Conditions; in collectControlConditions()
145 Inserted = Conditions.addControlCondition( in collectControlConditions()
151 Inserted = Conditions.addControlCondition( in collectControlConditions()
165 return Conditions; in collectControlConditions()
170 if (none_of(Conditions, [&](ControlCondition &Exists) { in addControlCondition()
173 Conditions.push_back(C); in addControlCondition()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCallSiteSplitting.cpp130 ConditionsTy &Conditions) { in recordCondition() argument
143 Conditions.push_back({Cmp, From->getTerminator()->getSuccessor(0) == To in recordCondition()
153 ConditionsTy &Conditions, BasicBlock *StopAt) { in recordConditions() argument
159 recordCondition(CB, From, To, Conditions); in recordConditions()
165 static void addConditions(CallBase &CB, const ConditionsTy &Conditions) { in addConditions() argument
166 for (const auto &Cond : Conditions) { in addConditions()
470 ConditionsTy Conditions; in shouldSplitOnPredicatedArgument() local
472 recordCondition(CB, Pred, CB.getParent(), Conditions); in shouldSplitOnPredicatedArgument()
474 recordConditions(CB, Pred, Conditions, StopAt); in shouldSplitOnPredicatedArgument()
475 PredsCS.push_back({Pred, Conditions}); in shouldSplitOnPredicatedArgument()
H A DStructurizeCFG.cpp260 BranchVector Conditions; member in __anone8c890770111::StructurizeCFG
560 BranchVector &Conds = Loops ? LoopConds : Conditions; in insertConditions()
960 Conditions.push_back(Br); in wireFlow()
1015 Conditions.clear(); in createFlow()
1195 Conditions.clear(); in run()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterJson.cpp105 json::Array Conditions; in gatherConditions() local
107 Conditions.push_back(Record.isConditionIndependencePairCovered(c)); in gatherConditions()
108 return Conditions; in gatherConditions()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.h333 SmallVector<std::unique_ptr<PredicateMatcher>, 1> Conditions; variable
383 assert(!Conditions.empty() && in popFirstCondition()
385 std::unique_ptr<PredicateMatcher> P = std::move(Conditions.front()); in popFirstCondition()
386 Conditions.erase(Conditions.begin()); in popFirstCondition()
390 assert(!Conditions.empty() && in getFirstCondition()
392 return *Conditions.front(); in getFirstCondition()
394 bool hasFirstCondition() const override { return !Conditions.empty(); } in hasFirstCondition()
H A DGlobalISelMatchTable.cpp484 assert(Conditions.empty() && "Already finalized?"); in finalize()
499 Conditions.push_back(FirstRule.popFirstCondition()); in finalize()
507 if (!Conditions.empty()) { in emit()
513 for (auto &Condition : Conditions) in emit()
521 if (!Conditions.empty()) in emit()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2809 for (const StringRef &Feature : RO.Conditions.Features) in FormAArch64ResolverCondition()
2821 if (!RO.Conditions.Architecture.empty()) { in FormX86ResolverCondition()
2822 StringRef Arch = RO.Conditions.Architecture; in FormX86ResolverCondition()
2831 if (!RO.Conditions.Features.empty()) { in FormX86ResolverCondition()
2832 llvm::Value *FeatureCond = EmitX86CpuSupports(RO.Conditions.Features); in FormX86ResolverCondition()
2884 assert(Options.back().Conditions.Features.size() == 0 && in EmitAArch64MultiVersionResolver()
H A DCodeGenModule.cpp4171 for (StringRef Feat : RO.Conditions.Features) { in TargetMVPriority()
4176 if (!RO.Conditions.Architecture.empty()) in TargetMVPriority()
4178 Priority, TI.multiVersionSortPriority(RO.Conditions.Architecture)); in TargetMVPriority()
4405 return llvm::X86::getCpuSupportsMask(LHS.Conditions.Features) > in emitCPUDispatchDefinition()
4406 llvm::X86::getCpuSupportsMask(RHS.Conditions.Features); in emitCPUDispatchDefinition()
4415 (Options.end() - 2)->Conditions.Features), in emitCPUDispatchDefinition()
H A DCodeGenFunction.h5301 } Conditions;
5305 : Function(F), Conditions(Arch, Feats) {}
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4829 bool HasConds = !Outer->Conditions.empty();
4831 HasConds ? Outer->Conditions[Idx]
4862 ArrayRef<EffectConditionExpr> Conditions;
4870 : Effects(FX), Conditions(Conds) {}
4887 ArrayRef<EffectConditionExpr> conditions() const { return Conditions; }
4896 return LHS.Effects == RHS.Effects && LHS.Conditions == RHS.Conditions;
4912 SmallVector<EffectConditionExpr> Conditions;
4918 : Effects(FX.effects()), Conditions(FX.conditions()) {}
4928 operator FunctionEffectsRef() const { return {Effects, Conditions}; }
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3803 bool HasConds = !epi.FunctionEffects.Conditions.empty(); in Profile()
3811 ID.AddPointer(epi.FunctionEffects.Conditions[Idx].getCondition()); in Profile()
5226 if (NewCondition || !Conditions.empty()) { in insert()
5227 if (Conditions.empty() && !Effects.empty()) in insert()
5228 Conditions.resize(Effects.size()); in insert()
5229 Conditions.insert(Conditions.begin() + InsertIdx, in insert()
/freebsd/crypto/openssl/doc/man7/
H A DEVP_PKEY-RSA.pod211 Section B.3.6 Generation of Probable Primes with Conditions Based on
H A Dmigration_guide.pod379 to the FIPS186-4 B.3.6 method (Generation of Probable Primes with Conditions
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrControl.td53 // Conditions
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h573 NodeArray Conditions; variable
576 : Node(KEnableIfAttr), Conditions(Conditions_) {} in EnableIfAttr()
578 template<typename Fn> void match(Fn F) const { F(Conditions); } in match()
582 Conditions.printWithComma(OB); in printLeft()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp402 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true) in sanitizeFilenameAsIdentifier() argument
403 #define ALIAS(Keyword, AliasOf, Conditions) .Case(Keyword, true) in sanitizeFilenameAsIdentifier() argument
/freebsd/contrib/googletest/docs/reference/
H A Dassertions.md123 ## Boolean Conditions {#boolean}
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.ok1862 J. Tartar Graph Coloring Conditions for the
3022 R. R. Meyer New Sufficient Optimality Conditions for
H A Dfunstack.in8001 …e important theorems on the consecutive retrieval property are proved. Conditions under which the …
13983 …title = "Graph Coloring Conditions for the Existence of Solutions to the Timetable Problem",
23048 …title = "New Sufficient Optimality Conditions for Integer Programming and Their Application…
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.td338 // SPARC Flag Conditions
/freebsd/contrib/wpa/hostapd/
H A DChangeLog212 - added support for Terms and Conditions
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEInstrInfo.td493 // VE Flag Conditions
/freebsd/contrib/wpa/wpa_supplicant/
H A DChangeLog262 - added support for Terms and Conditions
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrFormats.td2094 // that each condition has two names. Conditions "o" and "no" are not used.
/freebsd/contrib/flex/
H A DChangeLog3084 …r @setfilename, so that @set values are correctly evaluated. (Start Conditions, Performance, Le…

12