libdragon
Loading...
Searching...
No Matches
exception.h
Go to the documentation of this file.
1
9#ifndef __LIBDRAGON_EXCEPTION_H
10#define __LIBDRAGON_EXCEPTION_H
11
12#include <stdint.h>
13
31enum
32{
41};
42
46typedef enum {
47 EXCEPTION_CODE_INTERRUPT = 0,
48 EXCEPTION_CODE_TLB_MODIFICATION = 1,
49 EXCEPTION_CODE_TLB_LOAD_I_MISS = 2,
50 EXCEPTION_CODE_TLB_STORE_MISS = 3,
51 EXCEPTION_CODE_LOAD_I_ADDRESS_ERROR = 4,
52 EXCEPTION_CODE_STORE_ADDRESS_ERROR = 5,
53 EXCEPTION_CODE_I_BUS_ERROR = 6,
54 EXCEPTION_CODE_D_BUS_ERROR = 7,
55 EXCEPTION_CODE_SYS_CALL = 8,
56 EXCEPTION_CODE_BREAKPOINT = 9,
57 EXCEPTION_CODE_RESERVED_INSTRUCTION = 10,
58 EXCEPTION_CODE_COPROCESSOR_UNUSABLE = 11,
59 EXCEPTION_CODE_ARITHMETIC_OVERFLOW = 12,
60 EXCEPTION_CODE_TRAP = 13,
61 EXCEPTION_CODE_FLOATING_POINT = 15,
62 EXCEPTION_CODE_WATCH = 23,
64
70typedef struct __attribute__((packed))
71{
73 union {
74 uint64_t gpr[32];
75 struct {
76 uint64_t zr, at, v0, v1, a0, a1, a2, a3;
77 uint64_t t0, t1, t2, t3, t4, t5, t6, t7;
78 uint64_t s0, s1, s2, s3, s4, s5, s6, s7;
79 uint64_t t8, t9, k0, k1, gp, sp, fp, ra;
80 };
81 };
83 uint64_t hi;
85 uint64_t lo;
87 uint32_t sr;
89 uint32_t cr;
100 uint32_t epc;
102 uint32_t fc31;
104 uint64_t fpr[32];
106
107/* Make sure the structure has the right size. Please keep this in sync with inthandler.S */
108_Static_assert(sizeof(reg_block_t) == 544, "invalid reg_block_t size -- this must match inthandler.S");
109
113typedef struct
114{
119 int32_t type;
125 const char* info;
129
132#ifdef __cplusplus
133extern "C" {
134#endif
135
144typedef void (*exception_handler_t)(exception_t *exc);
145
154typedef void (*syscall_handler_t)(exception_t *exc, uint32_t code);
155
187
196
197
221void register_syscall_handler( syscall_handler_t handler, uint32_t first_code, uint32_t last_code );
222
223#ifdef __cplusplus
224}
225#endif
226
227#endif
exception_handler_t register_exception_handler(exception_handler_t cb)
Register an exception handler to handle exceptions.
Definition exception.c:42
void exception_default_handler(exception_t *ex)
Default exception handler.
Definition exception.c:206
void(* exception_handler_t)(exception_t *exc)
Generic exception handler.
Definition exception.h:144
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:407
void(* syscall_handler_t)(exception_t *exc, uint32_t code)
Syscall handler.
Definition exception.h:154
const char * info
String information of exception.
Definition exception.h:125
uint32_t sr
SR.
Definition exception.h:87
uint32_t epc
represents EPC - COP0 register $14
Definition exception.h:100
uint64_t hi
HI.
Definition exception.h:83
reg_block_t * regs
Registers at point of exception.
Definition exception.h:127
uint32_t cr
CR (NOTE: can't modify this from an exception handler)
Definition exception.h:89
uint32_t fc31
FC31.
Definition exception.h:102
uint64_t lo
LO.
Definition exception.h:85
exception_code_t code
Underlying exception code.
Definition exception.h:123
int32_t type
Exception type.
Definition exception.h:119
exception_code_t
Exception codes.
Definition exception.h:46
@ EXCEPTION_TYPE_CRITICAL
Critical exception.
Definition exception.h:38
@ EXCEPTION_TYPE_SYSCALL
Syscall exception.
Definition exception.h:40
@ EXCEPTION_TYPE_RESET
Reset exception.
Definition exception.h:36
@ EXCEPTION_TYPE_UNKNOWN
Unknown exception.
Definition exception.h:34
Structure representing an exception.
Definition exception.h:114
Structure representing a register block.
Definition exception.h:71