Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp324 if (ConstantInt *Behavior = mdconst::dyn_extract_or_null<ConstantInt>(MD)) { in isValidModFlagBehavior() local
325 uint64_t Val = Behavior->getLimitedValue(); in isValidModFlagBehavior()
375 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument
379 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Behavior)), in addModuleFlag()
383 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument
385 addModuleFlag(Behavior, Key, ConstantAsMetadata::get(Val)); in addModuleFlag()
387 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument
390 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val)); in addModuleFlag()
401 void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key, in setModuleFlag() argument
411 addModuleFlag(Behavior, Key, Val); in setModuleFlag()
[all …]
H A DCore.cpp333 LLVMModuleFlagBehavior Behavior; member
340 map_to_llvmModFlagBehavior(LLVMModuleFlagBehavior Behavior) { in map_to_llvmModFlagBehavior() argument
341 switch (Behavior) { in map_to_llvmModFlagBehavior()
359 map_from_llvmModFlagBehavior(Module::ModFlagBehavior Behavior) { in map_from_llvmModFlagBehavior() argument
360 switch (Behavior) { in map_from_llvmModFlagBehavior()
386 Result[i].Behavior = map_from_llvmModFlagBehavior(ModuleFlag.Behavior); in LLVMCopyModuleFlagsMetadata()
404 return MFE.Behavior; in LLVMModuleFlagEntriesGetFlagBehavior()
427 void LLVMAddModuleFlag(LLVMModuleRef M, LLVMModuleFlagBehavior Behavior, in LLVMAddModuleFlag() argument
430 unwrap(M)->addModuleFlag(map_to_llvmModFlagBehavior(Behavior), in LLVMAddModuleFlag()
H A DAutoUpgrade.cpp5562 if (auto *Behavior = in UpgradeModuleFlags() local
5564 uint64_t V = Behavior->getLimitedValue(); in UpgradeModuleFlags()
5571 if (auto *Behavior = in UpgradeModuleFlags() local
5573 if (Behavior->getLimitedValue() == Module::Error) in UpgradeModuleFlags()
5580 if (auto *Behavior = in UpgradeModuleFlags() local
5582 if (Behavior->getLimitedValue() == Module::Error) { in UpgradeModuleFlags()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h164 ModFlagBehavior Behavior; member
169 : Behavior(B), Key(K), Val(V) {} in ModuleFlagEntry()
528 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
529 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val);
530 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
533 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
534 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val);
535 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILPrepare.cpp130 if (Flag.Behavior <= Module::ModFlagBehavior::AppendUnique) in cleanModuleFlags()
132 Flag.Behavior = Module::ModFlagBehavior::Warning; in cleanModuleFlags()
142 M.addModuleFlag(Flag.Behavior, Flag.Key->getString(), Flag.Val); in cleanModuleFlags()
/freebsd/tools/build/options/
H A DWITH_UBSAN1 Build the base system with Undefined Behavior Sanitizer (UBSan) to detect
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DGOFF.h249 GOFF::ESDLoadingBehavior &Behavior) { in getLoadingBehavior() argument
252 Behavior = (GOFF::ESDLoadingBehavior)Value; in getLoadingBehavior()
/freebsd/sys/arm64/conf/
H A Dstd.arm6483 #options KUBSAN # Kernel Undefined Behavior Sanitizer
/freebsd/sys/amd64/conf/
H A DNOTES179 #options KUBSAN # Kernel Undefined Behavior Sanitizer
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-containers_test.cc2806 enum Behavior { kInitialSuccess, kAlwaysFail, kFlaky }; enum in testing::gmock_matchers_test::__anon540e1b3d0111::PredicateFormatterFromMatcherTest
2811 class MockMatcher : public MatcherInterface<Behavior> {
2813 bool MatchAndExplain(Behavior behavior, in MatchAndExplain()
2845 AssertionResult RunPredicateFormatter(Behavior behavior) { in RunPredicateFormatter()
2847 PredicateFormatterFromMatcher<Matcher<Behavior>> predicate_formatter( in RunPredicateFormatter()
2866 OfType(internal::GetTypeName<Behavior>()) + ", [MatchAndExplain]"; in TEST_F()
2878 OfType(internal::GetTypeName<Behavior>()) + ", [MatchAndExplain]"; in TEST_F()
/freebsd/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp1169 uint64_t Behavior = in linkModuleFlagsMetadata() local
1173 if (Behavior == Module::Require) { in linkModuleFlagsMetadata()
1176 if (Behavior == Module::Min) in linkModuleFlagsMetadata()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseInit.cpp532 switch (Result.Behavior) { in ParseMicrosoftIfExistsBraceInitializer()
H A DParser.cpp2285 Result.Behavior = in ParseMicrosoftIfExistsCondition()
2290 Result.Behavior = in ParseMicrosoftIfExistsCondition()
2295 Result.Behavior = IfExistsBehavior::Dependent; in ParseMicrosoftIfExistsCondition()
2316 switch (Result.Behavior) { in ParseMicrosoftIfExistsExternalDeclaration()
H A DParseStmt.cpp2599 if (Result.Behavior == IfExistsBehavior::Dependent) { in ParseMicrosoftIfExistsStatement()
2625 switch (Result.Behavior) { in ParseMicrosoftIfExistsStatement()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLICM.cpp1228 MemoryEffects Behavior = AA->getMemoryEffects(CI); in canSinkOrHoistInst() local
1230 if (Behavior.doesNotAccessMemory()) in canSinkOrHoistInst()
1232 if (Behavior.onlyReadsMemory()) { in canSinkOrHoistInst()
1240 if (Behavior.onlyWritesMemory()) { in canSinkOrHoistInst()
/freebsd/crypto/openssl/
H A DNOTES-WINDOWS.md137 |`OSSL_WINCTX`|Registry key|OpenSSL Behavior |
/freebsd/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/share/i18n/csmapper/APPLE/
H A DFARSI%UCS.src132 # 3. Behavior of ASCII-range numbers in WorldScript
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 DARABIC%UCS.src152 # 3. Behavior of ASCII-range numbers in WorldScript
/freebsd/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/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def311 ENUM_LANGOPT(FPExceptionMode, FPExceptionModeKind, 2, FPE_Default, Benign, "FP Exception Behavior M…
/freebsd/contrib/byacc/
H A DREADME.BTYACC88 text position stack. Behavior of the text position stack
/freebsd/contrib/pam-krb5/docs/
H A Dpam_krb5.pod348 =head2 Kerberos Behavior
481 =head2 PAM Behavior

12