Home
last modified time | relevance | path

Searched refs:Behavior (Results 1 – 25 of 39) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DVectorBuilder.h27 enum class Behavior { enum
40 Behavior ErrorHandling;
62 Behavior ErrorHandling = Behavior::ReportAndAbort)
H A DModule.h167 ModFlagBehavior Behavior; member
172 : Behavior(B), Key(K), Val(V) {} in ModuleFlagEntry()
534 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
535 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val);
536 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
539 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp266 if (ConstantInt *Behavior = mdconst::dyn_extract_or_null<ConstantInt>(MD)) { in isValidModFlagBehavior() local
267 uint64_t Val = Behavior->getLimitedValue(); in isValidModFlagBehavior()
337 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument
341 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Behavior)), in addModuleFlag()
345 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument
347 addModuleFlag(Behavior, Key, ConstantAsMetadata::get(Val)); in addModuleFlag()
349 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument
352 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val)); in addModuleFlag()
363 void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key, in setModuleFlag() argument
377 addModuleFlag(Behavior, Key, Val); in setModuleFlag()
H A DVectorBuilder.cpp25 if (ErrorHandling == Behavior::SilentlyReturnNone) in handleError()
H A DCore.cpp306 LLVMModuleFlagBehavior Behavior; member
313 map_to_llvmModFlagBehavior(LLVMModuleFlagBehavior Behavior) { in map_to_llvmModFlagBehavior() argument
314 switch (Behavior) { in map_to_llvmModFlagBehavior()
332 map_from_llvmModFlagBehavior(Module::ModFlagBehavior Behavior) { in map_from_llvmModFlagBehavior() argument
333 switch (Behavior) { in map_from_llvmModFlagBehavior()
359 Result[i].Behavior = map_from_llvmModFlagBehavior(ModuleFlag.Behavior); in LLVMCopyModuleFlagsMetadata()
377 return MFE.Behavior; in LLVMModuleFlagEntriesGetFlagBehavior()
400 void LLVMAddModuleFlag(LLVMModuleRef M, LLVMModuleFlagBehavior Behavior, in LLVMAddModuleFlag() argument
403 unwrap(M)->addModuleFlag(map_to_llvmModFlagBehavior(Behavior), in LLVMAddModuleFlag()
H A DAutoUpgrade.cpp5001 if (auto *Behavior = in UpgradeModuleFlags() local
5003 uint64_t V = Behavior->getLimitedValue(); in UpgradeModuleFlags()
5010 if (auto *Behavior = in UpgradeModuleFlags() local
5012 if (Behavior->getLimitedValue() == Module::Error) in UpgradeModuleFlags()
5019 if (auto *Behavior = in UpgradeModuleFlags() local
5021 if (Behavior->getLimitedValue() == Module::Error) { in UpgradeModuleFlags()
/freebsd-14.2/tools/build/options/
H A DWITH_UBSAN1 Build the base system with Undefined Behavior Sanitizer (UBSan) to detect
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DGOFF.h229 GOFF::ESDLoadingBehavior &Behavior) { in getLoadingBehavior() argument
232 Behavior = (GOFF::ESDLoadingBehavior)Value; in getLoadingBehavior()
/freebsd-14.2/sys/arm64/conf/
H A Dstd.arm6479 #options KUBSAN # Kernel Undefined Behavior Sanitizer
/freebsd-14.2/sys/amd64/conf/
H A DNOTES163 #options KUBSAN # Kernel Undefined Behavior Sanitizer
H A DGENERIC100 #options KUBSAN # Kernel Undefined Behavior Sanitizer
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc2497 enum Behavior { kInitialSuccess, kAlwaysFail, kFlaky }; enum in testing::gmock_matchers_test::__anon8ac8d7730111::PredicateFormatterFromMatcherTest
2502 class MockMatcher : public MatcherInterface<Behavior> {
2504 bool MatchAndExplain(Behavior behavior, in MatchAndExplain()
2536 AssertionResult RunPredicateFormatter(Behavior behavior) { in RunPredicateFormatter()
2538 PredicateFormatterFromMatcher<Matcher<Behavior>> predicate_formatter( in RunPredicateFormatter()
2557 OfType(internal::GetTypeName<Behavior>()) + ", [MatchAndExplain]"; in TEST_F()
2569 OfType(internal::GetTypeName<Behavior>()) + ", [MatchAndExplain]"; in TEST_F()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseInit.cpp564 switch (Result.Behavior) { in ParseMicrosoftIfExistsBraceInitializer()
H A DParser.cpp2370 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2374 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2378 Result.Behavior = IEB_Dependent; in ParseMicrosoftIfExistsCondition()
2399 switch (Result.Behavior) { in ParseMicrosoftIfExistsExternalDeclaration()
H A DParseStmt.cpp2758 if (Result.Behavior == IEB_Dependent) { in ParseMicrosoftIfExistsStatement()
2784 switch (Result.Behavior) { in ParseMicrosoftIfExistsStatement()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLICM.cpp1217 MemoryEffects Behavior = AA->getMemoryEffects(CI); in canSinkOrHoistInst() local
1224 if (Behavior.onlyReadsMemory() && CI->getFunction()->isPresplitCoroutine()) in canSinkOrHoistInst()
1227 if (Behavior.doesNotAccessMemory()) in canSinkOrHoistInst()
1229 if (Behavior.onlyReadsMemory()) { in canSinkOrHoistInst()
1233 if (Behavior.onlyAccessesArgPointees()) { in canSinkOrHoistInst()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp1275 uint64_t Behavior = in linkModuleFlagsMetadata() local
1279 if (Behavior == Module::Require) { in linkModuleFlagsMetadata()
1282 if (Behavior == Module::Min) in linkModuleFlagsMetadata()
/freebsd-14.2/contrib/unbound/
H A DREADME-Travis.md32 …g and GCC, for a total of four builds. The first sanitizer is Undefined Behavior sanitizer (UBsan)…
/freebsd-14.2/share/i18n/csmapper/APPLE/
H A DUCS%ARABIC.src152 # 3. Behavior of ASCII-range numbers in WorldScript
H A DUCS%FARSI.src132 # 3. Behavior of ASCII-range numbers in WorldScript
H A DFARSI%UCS.src132 # 3. Behavior of ASCII-range numbers in WorldScript
H A DARABIC%UCS.src152 # 3. Behavior of ASCII-range numbers in WorldScript
/freebsd-14.2/contrib/ldns/
H A DREADME-Travis.md32 …g and GCC, for a total of four builds. The first sanitizer is Undefined Behavior sanitizer (UBsan)…
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def331 BENIGN_ENUM_LANGOPT(FPExceptionMode, FPExceptionModeKind, 2, FPE_Default, "FP Exception Behavior Mo…
/freebsd-14.2/contrib/byacc/
H A DREADME.BTYACC88 text position stack. Behavior of the text position stack

12