MCPcopy Create free account
hub / github.com/F-Stack/f-stack / unhandled_exception

Function unhandled_exception

freebsd/arm64/arm64/trap.c:594–606  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

592}
593
594void
595unhandled_exception(struct trapframe *frame)
596{
597 uint64_t esr, far;
598
599 far = READ_SPECIALREG(far_el1);
600 esr = frame->tf_esr;
601
602 print_registers(frame);
603 printf(" far: %16lx\n", far);
604 printf(" esr: %.8lx\n", esr);
605 panic("Unhandled exception");
606}

Callers

nothing calls this directly

Calls 3

print_registersFunction · 0.85
printfFunction · 0.50
panicFunction · 0.50

Tested by

no test coverage detected