| /openbsd-src/gnu/llvm/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() 513 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val); 514 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val); 515 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val); 518 void setModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Module.cpp | 278 if (ConstantInt *Behavior = mdconst::dyn_extract_or_null<ConstantInt>(MD)) { in isValidModFlagBehavior() local 279 uint64_t Val = Behavior->getLimitedValue(); in isValidModFlagBehavior() 349 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument 353 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Behavior)), in addModuleFlag() 357 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument 359 addModuleFlag(Behavior, Key, ConstantAsMetadata::get(Val)); in addModuleFlag() 361 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag() argument 364 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val)); in addModuleFlag() 375 void Module::setModuleFlag(ModFlagBehavior Behavior, StringRef Key, in setModuleFlag() argument 389 addModuleFlag(Behavior, Key, Val); in setModuleFlag()
|
| H A D | VectorBuilder.cpp | 25 if (ErrorHandling == Behavior::SilentlyReturnNone) in handleError()
|
| H A D | Core.cpp | 312 LLVMModuleFlagBehavior Behavior; member 319 map_to_llvmModFlagBehavior(LLVMModuleFlagBehavior Behavior) { in map_to_llvmModFlagBehavior() argument 320 switch (Behavior) { in map_to_llvmModFlagBehavior() 338 map_from_llvmModFlagBehavior(Module::ModFlagBehavior Behavior) { in map_from_llvmModFlagBehavior() argument 339 switch (Behavior) { in map_from_llvmModFlagBehavior() 365 Result[i].Behavior = map_from_llvmModFlagBehavior(ModuleFlag.Behavior); in LLVMCopyModuleFlagsMetadata() 383 return MFE.Behavior; in LLVMModuleFlagEntriesGetFlagBehavior() 406 void LLVMAddModuleFlag(LLVMModuleRef M, LLVMModuleFlagBehavior Behavior, in LLVMAddModuleFlag() argument 409 unwrap(M)->addModuleFlag(map_to_llvmModFlagBehavior(Behavior), in LLVMAddModuleFlag()
|
| H A D | AutoUpgrade.cpp | 4692 if (auto *Behavior = in UpgradeModuleFlags() local 4694 uint64_t V = Behavior->getLimitedValue(); in UpgradeModuleFlags() 4701 if (auto *Behavior = in UpgradeModuleFlags() local 4703 if (Behavior->getLimitedValue() == Module::Error) in UpgradeModuleFlags() 4710 if (auto *Behavior = in UpgradeModuleFlags() local 4712 if (Behavior->getLimitedValue() == Module::Error) { in UpgradeModuleFlags()
|
| /openbsd-src/gnu/llvm/libcxx/docs/DesignDocs/ |
| H A D | VisibilityMacros.rst | 38 **Windows Behavior**: Any symbol marked `dllimport` cannot be overridden 76 **GCC Behavior**: GCC does not support Clang's `type_visibility(...)` 80 **Windows Behavior**: DLLs do not support dllimport/export on class templates. 88 **Windows Behavior**: DLLs do not support importing or exporting enumeration 91 **GCC Behavior**: GCC un-hides the typeinfo for enumerations by default, even 105 **Windows Behavior**: `extern template` and `dllexport` are fundamentally
|
| H A D | AtomicDesign.rst | 40 // Behavior is defined for mem_ord = 0, 1, 2, 5 44 // Behavior is defined for mem_ord = 0, 3, 5 48 // Behavior is defined for mem_ord = [0 ... 5] 52 // Behavior is defined for mem_success = [0 ... 5], 61 // Behavior is defined for mem_success = [0 ... 5], 72 // Behavior is defined for mem_ord = [0 ... 5] 78 // Behavior is defined for mem_ord = [0 ... 5] 84 // Behavior is defined for mem_ord = [0 ... 5] 90 // Behavior is defined for mem_ord = [0 ... 5] 96 // Behavior is defined for mem_ord = [0 ... 5] [all …]
|
| H A D | UnspecifiedBehaviorRandomization.rst | 2 Unspecified Behavior Randomization
|
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseInit.cpp | 559 switch (Result.Behavior) { in ParseMicrosoftIfExistsBraceInitializer()
|
| H A D | Parser.cpp | 2321 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition() 2325 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition() 2329 Result.Behavior = IEB_Dependent; in ParseMicrosoftIfExistsCondition() 2350 switch (Result.Behavior) { in ParseMicrosoftIfExistsExternalDeclaration()
|
| H A D | ParseStmt.cpp | 2694 if (Result.Behavior == IEB_Dependent) { in ParseMicrosoftIfExistsStatement() 2720 switch (Result.Behavior) { in ParseMicrosoftIfExistsStatement()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | LICM.cpp | 1218 MemoryEffects Behavior = AA->getMemoryEffects(CI); in canSinkOrHoistInst() local 1219 if (Behavior.doesNotAccessMemory()) in canSinkOrHoistInst() 1221 if (Behavior.onlyReadsMemory()) { in canSinkOrHoistInst() 1225 if (Behavior.onlyAccessesArgPointees()) { in canSinkOrHoistInst()
|
| /openbsd-src/gnu/llvm/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 1296 uint64_t Behavior = in linkModuleFlagsMetadata() local 1300 if (Behavior == Module::Require) { in linkModuleFlagsMetadata() 1303 if (Behavior == Module::Min) in linkModuleFlagsMetadata()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | UndefinedBehaviorSanitizer.rst | 367 `What Every C Programmer Should Know About Undefined Behavior 370 `A Guide to Undefined Behavior in C and C++
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | TypeMetadata.rst | 267 - Behavior
|
| /openbsd-src/gnu/usr.bin/perl/dist/Data-Dumper/ |
| H A D | Changes | 101 - Behavior change: $dumper->Useqq(undef) is now treated as setting the
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | Cxx20Issues.csv | 99 "`2697 <https://wg21.link/LWG2697>`__","[concurr.ts] Behavior of ``future/shared_future``\ unwrapp… 240 "`3315 <https://wg21.link/LWG3315>`__","Correct Allocator Default Behavior","Prague","",""
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlfork.pod | 44 =head2 Behavior of other Perl features in forked pseudo-processes
|
| /openbsd-src/usr.sbin/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)…
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | LangOptions.def | 318 BENIGN_ENUM_LANGOPT(FPExceptionMode, FPExceptionModeKind, 2, FPE_Default, "FP Exception Behavior Mo…
|
| /openbsd-src/gnu/lib/libreadline/doc/ |
| H A D | rltech.texinfo | 43 * Basic Behavior:: Using the default behavior of Readline. 55 @node Basic Behavior 56 @section Basic Behavior
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/etc/ |
| H A D | standards.texi | 77 * Program Behavior:: Program Behavior for All Programs 510 @node Program Behavior 511 @chapter Program Behavior for All Programs 641 @section Library Behavior
|
| /openbsd-src/gnu/usr.bin/binutils/etc/ |
| H A D | standards.texi | 77 * Program Behavior:: Program Behavior for All Programs 510 @node Program Behavior 511 @chapter Program Behavior for All Programs 641 @section Library Behavior
|
| /openbsd-src/gnu/llvm/llvm/include/llvm-c/ |
| H A D | Core.h | 848 void LLVMAddModuleFlag(LLVMModuleRef M, LLVMModuleFlagBehavior Behavior,
|