OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [kernel/] [v2_0/] [src/] [common/] [except.cxx] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      common/except.cxx
4
//
5
//      Exception handling implementation
6
//
7
//==========================================================================
8
//####ECOSGPLCOPYRIGHTBEGIN####
9
// -------------------------------------------
10
// This file is part of eCos, the Embedded Configurable Operating System.
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under
14
// the terms of the GNU General Public License as published by the Free
15
// Software Foundation; either version 2 or (at your option) any later version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//==========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):    nickg
44
// Contributors: nickg, jlarmour
45
// Date:         1999-02-16
46
// Purpose:      Exception handling implementation
47
// Description:  This file contains the code that registers and delivers
48
//               exceptions.
49
//
50
//####DESCRIPTIONEND####
51
//
52
//==========================================================================
53
 
54
#include <pkgconf/kernel.h>
55
 
56
#include <cyg/kernel/ktypes.h>         // base kernel types
57
#include <cyg/infra/cyg_trac.h>        // tracing macros
58
#include <cyg/infra/cyg_ass.h>         // assertion macros
59
#include <cyg/kernel/instrmnt.h>       // instrumentation
60
 
61
#include <cyg/kernel/except.hxx>       // our header
62
 
63
#include <cyg/hal/hal_arch.h>          // architecture definitions
64
#include <cyg/hal/hal_intr.h>          // vector definitions
65
 
66
#include <cyg/kernel/thread.hxx>       // thread interface
67
 
68
#include <cyg/kernel/thread.inl>       // thread inlines
69
 
70
#ifdef CYGPKG_KERNEL_EXCEPTIONS
71
 
72
// -------------------------------------------------------------------------
73
// Null exception handler. This is used to capture exceptions that are
74
// not caught by user supplied handlers.
75
 
76
void
77
cyg_null_exception_handler(
78
    CYG_ADDRWORD        data,                   // user supplied data
79
    cyg_code            exception_number,       // exception being raised
80
    CYG_ADDRWORD        exception_info          // any exception specific info
81
    )
82
{
83
    CYG_REPORT_FUNCTION();
84
    CYG_REPORT_FUNCARG3("data=%08x, exception=%d, info=%08x", data,
85
                        exception_number, exception_info);
86
    CYG_TRACE1( 1, "Uncaught exception: %d", exception_number);
87
    CYG_REPORT_RETURN();
88
}
89
 
90
// -------------------------------------------------------------------------
91
// Exception Controller constructor.
92
 
93
Cyg_Exception_Control::Cyg_Exception_Control()
94
{
95
    CYG_REPORT_FUNCTION();
96
#ifdef CYGSEM_KERNEL_EXCEPTIONS_DECODE
97
 
98
    for( int i = 0; i < CYGNUM_HAL_EXCEPTION_COUNT ; i++ )
99
        exception_handler[i] = cyg_null_exception_handler,
100
            exception_data[i] = 0;
101
#else
102
 
103
    exception_handler = cyg_null_exception_handler;
104
    exception_data = 0;
105
 
106
#endif
107
    CYG_REPORT_RETURN();
108
}
109
 
110
// -------------------------------------------------------------------------
111
// Exception registation. Stores the handler function and data to be used
112
// for handling the given exception number. Where exceptions are not decoded
113
// only a single handler may be registered for all exceptions. This function
114
// also returns the old values of the exception handler and data to allow
115
// chaining to be implemented.
116
 
117
void
118
Cyg_Exception_Control::register_exception(
119
    cyg_code                exception_number,       // exception number
120
    cyg_exception_handler   handler,                // handler function
121
    CYG_ADDRWORD            data,                   // data argument
122
    cyg_exception_handler   **old_handler,          // handler function
123
    CYG_ADDRWORD            *old_data               // data argument
124
    )
125
{
126
    CYG_REPORT_FUNCTION();
127
    CYG_REPORT_FUNCARG5("exception=%d, handler func=%08x, data=%08x, "
128
                        "space for old handler=%08x,space for old data=%08x",
129
                        exception_number, handler, data, old_handler,
130
                        old_data);
131
 
132
    CYG_ASSERT( exception_number <= CYGNUM_HAL_EXCEPTION_MAX,
133
                "Out of range exception number");
134
    CYG_ASSERT( exception_number >= CYGNUM_HAL_EXCEPTION_MIN,
135
                "Out of range exception number");
136
 
137
 
138
    // Should we complain if there is already a registered
139
    // handler, or should we just replace is silently?
140
 
141
#ifdef CYGSEM_KERNEL_EXCEPTIONS_DECODE
142
 
143
    if( old_handler != NULL )
144
        *old_handler = exception_handler[exception_number -
145
                                        CYGNUM_HAL_EXCEPTION_MIN];
146
    if( old_data != NULL )
147
        *old_data = exception_data[exception_number -
148
                                  CYGNUM_HAL_EXCEPTION_MIN];
149
    exception_handler[exception_number - CYGNUM_HAL_EXCEPTION_MIN] = handler;
150
    exception_data[exception_number - CYGNUM_HAL_EXCEPTION_MIN] = data;
151
 
152
#else
153
 
154
    if( old_handler != NULL )
155
        *old_handler = exception_handler;
156
    if( old_data != NULL )
157
        *old_data = exception_data;
158
    exception_handler = handler;
159
    exception_data = data;
160
 
161
#endif
162
    CYG_REPORT_RETURN();
163
}
164
 
165
// -------------------------------------------------------------------------
166
// Exception deregistation. Revert the handler for the exception number
167
// to the default.
168
 
169
void
170
Cyg_Exception_Control::deregister_exception(
171
    cyg_code                exception_number        // exception number
172
    )
173
{
174
    CYG_REPORT_FUNCTION();
175
    CYG_REPORT_FUNCARG1("exception number=%d", exception_number);
176
 
177
    CYG_ASSERT( exception_number <= CYGNUM_HAL_EXCEPTION_MAX,
178
                "Out of range exception number");
179
    CYG_ASSERT( exception_number >= CYGNUM_HAL_EXCEPTION_MIN,
180
                "Out of range exception number");
181
 
182
#ifdef CYGSEM_KERNEL_EXCEPTIONS_DECODE
183
 
184
    exception_handler[exception_number - CYGNUM_HAL_EXCEPTION_MIN] =
185
        cyg_null_exception_handler;
186
    exception_data[exception_number - CYGNUM_HAL_EXCEPTION_MIN] = 0;
187
 
188
#else
189
 
190
    exception_handler = cyg_null_exception_handler;
191
    exception_data = 0;
192
 
193
#endif
194
 
195
    CYG_REPORT_RETURN();
196
}
197
 
198
// -------------------------------------------------------------------------
199
// Exception delivery. Call the appropriate exception handler.
200
 
201
void
202
Cyg_Exception_Control::deliver_exception(
203
    cyg_code            exception_number,       // exception being raised
204
    CYG_ADDRWORD        exception_info          // exception specific info
205
    )
206
{
207
    CYG_REPORT_FUNCTION();
208
    CYG_REPORT_FUNCARG2("exception number=%d, exception info=%08x",
209
                        exception_number, exception_info);
210
 
211
    cyg_exception_handler *handler = NULL;
212
    CYG_ADDRWORD data = 0;
213
 
214
    CYG_ASSERT( exception_number <= CYGNUM_HAL_EXCEPTION_MAX,
215
                "Out of range exception number");
216
    CYG_ASSERT( exception_number >= CYGNUM_HAL_EXCEPTION_MIN,
217
                "Out of range exception number");
218
 
219
#ifdef CYGSEM_KERNEL_EXCEPTIONS_DECODE
220
 
221
    handler = exception_handler[exception_number - CYGNUM_HAL_EXCEPTION_MIN];
222
    data = exception_data[exception_number - CYGNUM_HAL_EXCEPTION_MIN];
223
 
224
#else
225
 
226
    handler = exception_handler;
227
    data = exception_data;
228
 
229
#endif
230
 
231
    // The handler will always be a callable function: either the user's
232
    // registered function or the null handler. So it is always safe to
233
    // just go ahead and call it.
234
 
235
    handler( data, exception_number, exception_info );
236
 
237
    CYG_REPORT_RETURN();
238
}
239
 
240
// -------------------------------------------------------------------------
241
// Exception delivery function called from the HAL as a result of a
242
// hardware exception being raised.
243
 
244
externC void
245
cyg_hal_deliver_exception( CYG_WORD code, CYG_ADDRWORD data )
246
{
247
    CYG_REPORT_FUNCTION();
248
    Cyg_Thread::self()->deliver_exception( (cyg_code)code, data );
249
    CYG_REPORT_RETURN();
250
}
251
 
252
// -------------------------------------------------------------------------
253
// Where exceptions are global, there is a single static instance of the
254
// exception control object. Define it here.
255
 
256
#ifdef CYGSEM_KERNEL_EXCEPTIONS_GLOBAL
257
 
258
Cyg_Exception_Control Cyg_Thread::exception_control
259
                                              CYG_INIT_PRIORITY(INTERRUPTS);
260
 
261
#endif
262
 
263
// -------------------------------------------------------------------------
264
 
265
#endif // ifdef CYGPKG_KERNEL_EXCEPTIONS
266
 
267
// -------------------------------------------------------------------------
268
// EOF common/except.cxx

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.