/freebsd/lib/msun/man/ |
H A D | feenableexcept.3 | 50 unmask and mask (respectively) exceptions specified in 56 All exceptions are masked by default. 58 Floating-point operations that produce unmasked exceptions will trap, and a 68 For all of these functions, the possible types of exceptions 71 Some architectures may define other types of floating-point exceptions. 78 functions return a bitmap of the exceptions that were unmasked 87 Functions in the standard library may trigger exceptions multiple 89 however, they generally do not trigger spurious exceptions. 91 No interface is provided to permit exceptions to be handled in
|
H A D | fenv.3 | 83 .Ss Exceptions 89 representing the five standard floating-point exceptions. 102 Invalid operation exceptions occur when a program attempts to 137 Exceptions may be 143 Unmasked exceptions cause a trap when they are produced, and 144 all exceptions are masked by default. 202 but it also re-raises any floating-point exceptions from the old 212 It also defers inexact exceptions while it computes intermediate
|
H A D | feclearexcept.3 | 57 raises the specified exceptions. 85 For all of these functions, the possible types of exceptions 88 Some architectures may define other types of floating-point exceptions. 103 The latter do not re-raise exceptions and may preserve 105 exceptions occurred.
|
H A D | ieee.3 | 123 Exceptions: 125 IEEE 754 recognizes five kinds of floating-point exceptions, 138 What makes a class of exceptions exceptional 273 .Ss Additional Information Regarding Exceptions 280 may cope with exceptions for which the default result 318 other ways to cope with exceptions may be provided: 355 the first several exceptions turn out to be quite 377 exceptions listed above, although the definition
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-catch-exceptions-test.py | 33 This script invokes googletest-catch-exceptions-test_ and 34 googletest-catch-exceptions-ex-test_ (programs written with 46 # Path to the googletest-catch-exceptions-ex-test_ binary, compiled with 47 # exceptions enabled. 49 'googletest-catch-exceptions-ex-test_' 52 # Path to the googletest-catch-exceptions-test_ binary, compiled with 53 # exceptions disabled. 55 'googletest-catch-exceptions-no-ex-test_' 131 * C++ exceptions are caught and logged as C++ (not SEH) exceptions 298 # Filters out SEH exception tests on Windows. Unhandled SEH exceptions [all …]
|
H A D | googletest-death-test_ex_test.cc | 31 // Tests that verify interaction of exceptions and death tests. 48 // Tests that death tests report thrown exceptions as failures and that the 49 // exceptions do not escape death test macros. 75 // Tests that enabling interception of SEH exceptions with the 76 // catch_exceptions flag does not interfere with SEH exceptions being
|
H A D | BUILD.bazel | 59 "googletest-catch-exceptions-test_.cc", 382 name = "googletest-catch-exceptions-no-ex-test_", 384 srcs = ["googletest-catch-exceptions-test_.cc"], 389 name = "googletest-catch-exceptions-ex-test_", 391 srcs = ["googletest-catch-exceptions-test_.cc"], 397 name = "googletest-catch-exceptions-test", 399 srcs = ["googletest-catch-exceptions-test.py"], 401 ":googletest-catch-exceptions-ex-test_", 402 ":googletest-catch-exceptions-no-ex-test_", 549 # Verifies interaction of death tests and exceptions.
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | exception_guard.h | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 37 // __exception_guard is a no-op in -fno-exceptions mode to produce better code-gen. This means 39 // code with exceptions disabled, so even if we wanted to provide the strong exception guarantees 41 // -fexceptions > -fno-exceptions > -fexceptions code, since the exception can't be caught where 42 // exceptions are disabled. While -fexceptions > -fno-exceptions is quite common 43 // (e.g. libc++.dylib > -fno-exceptions), having another layer with exceptions enabled seems a lot 44 // less common, especially one that tries to catch an exception through -fno-exceptions code. 118 … _LIBCPP_ASSERT_INTERNAL(__completed_, "__exception_guard not completed with exceptions disabled"); in ~__exception_guard_noexceptions()
|
/freebsd/usr.bin/kyua/ |
H A D | Makefile | 64 utils/cmdline/exceptions.cpp \ 70 utils/config/exceptions.cpp \ 76 utils/format/exceptions.cpp \ 80 utils/fs/exceptions.cpp \ 87 utils/process/exceptions.cpp \ 95 utils/signals/exceptions.cpp \ 102 utils/sqlite/exceptions.cpp \ 105 utils/text/exceptions.cpp \ 112 model/exceptions.cpp \ 122 engine/exceptions.cpp \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | stdexcept | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 218 …_LIBCPP_VERBOSE_ABORT("logic_error was thrown in -fno-exceptions mode with message \"%s\"", __msg); 226 …_LIBCPP_VERBOSE_ABORT("domain_error was thrown in -fno-exceptions mode with message \"%s\"", __msg… 234 …_LIBCPP_VERBOSE_ABORT("invalid_argument was thrown in -fno-exceptions mode with message \"%s\"", _… 242 …_LIBCPP_VERBOSE_ABORT("length_error was thrown in -fno-exceptions mode with message \"%s\"", __msg… 250 …_LIBCPP_VERBOSE_ABORT("out_of_range was thrown in -fno-exceptions mode with message \"%s\"", __msg… 258 …_LIBCPP_VERBOSE_ABORT("range_error was thrown in -fno-exceptions mode with message \"%s\"", __msg); 266 …_LIBCPP_VERBOSE_ABORT("overflow_error was thrown in -fno-exceptions mode with message \"%s\"", __m… 274 …_LIBCPP_VERBOSE_ABORT("underflow_error was thrown in -fno-exceptions mode with message \"%s\"", __…
|
H A D | istream | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 366 if (__is.exceptions() & ios_base::badbit) { 457 if (__is.exceptions() & ios_base::badbit) { 508 if (__is.exceptions() & ios_base::badbit) { 583 if (__is.exceptions() & ios_base::badbit) { 636 if (this->exceptions() & ios_base::failbit || this->exceptions() & ios_base::badbit) { 667 if (this->exceptions() & ios_base::badbit) { 706 if (this->exceptions() & ios_base::badbit) { 753 // according to the spec, exceptions here are caught but not rethrown 797 if (this->exceptions() & ios_base::badbit) { [all …]
|
H A D | ios | 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 132 iostate exceptions() const; 133 void exceptions(iostate except); 346 _LIBCPP_HIDE_FROM_ABI iostate exceptions() const; 347 _LIBCPP_HIDE_FROM_ABI void exceptions(iostate __iostate); 446 …_LIBCPP_VERBOSE_ABORT("ios_base::failure was thrown in -fno-exceptions mode with message \"%s\"", … 515 inline _LIBCPP_HIDE_FROM_ABI ios_base::iostate ios_base::exceptions() const { return __exceptions_;… 517 inline _LIBCPP_HIDE_FROM_ABI void ios_base::exceptions(iostate __iostate) { 585 _LIBCPP_HIDE_FROM_ABI iostate exceptions() const { return ios_base::exceptions(); } 586 _LIBCPP_HIDE_FROM_ABI void exceptions(iostate __iostate) { ios_base::exceptions(__iostate); } [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | WebAssembly.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 332 // '-fwasm-exceptions' is not compatible with '-mno-exception-handling' in addClangTargetOptions() 336 << "-fwasm-exceptions" in addClangTargetOptions() 338 // '-fwasm-exceptions' is not compatible with in addClangTargetOptions() 339 // '-mllvm -enable-emscripten-cxx-exceptions' in addClangTargetOptions() 341 if (StringRef(A->getValue(0)) == "-enable-emscripten-cxx-exceptions") in addClangTargetOptions() 343 << "-fwasm-exceptions" in addClangTargetOptions() 344 << "-mllvm -enable-emscripten-cxx-exceptions"; in addClangTargetOptions() 346 // '-fwasm-exceptions' implies exception-handling feature in addClangTargetOptions() 358 << "-fwasm-exceptions" << "-mno-multivalue"; in addClangTargetOptions() [all …]
|
H A D | Fuchsia.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 276 // Use the noexcept variant with -fno-exceptions to avoid the extra overhead. in Fuchsia() 279 .flag("-fno-exceptions") in Fuchsia() 285 // Use the asan+noexcept variant with ASan and -fno-exceptions. in Fuchsia() 289 .flag("-fno-exceptions") in Fuchsia() 296 // Use the hwasan+noexcept variant with HWASan and -fno-exceptions. in Fuchsia() 300 .flag("-fno-exceptions") in Fuchsia() 313 bool Exceptions = in Fuchsia() local 315 addMultilibFlag(Exceptions, "-fexceptions", Flags); in Fuchsia() 316 addMultilibFlag(!Exceptions, "-fno-exceptions", Flags); in Fuchsia()
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | atanhf.c | 56 exceptions. These will be fixed up later. */ in V_NAME_F1() 67 /* If exceptions not required, pass ax to special-case for shorter dependency in V_NAME_F1() 68 chain. If exceptions are required ax will have been zerofied, so have to in V_NAME_F1() 88 -c 0 specially to ensure fp exceptions are triggered correctly (choice of 89 control lane is irrelevant if fp exceptions are disabled). */
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyExceptionInfo.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 83 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions; in recalculate() local 90 Exceptions.push_back(std::move(WE)); in recalculate() 109 // We group exceptions in this analysis simply by including all BBs dominated in recalculate() 121 // exceptions A, B, and C and A > B > C (> is subexception relationship here), in recalculate() 165 // easier, because we haven't added BBs to exceptions yet, we only need to in recalculate() 194 // Add BBs to exceptions' block set. This is a preparation to take out in recalculate() 195 // remaining incorect BBs from exceptions, because we need to iterate over BBs in recalculate() 205 // exceptions' BlockSet, when we take a BB out of an exception, we need to fix in recalculate() 243 // Add BBs to exceptions' block vector in recalculate() [all …]
|
/freebsd/contrib/sendmail/libsm/ |
H A D | exc.html | 224 in the presence of exceptions. 251 Unhandled exceptions terminate the program. 253 that traps all exceptions, and prints the exceptions: 260 /* catch all exceptions */ 265 Exceptions are reference counted. The SM_END_TRY macro contains a 273 which specifies the types of exceptions that are to be handled. 275 differently from other exceptions. 309 The values may be a mixture of ints, longs, strings, and exceptions. 333 one of a number of broad categories of exceptions on which an 427 <h2> Standard Exceptions and Exception Types </h2> [all …]
|
/freebsd/contrib/wpa/src/utils/ |
H A D | eloop.c | 103 struct eloop_sock_table exceptions; member 186 eloop.exceptions.type = EVENT_TYPE_EXCEPTION; in eloop_init() 209 * Exceptions are always checked when using epoll, but I suppose it's in eloop_sock_queue() 445 struct eloop_sock_table *exceptions, in eloop_sock_table_set_fds() argument 492 * Exceptions are always checked when using poll, but I suppose it's in eloop_sock_table_set_fds() 496 if (exceptions && exceptions->table) { in eloop_sock_table_set_fds() 497 for (i = 0; i < exceptions->count; i++) { in eloop_sock_table_set_fds() 502 fd = exceptions->table[i].sock; in eloop_sock_table_set_fds() 554 struct eloop_sock_table *exceptions, in eloop_sock_table_dispatch() argument 567 eloop_sock_table_dispatch_table(exceptions, pollfds_map, in eloop_sock_table_dispatch() [all …]
|
/freebsd/lib/msun/tests/ |
H A D | exponential_test.c | 48 * exceptions we should check. We need to be lenient for several 94 /* exp(0) == 1, no exceptions raised */ in run_generic_tests() 100 /* exp(NaN) == NaN, no exceptions raised */ in run_generic_tests() 104 /* exp(Inf) == Inf, no exceptions raised */ in run_generic_tests() 108 /* exp(-Inf) == 0, no exceptions raised */ in run_generic_tests() 117 /* exp(small) == 0, underflow and inexact exceptions */ in run_generic_tests()
|
/freebsd/lib/libpmc/pmu-events/arch/x86/amdzen1/ |
H A D | core.json | 11 …r of uOps retired. This includes all processor activity (instructions, exceptions, interrupts, mic… 17 …his includes all types of architectural control flow changes, including exceptions and interrupts." 23 …es those for which prediction is not attempted (far control transfers, exceptions and interrupts)." 29 …his includes all types of architectural control flow changes, including exceptions and interrupts." 41 …retired including far call/jump/return, IRET, SYSCALL and SYSRET, plus exceptions and interrupts. …
|
/freebsd/lib/libpmc/pmu-events/arch/x86/amdzen2/ |
H A D | core.json | 11 …ops retired. This count includes all processor activity (instructions, exceptions, interrupts, mic… 17 …his includes all types of architectural control flow changes, including exceptions and interrupts." 23 …es those for which prediction is not attempted (far control transfers, exceptions and interrupts)." 29 …his includes all types of architectural control flow changes, including exceptions and interrupts." 41 …retired including far call/jump/return, IRET, SYSCALL and SYSRET, plus exceptions and interrupts. …
|
/freebsd/contrib/kyua/cli/ |
H A D | main.cpp | 62 #include "store/exceptions.hpp" 64 #include "utils/cmdline/exceptions.hpp" 78 #include "utils/signals/exceptions.hpp" 130 /// exceptions are bugs, but we let them propagate so that the runtime will 150 /// is allowed to throw some known exceptions which are parsed by the caller. 156 /// errors reported through exceptions. 167 /// exceptions are bugs, but we let them propagate so that the runtime will 273 /// exceptions are bugs, but we let them propagate so that the runtime will 283 // exceptions below. in main() 336 /// exceptions are bugs, but we let them propagate so that the runtime will
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | EHPersonalities.h | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 49 /// exceptions. 51 // The two SEH personality functions can catch asynch exceptions. We assume in isAsynchronousEHPersonality() 52 // unknown personalities don't catch asynch exceptions. in isAsynchronousEHPersonality()
|
/freebsd/contrib/googletest/googletest/ |
H A D | CMakeLists.txt | 232 # MSVC 7.1 does not support STL with exceptions disabled. 270 # Visual Studio .NET 2003 does not support STL with exceptions disabled. 273 googletest-catch-exceptions-no-ex-test_ 276 test/googletest-catch-exceptions-test_.cc) 280 googletest-catch-exceptions-ex-test_ 283 test/googletest-catch-exceptions-test_.cc) 284 py_test(googletest-catch-exceptions-test) 307 # MSVC 7.1 does not support STL with exceptions disabled.
|
/freebsd/lib/libsys/ |
H A D | rctl_add_rule.2 | 83 with exceptions noted in the 105 with exceptions noted in the 123 with exceptions noted in the 137 with exceptions noted in the
|