[258] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : exc_handler.c |
---|
| 3 | // Date : 01/04/2012 |
---|
| 4 | // Author : alain greiner and joel porquet |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | |
---|
| 8 | #include <exc_handler.h> |
---|
| 9 | #include <ctx_handler.h> |
---|
| 10 | #include <sys_handler.h> |
---|
| 11 | #include <utils.h> |
---|
[440] | 12 | #include <kernel_utils.h> |
---|
[258] | 13 | |
---|
| 14 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 15 | // Prototypes of exception handlers. |
---|
| 16 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 17 | |
---|
| 18 | static void _cause_ukn(); |
---|
| 19 | static void _cause_adel(); |
---|
| 20 | static void _cause_ades(); |
---|
| 21 | static void _cause_ibe(); |
---|
| 22 | static void _cause_dbe(); |
---|
| 23 | static void _cause_bp(); |
---|
| 24 | static void _cause_ri(); |
---|
| 25 | static void _cause_cpu(); |
---|
| 26 | static void _cause_ovf(); |
---|
| 27 | |
---|
| 28 | extern void _int_handler(); |
---|
| 29 | extern void _sys_handler(); |
---|
| 30 | |
---|
| 31 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 32 | // Initialize the exception vector indexed by the CR XCODE field |
---|
| 33 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 34 | const _exc_func_t _cause_vector[16] = |
---|
| 35 | { |
---|
| 36 | &_int_handler, /* 0000 : external interrupt */ |
---|
| 37 | &_cause_ukn, /* 0001 : undefined exception */ |
---|
| 38 | &_cause_ukn, /* 0010 : undefined exception */ |
---|
| 39 | &_cause_ukn, /* 0011 : undefined exception */ |
---|
| 40 | &_cause_adel, /* 0100 : illegal address read exception */ |
---|
| 41 | &_cause_ades, /* 0101 : illegal address write exception */ |
---|
| 42 | &_cause_ibe, /* 0110 : instruction bus error exception */ |
---|
| 43 | &_cause_dbe, /* 0111 : data bus error exception */ |
---|
| 44 | &_sys_handler, /* 1000 : system call */ |
---|
| 45 | &_cause_bp, /* 1001 : breakpoint exception */ |
---|
| 46 | &_cause_ri, /* 1010 : illegal codop exception */ |
---|
| 47 | &_cause_cpu, /* 1011 : illegal coprocessor access */ |
---|
| 48 | &_cause_ovf, /* 1100 : arithmetic overflow exception */ |
---|
| 49 | &_cause_ukn, /* 1101 : undefined exception */ |
---|
| 50 | &_cause_ukn, /* 1110 : undefined exception */ |
---|
| 51 | &_cause_ukn, /* 1111 : undefined exception */ |
---|
| 52 | }; |
---|
| 53 | |
---|
| 54 | static const char * exc_type[] = |
---|
| 55 | { |
---|
| 56 | "strange unknown cause", |
---|
| 57 | "illegal read address", |
---|
| 58 | "illegal write address", |
---|
| 59 | "inst bus error", |
---|
| 60 | "data bus error", |
---|
| 61 | "breakpoint", |
---|
| 62 | "reserved instruction", |
---|
| 63 | "illegal coproc access", |
---|
| 64 | "arithmetic overflow", |
---|
| 65 | }; |
---|
| 66 | |
---|
[294] | 67 | /////////////////////////////////////////////// |
---|
| 68 | static void _display_cause( unsigned int type ) |
---|
[258] | 69 | { |
---|
[294] | 70 | unsigned int gpid = _get_procid(); |
---|
[428] | 71 | unsigned int cluster_xy = gpid >> P_WIDTH; |
---|
[294] | 72 | unsigned int x = cluster_xy >> Y_WIDTH; |
---|
| 73 | unsigned int y = cluster_xy & ((1<<Y_WIDTH)-1); |
---|
[428] | 74 | unsigned int lpid = gpid & ((1<<P_WIDTH)-1); |
---|
| 75 | |
---|
[294] | 76 | unsigned int task = _get_context_slot(CTX_LTID_ID); |
---|
[258] | 77 | |
---|
[294] | 78 | _printf("\n[GIET] Exception for task %d on processor[%d,%d,%d] at cycle %d\n" |
---|
| 79 | " - type : %s\n" |
---|
| 80 | " - EPC : %x\n" |
---|
| 81 | " - BVAR : %x\n" |
---|
| 82 | "...Task desactivated\n", |
---|
| 83 | task, x, y, lpid, _get_proctime(), |
---|
| 84 | exc_type[type], _get_epc(), _get_bvar() ); |
---|
| 85 | |
---|
[258] | 86 | // goes to sleeping state |
---|
| 87 | _set_context_slot(CTX_RUN_ID, 0); |
---|
| 88 | |
---|
| 89 | // deschedule |
---|
| 90 | _ctx_switch(); |
---|
| 91 | } |
---|
| 92 | |
---|
| 93 | static void _cause_ukn() { _display_cause(0); } |
---|
| 94 | static void _cause_adel() { _display_cause(1); } |
---|
| 95 | static void _cause_ades() { _display_cause(2); } |
---|
| 96 | static void _cause_ibe() { _display_cause(3); } |
---|
| 97 | static void _cause_dbe() { _display_cause(4); } |
---|
| 98 | static void _cause_bp() { _display_cause(5); } |
---|
| 99 | static void _cause_ri() { _display_cause(6); } |
---|
| 100 | static void _cause_cpu() { _display_cause(7); } |
---|
| 101 | static void _cause_ovf() { _display_cause(8); } |
---|
| 102 | |
---|
| 103 | // Local Variables: |
---|
| 104 | // tab-width: 4 |
---|
| 105 | // c-basic-offset: 4 |
---|
| 106 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 107 | // indent-tabs-mode: nil |
---|
| 108 | // End: |
---|
| 109 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 110 | |
---|