| 592 | } |
| 593 | |
| 594 | void |
| 595 | unhandled_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 | } |
nothing calls this directly
no test coverage detected