libdragon
Loading...
Searching...
No Matches
exception.h
Go to the documentation of this file.
1
6#ifndef __LIBDRAGON_EXCEPTION_H
7#define __LIBDRAGON_EXCEPTION_H
8
9#include <stdint.h>
10
28enum
29{
38};
39
43typedef enum {
44 EXCEPTION_CODE_INTERRUPT = 0,
45 EXCEPTION_CODE_TLB_MODIFICATION = 1,
46 EXCEPTION_CODE_TLB_LOAD_I_MISS = 2,
47 EXCEPTION_CODE_TLB_STORE_MISS = 3,
48 EXCEPTION_CODE_LOAD_I_ADDRESS_ERROR = 4,
49 EXCEPTION_CODE_STORE_ADDRESS_ERROR = 5,
50 EXCEPTION_CODE_I_BUS_ERROR = 6,
51 EXCEPTION_CODE_D_BUS_ERROR = 7,
52 EXCEPTION_CODE_SYS_CALL = 8,
53 EXCEPTION_CODE_BREAKPOINT = 9,
54 EXCEPTION_CODE_RESERVED_INSTRUCTION = 10,
55 EXCEPTION_CODE_COPROCESSOR_UNUSABLE = 11,
56 EXCEPTION_CODE_ARITHMETIC_OVERFLOW = 12,
57 EXCEPTION_CODE_TRAP = 13,
58 EXCEPTION_CODE_FLOATING_POINT = 15,
59 EXCEPTION_CODE_WATCH = 23,
61
67typedef struct __attribute__((packed))
68{
70 union {
71 uint64_t gpr[32];
72 struct {
73 uint64_t zr, at, v0, v1, a0, a1, a2, a3;
74 uint64_t t0, t1, t2, t3, t4, t5, t6, t7;
75 uint64_t s0, s1, s2, s3, s4, s5, s6, s7;
76 uint64_t t8, t9, k0, k1, gp, sp, fp, ra;
77 };
78 };
80 uint64_t hi;
82 uint64_t lo;
84 uint32_t sr;
86 uint32_t cr;
97 uint32_t epc;
99 uint32_t fc31;
101 uint64_t fpr[32];
103
104/* Make sure the structure has the right size. Please keep this in sync with inthandler.S */
105_Static_assert(sizeof(reg_block_t) == 544, "invalid reg_block_t size -- this must match inthandler.S");
106
110typedef struct
111{
116 int32_t type;
122 const char* info;
126
129#ifdef __cplusplus
130extern "C" {
131#endif
132
141typedef void (*exception_handler_t)(exception_t *exc);
142
151typedef void (*syscall_handler_t)(exception_t *exc, uint32_t code);
152
184
193
194
218void register_syscall_handler( syscall_handler_t handler, uint32_t first_code, uint32_t last_code );
219
220#ifdef __cplusplus
221}
222#endif
223
224#endif
exception_handler_t register_exception_handler(exception_handler_t cb)
Register an exception handler to handle exceptions.
Definition exception.c:40
void exception_default_handler(exception_t *ex)
Default exception handler.
Definition exception.c:204
void(* exception_handler_t)(exception_t *exc)
Generic exception handler.
Definition exception.h:141
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.
Definition exception.c:405
void(* syscall_handler_t)(exception_t *exc, uint32_t code)
Syscall handler.
Definition exception.h:151
const char * info
String information of exception.
Definition exception.h:122
uint32_t sr
SR.
Definition exception.h:84
uint32_t epc
represents EPC - COP0 register $14
Definition exception.h:97
uint64_t hi
HI.
Definition exception.h:80
reg_block_t * regs
Registers at point of exception.
Definition exception.h:124
uint32_t cr
CR (NOTE: can't modify this from an exception handler)
Definition exception.h:86
uint32_t fc31
FC31.
Definition exception.h:99
uint64_t lo
LO.
Definition exception.h:82
exception_code_t code
Underlying exception code.
Definition exception.h:120
int32_t type
Exception type.
Definition exception.h:116
exception_code_t
Exception codes.
Definition exception.h:43
@ EXCEPTION_TYPE_CRITICAL
Critical exception.
Definition exception.h:35
@ EXCEPTION_TYPE_SYSCALL
Syscall exception.
Definition exception.h:37
@ EXCEPTION_TYPE_RESET
Reset exception.
Definition exception.h:33
@ EXCEPTION_TYPE_UNKNOWN
Unknown exception.
Definition exception.h:31
Structure representing an exception.
Definition exception.h:111
Structure representing a register block.
Definition exception.h:68