/netbsd-src/external/mit/isl/dist/include/isl/ |
H A D | cpp.h | 82 class exception : public std::exception { 86 inline exception(const char *what_arg, const char *msg, 89 exception() {} in exception() function 90 exception(const char *what_arg) { in exception() function 121 exception::exception(const char *what_arg, const char *msg, const char *file, in exception() function 131 class exception_abort : public exception { 132 friend exception; variable 134 exception("execution aborted", msg, file, line) {} in exception_abort() 137 class exception_alloc : public exception { 138 friend exception; variable [all …]
|
/netbsd-src/external/mit/isl/dist/cpp/ |
H A D | cpp.h.top | 82 class exception : public std::exception { 86 inline exception(const char *what_arg, const char *msg, 89 exception() {} 90 exception(const char *what_arg) { 103 * will be included in the exception thrown from inside the bindings. 106 /* Wrapper for throwing an exception with the given message. 114 /* Create an exception of a type described by "what_arg", with 121 exception::exception(const char *what_arg, const char *msg, const char *file, 131 class exception_abort : public exception { 132 friend exception; [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
H A D | exception.h | 60 class exception 63 exception() _GLIBCXX_NOTHROW { } in exception() function 64 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW; 66 exception(const exception&) = default; 67 exception& operator=(const exception&) = default; 68 exception(exception&&) = default; 69 exception& operator=(exception&&) = default;
|
H A D | eh_exception.cc | 29 std::exception::~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT { } in ~exception() 40 std::exception::what() const _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT in what() 60 _ZGTtNKSt9exceptionD1Ev(const std::exception*) in _ZGTtNKSt9exceptionD1Ev() argument 64 _ZGTtNKSt9exception4whatEv(const std::exception* that) in _ZGTtNKSt9exception4whatEv() 70 return that->std::exception::what(); in _ZGTtNKSt9exception4whatEv()
|
H A D | exception | 26 /** @file exception 38 #include <bits/exception.h> 48 /** If an %exception is thrown which is not listed in a function's 49 * %exception specification, one of these may be thrown. */ 50 class bad_exception : public exception 78 /** The runtime will call this function if %exception handling must be 90 /** The runtime will call this function if an %exception is thrown which 91 * violates the function's %exception specification. */ 96 * exception-declaration in the matching handler or entering @c unexpected() 102 * %exception can result in a call of @c terminate() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
H A D | exception.h | 61 class exception 64 exception() _GLIBCXX_NOTHROW { } in exception() function 65 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW; 67 exception(const exception&) = default; 68 exception& operator=(const exception&) = default; 69 exception(exception&&) = default; 70 exception& operator=(exception&&) = default;
|
H A D | eh_exception.cc | 29 std::exception::~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT { } in ~exception() 40 std::exception::what() const _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT in what() 60 _ZGTtNKSt9exceptionD1Ev(const std::exception*) in _ZGTtNKSt9exceptionD1Ev() argument 64 _ZGTtNKSt9exception4whatEv(const std::exception* that) in _ZGTtNKSt9exception4whatEv() 70 return that->std::exception::what(); in _ZGTtNKSt9exception4whatEv()
|
H A D | exception | 26 /** @file exception 38 #include <bits/exception.h> 48 /** If an %exception is thrown which is not listed in a function's 49 * %exception specification, one of these may be thrown. 53 class bad_exception : public exception 78 /** The runtime will call this function if %exception handling must be 103 /** The runtime will call this function if an %exception is thrown which 104 * violates the function's %exception specification. 114 * exception-declaration in the matching handler or entering `unexpected()` 120 * %exception can result in a call of 1terminate()` [all …]
|
/netbsd-src/external/bsd/libc++/dist/libcxxrt/src/ |
H A D | stdexcept.cc | 34 exception::exception() throw() {} in exception() function in std::exception 35 exception::~exception() {} in ~exception() 36 exception::exception(const exception&) throw() {} in exception() function in std::exception 37 exception& exception::operator=(const exception&) throw() in operator =() argument 41 const char* exception::what() const throw() in what()
|
H A D | stdexcept.h | 35 class exception 38 exception() throw(); 39 exception(const exception&) throw(); 40 exception& operator=(const exception&) throw(); 41 virtual ~exception(); 49 class bad_alloc: public exception 62 class bad_cast: public exception { 74 class bad_typeid: public exception
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | ExceptionHandling.rst | 12 exception handling in LLVM. It describes the format that LLVM exception 15 provides specific examples of what exception handling information is used for in 23 exception handling should not interfere with the main flow of an application's 28 providing outlying data in the form of exception tables without inlining 29 speculative exception handling code in the flow of an application's main 33 A more complete description of the Itanium ABI exception handling runtime 36 exception frame format can be found at `Exception Frames 39 <http://dwarfstd.org/Dwarf4Std.php>`_. A description for the C++ exception 46 Setjmp/Longjmp (SJLJ) based exception handling uses LLVM intrinsics 48 exception handling. [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/ |
H A D | typeinfo.d | 18 import core.stdcpp.exception; in version() 42 class bad_cast : exception in version() 52 class bad_typeid : exception in version() 64 import core.stdcpp.exception; in version() 91 class bad_cast : exception in version() 98 class bad_typeid : exception in version() 107 import core.stdcpp.exception; in version() 143 class bad_cast : exception in version() 151 class bad_typeid : exception in version() 161 import core.stdcpp.exception; in version() [all …]
|
/netbsd-src/sys/arch/m68k/060sp/dist/ |
H A D | fskeletn.s | 79 # This is the exit point for the 060FPSP when an enabled overflow exception 81 # for enabled overflow conditions. The exception stack frame is an overflow 84 # The sample routine below simply clears the exception status bit and 97 # This is the exit point for the 060FPSP when an enabled underflow exception 99 # for enabled underflow conditions. The exception stack frame is an underflow 102 # The sample routine below simply clears the exception status bit and 115 # This is the exit point for the 060FPSP when an enabled operand error exception 117 # for enabled operand error exceptions. The exception stack frame is an operand error 121 # The sample routine below simply clears the exception status bit and 134 # This is the exit point for the 060FPSP when an enabled signalling NaN exception [all …]
|
/netbsd-src/sys/arch/hppa/hppa/ |
H A D | fpu.c | 333 int exception; in hppa_fpu_emulate() local 387 exception = decode_0c(inst, class, sub, fpregs); in hppa_fpu_emulate() 390 exception = decode_0e(inst, class, sub, fpregs); in hppa_fpu_emulate() 393 exception = decode_06(inst, fpregs); in hppa_fpu_emulate() 396 exception = decode_26(inst, fpregs); in hppa_fpu_emulate() 399 exception = UNIMPLEMENTEDEXCEPTION; in hppa_fpu_emulate() 403 if (exception) { in hppa_fpu_emulate() 405 if (exception & UNIMPLEMENTEDEXCEPTION) { in hppa_fpu_emulate() 410 if (exception & INVALIDEXCEPTION) { in hppa_fpu_emulate() 412 } else if (exception & DIVISIONBYZEROEXCEPTION) { in hppa_fpu_emulate() [all …]
|
/netbsd-src/sys/arch/m68k/fpsp/ |
H A D | netbsd.sa | 39 * Each entry point for exception 'xxxx' begins with a 'jmp fpsp_xxxx'. 42 * the 'fpsp_xxxx' handler entry point should be placed in the exception 44 * exception is one that must be reported then there will be a 48 * that caused the exception will still be pending when the FPSP 50 * to handle the exception. 52 * If the exception was completely handled by the package, then 82 * Divide by Zero exception 100 * Inexact exception 103 * will probably want to clear the pending exception. 104 * The provided code will clear the E3 exception (i [all...] |
H A D | skeleton.sa | 39 * Each entry point for exception 'xxxx' begins with a 'jmp fpsp_xxxx'. 42 * the 'fpsp_xxxx' handler entry point should be placed in the exception 44 * exception is one that must be reported then there will be a 48 * that caused the exception will still be pending when the FPSP 50 * to handle the exception. 52 * If the exception was completely handled by the package, then 85 * Divide by Zero exception 103 * Inexact exception 106 * will probably want to clear the pending exception. 107 * The provided code will clear the E3 exception (i [all...] |
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | exception | 2 //===-------------------------- exception ---------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 14 exception synopsis 19 class exception 22 exception() noexcept; 23 exception(const exception&) noexcept; 24 exception& operator=(const exception&) noexcept; 25 virtual ~exception() noexcept; 30 : public exception 99 class _LIBCPP_EXCEPTION_ABI exception [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | exception.d | 37 Synopsis of some of std.exception's functions: 107 import core.exception : AssertError; 122 import core.exception : AssertError; 136 import core.exception : AssertError; 153 import core.exception : AssertError; 252 import core.exception : AssertError; 265 import core.exception : AssertError; 280 import core.exception : AssertError; 362 msg = The error message to put in the exception if it is thrown. 634 import core.exception : OutOfMemoryError; [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/ |
H A D | 2001-05-18-ExceptionHandling.txt | 20 an exception is thrown by func (or if we are in a try block). 57 used to implement the C++ exception model: 70 // execution continues after the try block: the exception is consumed 86 call foo() with fooCleanup // An exception in foo is propogated to fooCleanup 87 call bar() with barCleanup // An exception in bar is propogated to barCleanup 93 call baz() with bazCleanup // An exception in baz is propogated to bazCleanup 102 what we want for zero cost (when unused) exception handling. Especially on 103 platforms with many registers (ie, the IA64) setjmp/longjmp style exception 109 TryCleanup: // Executed if an exception escapes the try block 111 barCleanup: // Executed if an exception escapes from bar() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | exception.d | 41 Source: $(PHOBOSSRC std/exception.d) 44 module std.exception; 126 If msg is empty, and the thrown exception has a 127 non-empty msg field, the exception's msg field 645 Catches and returns the exception thrown from the given expression. 646 If no exception is thrown, then null is returned and `result` is 657 T = The type of exception to catch. 658 expression = The expression which may throw an exception. 659 result = The result of the expression if no exception is thrown. 687 import core.exception : RangeError; [all …]
|
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/interrupts/ |
H A D | badalign-fr550.cgs | 11 inc_gr_immed 0x100,gr17 ; address of exception handler 20 sti gr17,@(sp,0) ; no exception 21 sti gr17,@(sp,4) ; no exception 24 ldi @(sp,0),gr19 ; no exception 28 sti gr17,@(sp,0) ; misaligned -- no exception 35 ldu @(sp,gr21),gr10 ; misaligned read no exception
|
H A D | fp_exception-fr550.cgs | 39 inc_gr_immed 0x070,gr17 ; address of exception handler 41 inc_gr_immed 0x060,gr17 ; address of exception handler 79 fdivs fr0,fr1,fr2 ; div/0 -- no exception 93 fsqrts fr32,fr2 ; inexact -- no exception 114 ; exception handler 1 -- illegal_instruction: bad insn 121 ; exception handler 2 - fp_exception: divide by 0 133 ; exception handler 3 - illegal_instruction: register exception 140 ; exception handler 4 - illegal_instruction: register exception 147 ; exception handler 5 - illegal_instruction: sequence violation 154 ; exception handler 6 - fp_exception: inexact [all …]
|
H A D | mp_exception.cgs | 32 mcmpsh.p fr10,fr11,fcc0 ; no exception 33 mcmpsh fr10,fr11,fcc2 ; no exception 40 mmulhs.p fr10,fr11,acc3 ; no exception 51 mmulhu fr10,fr11,acc0 ; no exception 60 mmulxhs.p fr10,fr11,acc3 ; no exception 71 mmulxhu fr10,fr11,acc0 ; no exception 80 mmachs.p fr10,fr11,acc3 ; no exception 91 mmachu fr10,fr11,acc0 ; no exception 101 mqaddhss fr10,fr12,fr14 ; no exception 110 mqaddhss.p fr10,fr12,fr14 ; no exception [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/src/support/runtime/ |
H A D | exception_fallback.ipp | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 68 // handler should not throw exception 69 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n"); 85 exception::~exception() noexcept 89 const char* exception::what() const noexcept 91 return "std::exception";
|
H A D | exception_msvc.ipp | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 72 // handler should not throw exception 73 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n"); 114 exception::~exception() noexcept 118 const char* exception::what() const noexcept 120 return "std::exception";
|