source: soft/giet_vm/giet_kernel/exc_handler.c @ 516

Last change on this file since 516 was 459, checked in by alain, 10 years ago

Removing the kernel_utils.c/kernel_utils.h file.
Introducing new functions in sys_handler.c/sys_handler.h to handle NIC related system calls.

  • Property svn:executable set to *
File size: 3.8 KB
Line 
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>
12#include <tty0.h>
13
14///////////////////////////////////////////////////////////////////////////////////
15// Prototypes of exception handlers.
16///////////////////////////////////////////////////////////////////////////////////
17
18static void _cause_ukn();
19static void _cause_adel();
20static void _cause_ades();
21static void _cause_ibe();
22static void _cause_dbe();
23static void _cause_bp();
24static void _cause_ri();
25static void _cause_cpu();
26static void _cause_ovf();
27
28extern void _int_handler();
29extern void _sys_handler();
30
31///////////////////////////////////////////////////////////////////////////////////
32// Initialize the exception vector indexed by the CR XCODE field
33///////////////////////////////////////////////////////////////////////////////////
34const _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
54static 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
67///////////////////////////////////////////////
68static void _display_cause( unsigned int type ) 
69{
70    unsigned int gpid       = _get_procid();
71    unsigned int cluster_xy = gpid >> P_WIDTH;
72    unsigned int x          = cluster_xy >> Y_WIDTH;
73    unsigned int y          = cluster_xy & ((1<<Y_WIDTH)-1);
74    unsigned int lpid       = gpid & ((1<<P_WIDTH)-1);
75
76    unsigned int task       = _get_context_slot(CTX_LTID_ID);
77
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
86    // goes to sleeping state
87    _set_context_slot(CTX_RUN_ID, 0);
88
89    // deschedule
90    _ctx_switch();
91}
92
93static void _cause_ukn()  { _display_cause(0); }
94static void _cause_adel() { _display_cause(1); }
95static void _cause_ades() { _display_cause(2); }
96static void _cause_ibe()  { _display_cause(3); }
97static void _cause_dbe()  { _display_cause(4); }
98static void _cause_bp()   { _display_cause(5); }
99static void _cause_ri()   { _display_cause(6); }
100static void _cause_cpu()  { _display_cause(7); }
101static 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
Note: See TracBrowser for help on using the repository browser.