Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 25 of 1812) sorted by relevance

12345678910>>...73

/openbsd-src/gnu/llvm/libcxx/include/
H A Dexception6 // 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
94 // <vcruntime_exception.h> defines its own std::exception and std::bad_exception types,
108 // The std::exception class was already included above, but we're explicit about this condition her…
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Event/
H A DException.t6 my $exception = Test2::Event::Exception->new(
11 ok($exception->causes_fail, "Exception events always cause failure");
13 is($exception->summary, "Exception: evil at lake_of_fire.t line 6", "Got summary");
15 ok($exception->diagnostics, "Exception events are counted as diagnostics");
17 my $facet_data = $exception->facet_data;
33 $exception = Test2::Event::Exception->new(
38 ok($exception->causes_fail, "Exception events always cause failure");
40 is($exception->error, $str, "Got stringified exception");
42 $facet_data = $exception->facet_data;
/openbsd-src/gnu/llvm/llvm/docs/
H A DExceptionHandling.rst12 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 …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Dexception23 // As a special exception, you may use this file as part of a free software
28 // the GNU General Public License. This exception does not however
32 /** @file exception
49 * your own %exception classes, or use a different hierarchy, or to
52 class exception
55 exception() throw() { }
56 virtual ~exception() throw();
62 /** If an %exception is thrown which is not listed in a function's
63 * %exception specification, one of these may be thrown. */
64 class bad_exception : public exception
[all …]
H A Deh_exception.cc36 std::exception::~exception() throw() { } in ~exception()
41 std::exception::what() const throw() in what()
/openbsd-src/gnu/usr.bin/perl/cpan/autodie/t/
H A Dversion.t23 require autodie::exception;
24 require autodie::exception::system;
29 ok(defined($autodie::exception::VERSION), 'autodie::exception has a version');
33 is($autodie::VERSION, $autodie::exception::VERSION);
34 is($autodie::exception::VERSION, $autodie::exception::system::VERSION);
/openbsd-src/gnu/gcc/libstdc++-v3/libsupc++/
H A Dexception24 // As a special exception, you may use this file as part of a free software
29 // the GNU General Public License. This exception does not however
33 /** @file exception
53 * your own %exception classes, or use a different hierarchy, or to
56 class exception
59 exception() throw() { }
60 virtual ~exception() throw();
67 /** If an %exception is thrown which is not listed in a function's
68 * %exception specification, one of these may be thrown. */
69 class bad_exception : public exception
[all …]
H A Deh_exception.cc36 std::exception::~exception() throw() { } in ~exception()
41 std::exception::what() const throw() in what()
/openbsd-src/gnu/llvm/libcxx/src/support/runtime/
H A Dexception_fallback.ipp6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66 // handler should not throw exception
67 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n");
83 exception::~exception() noexcept
87 const char* exception::what() const noexcept
89 return "std::exception";
H A Dexception_msvc.ipp6 // 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";
/openbsd-src/gnu/llvm/llvm/docs/HistoricalNotes/
H A D2001-05-18-ExceptionHandling.txt20 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 …]
/openbsd-src/sys/arch/riscv64/riscv64/
H A Dtrap.c67 uint64_t exception; in do_trap_supervisor() local
84 exception = (frame->tf_scause & EXCP_MASK); in do_trap_supervisor()
85 switch (exception) { in do_trap_supervisor()
95 db_trapper(frame->tf_sepc,0/*XXX*/, frame, exception); in do_trap_supervisor()
108 exception, frame->tf_sepc, frame->tf_stval); in do_trap_supervisor()
115 uint64_t exception; in do_trap_user() local
137 exception = (frame->tf_scause & EXCP_MASK); in do_trap_user()
138 switch (exception) { in do_trap_user()
166 exception, frame->tf_stval); in do_trap_user()
/openbsd-src/sys/arch/arm64/arm64/
H A Dtrap.c51 /* Called from exception.S */
285 uint32_t exception; in do_el0_sync()
288 /* Read the esr register to get the exception details */ in do_el0_sync()
290 exception = ESR_ELx_EXCEPTION(esr); in do_el0_sync()
296 * Sanity check we are in an exception er can handle. The IL bit in do_el0_sync()
306 // (exception == EXCP_DATA_ABORT && ((esr & ISS_DATA_ISV) == 0)), in do_el0_sync()
307 // ("Invalid instruction length in exception")); in do_el0_sync()
309 switch(exception) { in do_el0_sync()
312 panic("FP exception in the kernel"); in do_el0_sync()
314 panic("Branch target exception i in do_el0_sync()
193 uint32_t exception; do_el1h_sync() local
264 uint32_t exception; do_el0_sync() local
[all...]
/openbsd-src/regress/usr.bin/tsort/
H A Dtsort-check8 %exception=();
24 $exception{$list[$i-1].' '.$list[$i % @list]} = 1;
41 if (defined $exception{"$a $b"}) {
51 while (($key, $v) = each %exception) {
/openbsd-src/gnu/gcc/fixincludes/tests/base/
H A Dmath.h14 #define exception __math_exception macro
19 struct exception;
72 typedef struct exception t_math_exception;
123 #undef exception
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/
H A DStack.t13 ok(!exception { $stack->cull }, "cull lives when stack is empty");
14 ok(!exception { $stack->all }, "all lives when stack is empty");
15 ok(!exception { $stack->clear }, "clear lives when stack is empty");
18 exception { $stack->pop(Test2::Hub->new) },
27 exception { $stack->pop($hub) },
34 exception { $stack->pop(Test2::Hub->new) },
45 ok(!exception { $stack->pop($hub) }, "Popped the correct hub");
/openbsd-src/gnu/gcc/gcc/config/rs6000/
H A Ddarwin-fallback.c268 uint32_t exception; member
291 uint32_t exception; member
387 if (m64->exception == 3 || m64->exception == 4 in handle_syscall()
388 || m64->exception == 6 in handle_syscall()
389 || (m64->exception == 7 && !(m64->srr1 & 0x10000))) in handle_syscall()
416 if (m->exception == 3 || m->exception == 4 in handle_syscall()
417 || m->exception == 6 in handle_syscall()
418 || (m->exception == 7 && !(m->srr1 & 0x10000))) in handle_syscall()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Dt-rtems26 # old-exception processing is depredicated, therefore
28 # * Cpu-variants supporting new exception processing are build
29 # with new exception processing only
30 # * Cpu-variants not having been ported to new exception processing are
31 # build with old and new exception processing
34 # Cpu-variants supporting new exception processing only
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test/
H A DPodlators.pm254 my $exception = $@;
271 if ($data_ref->{exception} || $exception) {
272 if ($exception) {
273 $exception =~ s{ [ ] at [ ] .* }{\n}xms;
275 is($exception, $data_ref->{exception}, "$data_ref->{name}: exception");
/openbsd-src/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
H A Dmath.h13 struct exception;
18 #define exception __math_exception macro
81 typedef struct exception t_math_exception;
159 #undef exception
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dm68k-stub.c1054 int exception; in set_debug_traps() local
1059 for (exception = 2; exception <= 23; exception++) in set_debug_traps()
1060 exceptionHandler (exception, _catchException); in set_debug_traps()
1075 for (exception = 48; exception <= 54; exception++) in set_debug_traps()
1076 exceptionHandler (exception, _catchException); in set_debug_traps()
/openbsd-src/gnu/llvm/libcxxabi/src/
H A Dstdlib_exception.cpp17 exception::~exception() noexcept in ~exception()
21 const char* exception::what() const noexcept in what()
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dconst-optree.t55 exception => $exception_134138,
188 exception => $exception_134138,
307 exception => $exception_134138,
318 exception => $exception_134138,
406 exception => $exception_134138,
414 if (exists $_{exception} and $_{exception}) {
/openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
H A Dexception41 int exception(int throw_e);
46 exception(throw_e)
57 $rv = eval { &Devel::PPPort::exception(0) };
65 $rv = eval { &Devel::PPPort::exception(1) };
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dpytracer.py172 def exceptionEvent(self, frame, exception, value, traceback): argument
240 def exceptionEvent(self, frame, exception): argument
241 …print("exception %s %s raised from %s @ %s" % (exception.getType(), str(exception.getValue()), fra…
242 print("tb: " + str(exception.getTraceback()))
319 def exceptionEvent(self, frame, exception): argument
322 …print("exception %s %s raised from %s @ %s" % (exception.getType(), str(exception.getValue()), fra…
323 print("tb: " + str(exception.getTraceback()))

12345678910>>...73