libdragon
|
Exception Handler. More...
Go to the source code of this file.
Data Structures | |
struct | reg_block_t |
Structure representing a register block. More... | |
struct | exception_t |
Structure representing an exception. More... | |
union | reg_block_t.__unnamed33__ |
General purpose registers 1-32. More... | |
struct | reg_block_t.__unnamed33__.__unnamed35__ |
Typedefs | |
typedef void(* | exception_handler_t) (exception_t *exc) |
Generic exception handler. | |
typedef void(* | syscall_handler_t) (exception_t *exc, uint32_t code) |
Syscall handler. | |
Enumerations | |
enum | { EXCEPTION_TYPE_UNKNOWN = 0 , EXCEPTION_TYPE_RESET , EXCEPTION_TYPE_CRITICAL , EXCEPTION_TYPE_SYSCALL } |
Exception types. More... | |
enum | exception_code_t { EXCEPTION_CODE_INTERRUPT = 0 , EXCEPTION_CODE_TLB_MODIFICATION = 1 , EXCEPTION_CODE_TLB_LOAD_I_MISS = 2 , EXCEPTION_CODE_TLB_STORE_MISS = 3 , EXCEPTION_CODE_LOAD_I_ADDRESS_ERROR = 4 , EXCEPTION_CODE_STORE_ADDRESS_ERROR = 5 , EXCEPTION_CODE_I_BUS_ERROR = 6 , EXCEPTION_CODE_D_BUS_ERROR = 7 , EXCEPTION_CODE_SYS_CALL = 8 , EXCEPTION_CODE_BREAKPOINT = 9 , EXCEPTION_CODE_RESERVED_INSTRUCTION = 10 , EXCEPTION_CODE_COPROCESSOR_UNUSABLE = 11 , EXCEPTION_CODE_ARITHMETIC_OVERFLOW = 12 , EXCEPTION_CODE_TRAP = 13 , EXCEPTION_CODE_FLOATING_POINT = 15 , EXCEPTION_CODE_WATCH = 23 } |
Exception codes. | |
Functions | |
exception_handler_t | register_exception_handler (exception_handler_t cb) |
Register an exception handler to handle exceptions. | |
void | exception_default_handler (exception_t *ex) |
Default exception handler. | |
void | register_syscall_handler (syscall_handler_t handler, uint32_t first_code, uint32_t last_code) |
Register a handler that will be called when a syscall exception. | |
Exception Handler.
typedef void(* exception_handler_t) (exception_t *exc) |
Generic exception handler.
This is the type of a handler that can be registered using register_exception_handler. It is associated to all unhandled exceptions that are not otherwise handled by libdragon.
exc | Exception information |
typedef void(* syscall_handler_t) (exception_t *exc, uint32_t code) |
Syscall handler.
This is the type of a handler of a syscall exception.
exc | Exception information |
code | Syscall code |
exception_handler_t register_exception_handler | ( | exception_handler_t | cb | ) |
Register an exception handler to handle exceptions.
The registered handle is responsible for clearing any bits that may cause a re-trigger of the same exception and updating the EPC. An important example is the cause bits (12-17) of FCR31 from cop1. To prevent re-triggering the exception they should be cleared by the handler.
To manipulate the registers, update the values in the exception_t struct. They will be restored to appropriate locations when returning from the handler. Setting them directly will not work as expected as they will get overwritten with the values pointed by the struct.
There is only one exception to this, cr (cause register) which is also modified by the int handler before the saved values are restored thus it is only possible to update it through C0_WRITE_CR macro if it is needed. This shouldn't be necessary though as they are already handled by the library.
k0 ($26), k1 ($27) are not saved/restored and will not be available in the handler. Theoretically we can exclude s0-s7 ($16-$23), and gp ($28) to gain some performance as they are already saved by GCC when necessary. The same is true for sp ($29) and ra ($31) but current interrupt handler manipulates them via allocating a new stack and doing a jal. Similarly floating point registers f21-f31 are callee-saved. In the future we may consider removing them from the save state for interrupts (but not for exceptions)
[in] | cb | Callback function to call when exceptions happen |
void exception_default_handler | ( | exception_t * | ex | ) |
Default exception handler.
This handler is installed by default for all exceptions. It initializes the console and dump the exception state to the screen, including the value of all GPR/FPR registers. It then calls abort() to abort execution.
void register_syscall_handler | ( | syscall_handler_t | handler, |
uint32_t | first_code, | ||
uint32_t | last_code | ||
) |
Register a handler that will be called when a syscall exception.
This function allows to register a handler to be invoked in response to a syscall exception, generated by the SYSCALL opcode. The opcode allows to specify a 20-bit code which, in a more traditional operating system architecture, corresponds to the "service" to be called.
When the registered handler returns, the execution will resume from the instruction following the syscall one.
To allow for different usages of the code field, this function accepts a range of codes to associated with the handler. This allows a single handler to be invoked for multiple different codes, to specialize services.
handler | Handler to invoke when a syscall exception is triggered |
first_code | First syscall code to associate with this handler (begin of range) |
last_code | Last syscall code to associate with this handler (end of range) |