| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | VectorBuilder.h | 27 enum class Behavior { enum 40 Behavior ErrorHandling; 62 Behavior ErrorHandling = Behavior::ReportAndAbort)
|
| H A D | Module.h | 167 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 D | Module.cpp | 266 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 D | VectorBuilder.cpp | 25 if (ErrorHandling == Behavior::SilentlyReturnNone) in handleError()
|
| H A D | Core.cpp | 306 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 D | AutoUpgrade.cpp | 5001 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 D | WITH_UBSAN | 1 Build the base system with Undefined Behavior Sanitizer (UBSan) to detect
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | GOFF.h | 229 GOFF::ESDLoadingBehavior &Behavior) { in getLoadingBehavior() argument 232 Behavior = (GOFF::ESDLoadingBehavior)Value; in getLoadingBehavior()
|
| /freebsd-14.2/sys/arm64/conf/ |
| H A D | std.arm64 | 79 #options KUBSAN # Kernel Undefined Behavior Sanitizer
|
| /freebsd-14.2/sys/amd64/conf/ |
| H A D | NOTES | 163 #options KUBSAN # Kernel Undefined Behavior Sanitizer
|
| H A D | GENERIC | 100 #options KUBSAN # Kernel Undefined Behavior Sanitizer
|
| /freebsd-14.2/contrib/googletest/googlemock/test/ |
| H A D | gmock-matchers-containers_test.cc | 2497 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 D | ParseInit.cpp | 564 switch (Result.Behavior) { in ParseMicrosoftIfExistsBraceInitializer()
|
| H A D | Parser.cpp | 2370 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 D | ParseStmt.cpp | 2758 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 D | LICM.cpp | 1217 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 D | IRMover.cpp | 1275 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 D | README-Travis.md | 32 …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 D | UCS%ARABIC.src | 152 # 3. Behavior of ASCII-range numbers in WorldScript
|
| H A D | UCS%FARSI.src | 132 # 3. Behavior of ASCII-range numbers in WorldScript
|
| H A D | FARSI%UCS.src | 132 # 3. Behavior of ASCII-range numbers in WorldScript
|
| H A D | ARABIC%UCS.src | 152 # 3. Behavior of ASCII-range numbers in WorldScript
|
| /freebsd-14.2/contrib/ldns/ |
| H A D | README-Travis.md | 32 …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 D | LangOptions.def | 331 BENIGN_ENUM_LANGOPT(FPExceptionMode, FPExceptionModeKind, 2, FPE_Default, "FP Exception Behavior Mo…
|
| /freebsd-14.2/contrib/byacc/ |
| H A D | README.BTYACC | 88 text position stack. Behavior of the text position stack
|