aboutsummaryrefslogtreecommitdiff
path: root/pk/pk.h
blob: 7ff3e85d5fc26fa1f6644f9c692e6a0b0d26ef34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef _PK_H
#define _PK_H

#include <stdint.h>

typedef struct
{
  long gpr[32];
  long sr;
  long epc;
  long badvaddr;
  long cause;
  long insn;
} trapframe_t;

#define USER_MEM_SIZE 0x70000000
#define USER_MAINVARS_SIZE 0x1000
#define USER_START 0x10000

#define panic(s,...) do { printk(s"\n", ##__VA_ARGS__); sys_exit(-1); } while(0)
#define kassert(cond) do { if(!(cond)) panic("assertion failed: "#cond); } while(0)

#ifdef __cplusplus
extern "C" {
#endif

extern int have_fp;
int emulate_fp(trapframe_t*);
void init_fp();

void printk(const char* s, ...);
void init_tf(trapframe_t*, long pc, long sp);
void pop_tf(trapframe_t*);
void dump_tf(trapframe_t*);

void unhandled_trap(trapframe_t*);
void handle_syscall(trapframe_t*);
void handle_misaligned_ldst(trapframe_t*);
void handle_fault_load(trapframe_t*);
void handle_fault_store(trapframe_t*);
void boot();

void sys_exit(int code) __attribute__((noreturn));

static inline void advance_pc(trapframe_t* tf)
{
  tf->epc += 4;
}

#ifdef __cplusplus
}
#endif

#endif