]> git.lizzy.rs Git - rust.git/blob - library/std/src/panicking.rs
Rollup merge of #79116 - petrochenkov:gdbwarn, r=Mark-Simulacrum
[rust.git] / library / std / src / panicking.rs
1 //! Implementation of various bits and pieces of the `panic!` macro and
2 //! associated runtime pieces.
3 //!
4 //! Specifically, this module contains the implementation of:
5 //!
6 //! * Panic hooks
7 //! * Executing a panic up to doing the actual implementation
8 //! * Shims around "try"
9
10 #![deny(unsafe_op_in_unsafe_fn)]
11
12 use core::panic::{BoxMeUp, Location, PanicInfo};
13
14 use crate::any::Any;
15 use crate::fmt;
16 use crate::intrinsics;
17 use crate::mem::{self, ManuallyDrop};
18 use crate::process;
19 use crate::sync::atomic::{AtomicBool, Ordering};
20 use crate::sys::stdio::panic_output;
21 use crate::sys_common::backtrace::{self, RustBacktrace};
22 use crate::sys_common::rwlock::RWLock;
23 use crate::sys_common::{thread_info, util};
24 use crate::thread;
25
26 #[cfg(not(test))]
27 use crate::io::set_output_capture;
28 // make sure to use the stderr output configured
29 // by libtest in the real copy of std
30 #[cfg(test)]
31 use realstd::io::set_output_capture;
32
33 // Binary interface to the panic runtime that the standard library depends on.
34 //
35 // The standard library is tagged with `#![needs_panic_runtime]` (introduced in
36 // RFC 1513) to indicate that it requires some other crate tagged with
37 // `#![panic_runtime]` to exist somewhere. Each panic runtime is intended to
38 // implement these symbols (with the same signatures) so we can get matched up
39 // to them.
40 //
41 // One day this may look a little less ad-hoc with the compiler helping out to
42 // hook up these functions, but it is not this day!
43 #[allow(improper_ctypes)]
44 extern "C" {
45     fn __rust_panic_cleanup(payload: *mut u8) -> *mut (dyn Any + Send + 'static);
46
47     /// `payload` is actually a `*mut &mut dyn BoxMeUp` but that would cause FFI warnings.
48     /// It cannot be `Box<dyn BoxMeUp>` because the other end of this call does not depend
49     /// on liballoc, and thus cannot use `Box`.
50     #[unwind(allowed)]
51     fn __rust_start_panic(payload: usize) -> u32;
52 }
53
54 /// This function is called by the panic runtime if FFI code catches a Rust
55 /// panic but doesn't rethrow it. We don't support this case since it messes
56 /// with our panic count.
57 #[cfg(not(test))]
58 #[rustc_std_internal_symbol]
59 extern "C" fn __rust_drop_panic() -> ! {
60     rtabort!("Rust panics must be rethrown");
61 }
62
63 /// This function is called by the panic runtime if it catches an exception
64 /// object which does not correspond to a Rust panic.
65 #[cfg(not(test))]
66 #[rustc_std_internal_symbol]
67 extern "C" fn __rust_foreign_exception() -> ! {
68     rtabort!("Rust cannot catch foreign exceptions");
69 }
70
71 #[derive(Copy, Clone)]
72 enum Hook {
73     Default,
74     Custom(*mut (dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send)),
75 }
76
77 static HOOK_LOCK: RWLock = RWLock::new();
78 static mut HOOK: Hook = Hook::Default;
79
80 /// Registers a custom panic hook, replacing any that was previously registered.
81 ///
82 /// The panic hook is invoked when a thread panics, but before the panic runtime
83 /// is invoked. As such, the hook will run with both the aborting and unwinding
84 /// runtimes. The default hook prints a message to standard error and generates
85 /// a backtrace if requested, but this behavior can be customized with the
86 /// `set_hook` and [`take_hook`] functions.
87 ///
88 /// [`take_hook`]: ./fn.take_hook.html
89 ///
90 /// The hook is provided with a `PanicInfo` struct which contains information
91 /// about the origin of the panic, including the payload passed to `panic!` and
92 /// the source code location from which the panic originated.
93 ///
94 /// The panic hook is a global resource.
95 ///
96 /// # Panics
97 ///
98 /// Panics if called from a panicking thread.
99 ///
100 /// # Examples
101 ///
102 /// The following will print "Custom panic hook":
103 ///
104 /// ```should_panic
105 /// use std::panic;
106 ///
107 /// panic::set_hook(Box::new(|_| {
108 ///     println!("Custom panic hook");
109 /// }));
110 ///
111 /// panic!("Normal panic");
112 /// ```
113 #[stable(feature = "panic_hooks", since = "1.10.0")]
114 pub fn set_hook(hook: Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send>) {
115     if thread::panicking() {
116         panic!("cannot modify the panic hook from a panicking thread");
117     }
118
119     unsafe {
120         HOOK_LOCK.write();
121         let old_hook = HOOK;
122         HOOK = Hook::Custom(Box::into_raw(hook));
123         HOOK_LOCK.write_unlock();
124
125         if let Hook::Custom(ptr) = old_hook {
126             #[allow(unused_must_use)]
127             {
128                 Box::from_raw(ptr);
129             }
130         }
131     }
132 }
133
134 /// Unregisters the current panic hook, returning it.
135 ///
136 /// *See also the function [`set_hook`].*
137 ///
138 /// [`set_hook`]: ./fn.set_hook.html
139 ///
140 /// If no custom hook is registered, the default hook will be returned.
141 ///
142 /// # Panics
143 ///
144 /// Panics if called from a panicking thread.
145 ///
146 /// # Examples
147 ///
148 /// The following will print "Normal panic":
149 ///
150 /// ```should_panic
151 /// use std::panic;
152 ///
153 /// panic::set_hook(Box::new(|_| {
154 ///     println!("Custom panic hook");
155 /// }));
156 ///
157 /// let _ = panic::take_hook();
158 ///
159 /// panic!("Normal panic");
160 /// ```
161 #[stable(feature = "panic_hooks", since = "1.10.0")]
162 pub fn take_hook() -> Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send> {
163     if thread::panicking() {
164         panic!("cannot modify the panic hook from a panicking thread");
165     }
166
167     unsafe {
168         HOOK_LOCK.write();
169         let hook = HOOK;
170         HOOK = Hook::Default;
171         HOOK_LOCK.write_unlock();
172
173         match hook {
174             Hook::Default => Box::new(default_hook),
175             Hook::Custom(ptr) => Box::from_raw(ptr),
176         }
177     }
178 }
179
180 fn default_hook(info: &PanicInfo<'_>) {
181     // If this is a double panic, make sure that we print a backtrace
182     // for this panic. Otherwise only print it if logging is enabled.
183     let backtrace_env = if panic_count::get() >= 2 {
184         RustBacktrace::Print(crate::backtrace_rs::PrintFmt::Full)
185     } else {
186         backtrace::rust_backtrace_env()
187     };
188
189     // The current implementation always returns `Some`.
190     let location = info.location().unwrap();
191
192     let msg = match info.payload().downcast_ref::<&'static str>() {
193         Some(s) => *s,
194         None => match info.payload().downcast_ref::<String>() {
195             Some(s) => &s[..],
196             None => "Box<Any>",
197         },
198     };
199     let thread = thread_info::current_thread();
200     let name = thread.as_ref().and_then(|t| t.name()).unwrap_or("<unnamed>");
201
202     let write = |err: &mut dyn crate::io::Write| {
203         let _ = writeln!(err, "thread '{}' panicked at '{}', {}", name, msg, location);
204
205         static FIRST_PANIC: AtomicBool = AtomicBool::new(true);
206
207         match backtrace_env {
208             RustBacktrace::Print(format) => drop(backtrace::print(err, format)),
209             RustBacktrace::Disabled => {}
210             RustBacktrace::RuntimeDisabled => {
211                 if FIRST_PANIC.swap(false, Ordering::SeqCst) {
212                     let _ = writeln!(
213                         err,
214                         "note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace"
215                     );
216                 }
217             }
218         }
219     };
220
221     if let Some(local) = set_output_capture(None) {
222         write(&mut *local.lock().unwrap_or_else(|e| e.into_inner()));
223         set_output_capture(Some(local));
224     } else if let Some(mut out) = panic_output() {
225         write(&mut out);
226     }
227 }
228
229 #[cfg(not(test))]
230 #[doc(hidden)]
231 #[unstable(feature = "update_panic_count", issue = "none")]
232 pub mod panic_count {
233     use crate::cell::Cell;
234     use crate::sync::atomic::{AtomicUsize, Ordering};
235
236     // Panic count for the current thread.
237     thread_local! { static LOCAL_PANIC_COUNT: Cell<usize> = Cell::new(0) }
238
239     // Sum of panic counts from all threads. The purpose of this is to have
240     // a fast path in `is_zero` (which is used by `panicking`). In any particular
241     // thread, if that thread currently views `GLOBAL_PANIC_COUNT` as being zero,
242     // then `LOCAL_PANIC_COUNT` in that thread is zero. This invariant holds before
243     // and after increase and decrease, but not necessarily during their execution.
244     static GLOBAL_PANIC_COUNT: AtomicUsize = AtomicUsize::new(0);
245
246     pub fn increase() -> usize {
247         GLOBAL_PANIC_COUNT.fetch_add(1, Ordering::Relaxed);
248         LOCAL_PANIC_COUNT.with(|c| {
249             let next = c.get() + 1;
250             c.set(next);
251             next
252         })
253     }
254
255     pub fn decrease() -> usize {
256         GLOBAL_PANIC_COUNT.fetch_sub(1, Ordering::Relaxed);
257         LOCAL_PANIC_COUNT.with(|c| {
258             let next = c.get() - 1;
259             c.set(next);
260             next
261         })
262     }
263
264     pub fn get() -> usize {
265         LOCAL_PANIC_COUNT.with(|c| c.get())
266     }
267
268     #[inline]
269     pub fn is_zero() -> bool {
270         if GLOBAL_PANIC_COUNT.load(Ordering::Relaxed) == 0 {
271             // Fast path: if `GLOBAL_PANIC_COUNT` is zero, all threads
272             // (including the current one) will have `LOCAL_PANIC_COUNT`
273             // equal to zero, so TLS access can be avoided.
274             //
275             // In terms of performance, a relaxed atomic load is similar to a normal
276             // aligned memory read (e.g., a mov instruction in x86), but with some
277             // compiler optimization restrictions. On the other hand, a TLS access
278             // might require calling a non-inlinable function (such as `__tls_get_addr`
279             // when using the GD TLS model).
280             true
281         } else {
282             is_zero_slow_path()
283         }
284     }
285
286     // Slow path is in a separate function to reduce the amount of code
287     // inlined from `is_zero`.
288     #[inline(never)]
289     #[cold]
290     fn is_zero_slow_path() -> bool {
291         LOCAL_PANIC_COUNT.with(|c| c.get() == 0)
292     }
293 }
294
295 #[cfg(test)]
296 pub use realstd::rt::panic_count;
297
298 /// Invoke a closure, capturing the cause of an unwinding panic if one occurs.
299 pub unsafe fn r#try<R, F: FnOnce() -> R>(f: F) -> Result<R, Box<dyn Any + Send>> {
300     union Data<F, R> {
301         f: ManuallyDrop<F>,
302         r: ManuallyDrop<R>,
303         p: ManuallyDrop<Box<dyn Any + Send>>,
304     }
305
306     // We do some sketchy operations with ownership here for the sake of
307     // performance. We can only pass pointers down to `do_call` (can't pass
308     // objects by value), so we do all the ownership tracking here manually
309     // using a union.
310     //
311     // We go through a transition where:
312     //
313     // * First, we set the data field `f` to be the argumentless closure that we're going to call.
314     // * When we make the function call, the `do_call` function below, we take
315     //   ownership of the function pointer. At this point the `data` union is
316     //   entirely uninitialized.
317     // * If the closure successfully returns, we write the return value into the
318     //   data's return slot (field `r`).
319     // * If the closure panics (`do_catch` below), we write the panic payload into field `p`.
320     // * Finally, when we come back out of the `try` intrinsic we're
321     //   in one of two states:
322     //
323     //      1. The closure didn't panic, in which case the return value was
324     //         filled in. We move it out of `data.r` and return it.
325     //      2. The closure panicked, in which case the panic payload was
326     //         filled in. We move it out of `data.p` and return it.
327     //
328     // Once we stack all that together we should have the "most efficient'
329     // method of calling a catch panic whilst juggling ownership.
330     let mut data = Data { f: ManuallyDrop::new(f) };
331
332     let data_ptr = &mut data as *mut _ as *mut u8;
333     // SAFETY:
334     //
335     // Access to the union's fields: this is `std` and we know that the `r#try`
336     // intrinsic fills in the `r` or `p` union field based on its return value.
337     //
338     // The call to `intrinsics::r#try` is made safe by:
339     // - `do_call`, the first argument, can be called with the initial `data_ptr`.
340     // - `do_catch`, the second argument, can be called with the `data_ptr` as well.
341     // See their safety preconditions for more informations
342     unsafe {
343         return if intrinsics::r#try(do_call::<F, R>, data_ptr, do_catch::<F, R>) == 0 {
344             Ok(ManuallyDrop::into_inner(data.r))
345         } else {
346             Err(ManuallyDrop::into_inner(data.p))
347         };
348     }
349
350     // We consider unwinding to be rare, so mark this function as cold. However,
351     // do not mark it no-inline -- that decision is best to leave to the
352     // optimizer (in most cases this function is not inlined even as a normal,
353     // non-cold function, though, as of the writing of this comment).
354     #[cold]
355     unsafe fn cleanup(payload: *mut u8) -> Box<dyn Any + Send + 'static> {
356         // SAFETY: The whole unsafe block hinges on a correct implementation of
357         // the panic handler `__rust_panic_cleanup`. As such we can only
358         // assume it returns the correct thing for `Box::from_raw` to work
359         // without undefined behavior.
360         let obj = unsafe { Box::from_raw(__rust_panic_cleanup(payload)) };
361         panic_count::decrease();
362         obj
363     }
364
365     // SAFETY:
366     // data must be non-NUL, correctly aligned, and a pointer to a `Data<F, R>`
367     // Its must contains a valid `f` (type: F) value that can be use to fill
368     // `data.r`.
369     //
370     // This function cannot be marked as `unsafe` because `intrinsics::r#try`
371     // expects normal function pointers.
372     #[inline]
373     fn do_call<F: FnOnce() -> R, R>(data: *mut u8) {
374         // SAFETY: this is the responsibilty of the caller, see above.
375         unsafe {
376             let data = data as *mut Data<F, R>;
377             let data = &mut (*data);
378             let f = ManuallyDrop::take(&mut data.f);
379             data.r = ManuallyDrop::new(f());
380         }
381     }
382
383     // We *do* want this part of the catch to be inlined: this allows the
384     // compiler to properly track accesses to the Data union and optimize it
385     // away most of the time.
386     //
387     // SAFETY:
388     // data must be non-NUL, correctly aligned, and a pointer to a `Data<F, R>`
389     // Since this uses `cleanup` it also hinges on a correct implementation of
390     // `__rustc_panic_cleanup`.
391     //
392     // This function cannot be marked as `unsafe` because `intrinsics::r#try`
393     // expects normal function pointers.
394     #[inline]
395     fn do_catch<F: FnOnce() -> R, R>(data: *mut u8, payload: *mut u8) {
396         // SAFETY: this is the responsibilty of the caller, see above.
397         //
398         // When `__rustc_panic_cleaner` is correctly implemented we can rely
399         // on `obj` being the correct thing to pass to `data.p` (after wrapping
400         // in `ManuallyDrop`).
401         unsafe {
402             let data = data as *mut Data<F, R>;
403             let data = &mut (*data);
404             let obj = cleanup(payload);
405             data.p = ManuallyDrop::new(obj);
406         }
407     }
408 }
409
410 /// Determines whether the current thread is unwinding because of panic.
411 #[inline]
412 pub fn panicking() -> bool {
413     !panic_count::is_zero()
414 }
415
416 /// The entry point for panicking with a formatted message.
417 ///
418 /// This is designed to reduce the amount of code required at the call
419 /// site as much as possible (so that `panic!()` has as low an impact
420 /// on (e.g.) the inlining of other functions as possible), by moving
421 /// the actual formatting into this shared place.
422 #[unstable(feature = "libstd_sys_internals", reason = "used by the panic! macro", issue = "none")]
423 #[cold]
424 // If panic_immediate_abort, inline the abort call,
425 // otherwise avoid inlining because of it is cold path.
426 #[cfg_attr(not(feature = "panic_immediate_abort"), track_caller)]
427 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
428 #[cfg_attr(feature = "panic_immediate_abort", inline)]
429 pub fn begin_panic_fmt(msg: &fmt::Arguments<'_>) -> ! {
430     if cfg!(feature = "panic_immediate_abort") {
431         intrinsics::abort()
432     }
433
434     let info = PanicInfo::internal_constructor(Some(msg), Location::caller());
435     begin_panic_handler(&info)
436 }
437
438 /// Entry point of panics from the libcore crate (`panic_impl` lang item).
439 #[cfg_attr(not(test), panic_handler)]
440 #[unwind(allowed)]
441 pub fn begin_panic_handler(info: &PanicInfo<'_>) -> ! {
442     struct PanicPayload<'a> {
443         inner: &'a fmt::Arguments<'a>,
444         string: Option<String>,
445     }
446
447     impl<'a> PanicPayload<'a> {
448         fn new(inner: &'a fmt::Arguments<'a>) -> PanicPayload<'a> {
449             PanicPayload { inner, string: None }
450         }
451
452         fn fill(&mut self) -> &mut String {
453             use crate::fmt::Write;
454
455             let inner = self.inner;
456             // Lazily, the first time this gets called, run the actual string formatting.
457             self.string.get_or_insert_with(|| {
458                 let mut s = String::new();
459                 drop(s.write_fmt(*inner));
460                 s
461             })
462         }
463     }
464
465     unsafe impl<'a> BoxMeUp for PanicPayload<'a> {
466         fn take_box(&mut self) -> *mut (dyn Any + Send) {
467             // We do two allocations here, unfortunately. But (a) they're required with the current
468             // scheme, and (b) we don't handle panic + OOM properly anyway (see comment in
469             // begin_panic below).
470             let contents = mem::take(self.fill());
471             Box::into_raw(Box::new(contents))
472         }
473
474         fn get(&mut self) -> &(dyn Any + Send) {
475             self.fill()
476         }
477     }
478
479     struct StrPanicPayload(&'static str);
480
481     unsafe impl BoxMeUp for StrPanicPayload {
482         fn take_box(&mut self) -> *mut (dyn Any + Send) {
483             Box::into_raw(Box::new(self.0))
484         }
485
486         fn get(&mut self) -> &(dyn Any + Send) {
487             &self.0
488         }
489     }
490
491     let loc = info.location().unwrap(); // The current implementation always returns Some
492     let msg = info.message().unwrap(); // The current implementation always returns Some
493     crate::sys_common::backtrace::__rust_end_short_backtrace(move || {
494         if let Some(msg) = msg.as_str() {
495             rust_panic_with_hook(&mut StrPanicPayload(msg), info.message(), loc);
496         } else {
497             rust_panic_with_hook(&mut PanicPayload::new(msg), info.message(), loc);
498         }
499     })
500 }
501
502 /// This is the entry point of panicking for the non-format-string variants of
503 /// panic!() and assert!(). In particular, this is the only entry point that supports
504 /// arbitrary payloads, not just format strings.
505 #[unstable(feature = "libstd_sys_internals", reason = "used by the panic! macro", issue = "none")]
506 #[cfg_attr(not(test), lang = "begin_panic")]
507 // lang item for CTFE panic support
508 // never inline unless panic_immediate_abort to avoid code
509 // bloat at the call sites as much as possible
510 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
511 #[cold]
512 #[track_caller]
513 pub fn begin_panic<M: Any + Send>(msg: M) -> ! {
514     if cfg!(feature = "panic_immediate_abort") {
515         intrinsics::abort()
516     }
517
518     let loc = Location::caller();
519     return crate::sys_common::backtrace::__rust_end_short_backtrace(move || {
520         rust_panic_with_hook(&mut PanicPayload::new(msg), None, loc)
521     });
522
523     struct PanicPayload<A> {
524         inner: Option<A>,
525     }
526
527     impl<A: Send + 'static> PanicPayload<A> {
528         fn new(inner: A) -> PanicPayload<A> {
529             PanicPayload { inner: Some(inner) }
530         }
531     }
532
533     unsafe impl<A: Send + 'static> BoxMeUp for PanicPayload<A> {
534         fn take_box(&mut self) -> *mut (dyn Any + Send) {
535             // Note that this should be the only allocation performed in this code path. Currently
536             // this means that panic!() on OOM will invoke this code path, but then again we're not
537             // really ready for panic on OOM anyway. If we do start doing this, then we should
538             // propagate this allocation to be performed in the parent of this thread instead of the
539             // thread that's panicking.
540             let data = match self.inner.take() {
541                 Some(a) => Box::new(a) as Box<dyn Any + Send>,
542                 None => process::abort(),
543             };
544             Box::into_raw(data)
545         }
546
547         fn get(&mut self) -> &(dyn Any + Send) {
548             match self.inner {
549                 Some(ref a) => a,
550                 None => process::abort(),
551             }
552         }
553     }
554 }
555
556 /// Central point for dispatching panics.
557 ///
558 /// Executes the primary logic for a panic, including checking for recursive
559 /// panics, panic hooks, and finally dispatching to the panic runtime to either
560 /// abort or unwind.
561 fn rust_panic_with_hook(
562     payload: &mut dyn BoxMeUp,
563     message: Option<&fmt::Arguments<'_>>,
564     location: &Location<'_>,
565 ) -> ! {
566     let panics = panic_count::increase();
567
568     // If this is the third nested call (e.g., panics == 2, this is 0-indexed),
569     // the panic hook probably triggered the last panic, otherwise the
570     // double-panic check would have aborted the process. In this case abort the
571     // process real quickly as we don't want to try calling it again as it'll
572     // probably just panic again.
573     if panics > 2 {
574         util::dumb_print(format_args!("thread panicked while processing panic. aborting.\n"));
575         intrinsics::abort()
576     }
577
578     unsafe {
579         let mut info = PanicInfo::internal_constructor(message, location);
580         HOOK_LOCK.read();
581         match HOOK {
582             // Some platforms (like wasm) know that printing to stderr won't ever actually
583             // print anything, and if that's the case we can skip the default
584             // hook. Since string formatting happens lazily when calling `payload`
585             // methods, this means we avoid formatting the string at all!
586             // (The panic runtime might still call `payload.take_box()` though and trigger
587             // formatting.)
588             Hook::Default if panic_output().is_none() => {}
589             Hook::Default => {
590                 info.set_payload(payload.get());
591                 default_hook(&info);
592             }
593             Hook::Custom(ptr) => {
594                 info.set_payload(payload.get());
595                 (*ptr)(&info);
596             }
597         };
598         HOOK_LOCK.read_unlock();
599     }
600
601     if panics > 1 {
602         // If a thread panics while it's already unwinding then we
603         // have limited options. Currently our preference is to
604         // just abort. In the future we may consider resuming
605         // unwinding or otherwise exiting the thread cleanly.
606         util::dumb_print(format_args!("thread panicked while panicking. aborting.\n"));
607         intrinsics::abort()
608     }
609
610     rust_panic(payload)
611 }
612
613 /// This is the entry point for `resume_unwind`.
614 /// It just forwards the payload to the panic runtime.
615 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! {
616     panic_count::increase();
617
618     struct RewrapBox(Box<dyn Any + Send>);
619
620     unsafe impl BoxMeUp for RewrapBox {
621         fn take_box(&mut self) -> *mut (dyn Any + Send) {
622             Box::into_raw(mem::replace(&mut self.0, Box::new(())))
623         }
624
625         fn get(&mut self) -> &(dyn Any + Send) {
626             &*self.0
627         }
628     }
629
630     rust_panic(&mut RewrapBox(payload))
631 }
632
633 /// An unmangled function (through `rustc_std_internal_symbol`) on which to slap
634 /// yer breakpoints.
635 #[inline(never)]
636 #[cfg_attr(not(test), rustc_std_internal_symbol)]
637 fn rust_panic(mut msg: &mut dyn BoxMeUp) -> ! {
638     let code = unsafe {
639         let obj = &mut msg as *mut &mut dyn BoxMeUp;
640         __rust_start_panic(obj as usize)
641     };
642     rtabort!("failed to initiate panic, error {}", code)
643 }