Lines Matching full:v
48 buf[3] = flags & PSR_V_BIT ? 'V' : 'v'; in show_regs()
68 void install_exception_handler(enum vector v, exception_fn fn) in install_exception_handler() argument
72 if (v < EXCPTN_MAX) in install_exception_handler()
73 ti->exception_handlers[v] = fn; in install_exception_handler()
77 void do_handle_exception(enum vector v, struct pt_regs *regs);
79 void do_handle_exception(enum vector v, struct pt_regs *regs) in do_handle_exception() argument
84 if (v < EXCPTN_MAX && ti->exception_handlers[v]) { in do_handle_exception()
85 ti->exception_handlers[v](regs); in do_handle_exception()
91 if (v < EXCPTN_MAX && ti->exception_handlers[v]) { in do_handle_exception()
92 ti->exception_handlers[v](regs); in do_handle_exception()
96 if (v < EXCPTN_MAX) in do_handle_exception()
97 printf("Unhandled exception %d (%s)\n", v, vector_names[v]); in do_handle_exception()
99 printf("%s called with vector=%d\n", __func__, v); in do_handle_exception()
103 if (v == EXCPTN_DABT) { in do_handle_exception()
108 } else if (v == EXCPTN_PABT) { in do_handle_exception()