annotate src/impl/vm_impl.cbc @ 216:0f1700bd5cff

cleapteu
author tobaru
date Fri, 24 Jan 2020 15:22:44 +0900
parents 2ecf1e09e981
children f940ff602312
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
197
tobaru
parents: 195
diff changeset
1 #include "../../context.h"
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
2 #interface "vm.h"
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
3
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
4 // ----
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
5 // typedef struct vm_impl<Impl, Isa> impl vm{
204
anatofuz
parents: 203
diff changeset
6 // union Data* vm_impl;
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
7 // uint i;
204
anatofuz
parents: 203
diff changeset
8 // pte_t* pte;
anatofuz
parents: 203
diff changeset
9 // uint sz;
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
10 //
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
11 // __code loaduvm_ptesize_check(Type* vm_impl, __code next(...));
204
anatofuz
parents: 203
diff changeset
12 // __code loaduvm_loop(Type* vm_impl, uint i, pte_t* pte, uint sz, __code next(...));
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
13 // __code next(...);
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
14 //
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
15 //
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
16 // } vm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
17 // ----
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
18
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
19 vm* createvm_impl(struct Context* cbc_context) {
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
20 struct vm* vm = new vm();
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
21 struct vm_impl* vm_impl = new vm_impl();
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
22 vm->vm = (union Data*)vm_impl;
204
anatofuz
parents: 203
diff changeset
23 vm_impl->vm_impl = NULL;
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
24 vm_impl->i = 0;
204
anatofuz
parents: 203
diff changeset
25 vm_impl->pte = NULL;
anatofuz
parents: 203
diff changeset
26 vm_impl->sz = 0;
anatofuz
parents: 203
diff changeset
27 vm_impl->loaduvm_ptesize_check = C_loaduvm_ptesize_checkvm_impl;
anatofuz
parents: 203
diff changeset
28 vm_impl->loaduvm_loop = C_loaduvm_loopvm_impl;
214
2ecf1e09e981 allocuvm_loop and return
tobaru
parents: 212
diff changeset
29 vm_impl->allocuvm_check_newsz = C_allocuvm_check_newszvm_impl;
2ecf1e09e981 allocuvm_loop and return
tobaru
parents: 212
diff changeset
30 vm_impl->allocuvm_loop = C_allocuvm_loopvm_impl;
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
31 vm->init_vmm = C_init_vmmvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
32 vm->kpt_freerange = C_kpt_freerangevm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
33 vm->kpt_alloc = C_kpt_allocvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
34 vm->switchuvm = C_switchuvmvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
35 vm->init_inituvm = C_init_inituvmvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
36 vm->loaduvm = C_loaduvmvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
37 vm->allocuvm = C_allocuvmvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
38 vm->clearpteu = C_clearpteuvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
39 vm->copyuvm = C_copyuvmvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
40 vm->uva2ka = C_uva2kavm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
41 vm->copyout = C_copyoutvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
42 vm->pagind_int = C_pagind_intvm_impl;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
43 return vm;
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
44 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
45
209
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
46 extern struct {
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
47 struct spinlock lock;
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
48 struct run *freelist;
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
49 } kpt_mem;
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
50
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
51 __code init_vmmvm_impl(struct vm_impl* vm, __code next(...)) {
209
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
52 initlock(&kpt_mem.lock, "vm");
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
53 kpt_mem.freelist = NULL;
02bb0f8be908 rewrite init_vmm by cbc
tobaru
parents: 205
diff changeset
54
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
55 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
56 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
57
211
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
58 extern struct run {
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
59 struct run *next;
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
60 };
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
61
211
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
62 static void _kpt_free (char *v)
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
63 {
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
64 struct run *r;
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
65
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
66 r = (struct run*) v;
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
67 r->next = kpt_mem.freelist;
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
68 kpt_mem.freelist = r;
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
69 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
70
211
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
71 __code kpt_freerangevm_impl(struct vm_impl* vm, uint low, uint hi, __code next(...)) {
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
72
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
73 if (low < hi) {
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
74 _kpt_free((char*)low);
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
75 goto kpt_freerangevm_impl(vm, low + PT_SZ, hi, next(...));
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
76
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
77 }
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
78 goto next(...);
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
79 }
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
80 __code kpt_allocvm_impl(struct vm_impl* vm, __code next(...)) {
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
81 acquire(&kpt_mem.lock);
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
82
212
6e03cee9733e can use r
tobaru
parents: 211
diff changeset
83 goto kpt_alloc_check_impl(vm_impl, next(...));
211
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
84
66db83ec1ec2 kpt_alloc_check_impl and freerange
tobaru
parents: 209
diff changeset
85 goto next(...);
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
86 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
87
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
88 typedef struct proc proc;
214
2ecf1e09e981 allocuvm_loop and return
tobaru
parents: 212
diff changeset
89 __code switchuvmvm_impl(struct vm_impl* vm , struct proc* p, __code next(...)) { //:skip
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
90
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
91 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
92 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
93
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
94 __code init_inituvmvm_impl(struct vm_impl* vm, pde_t* pgdir, char* init, uint sz, __code next(...)) { //:skip
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
95
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
96 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
97 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
98
205
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
99 __code loaduvmvm_impl(struct vm_impl* vm, pde_t* pgdir, char* addr, struct inode* ip, uint offset, uint sz, __code next(...)) {
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
100 vm->pgdir = pgdir;
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
101 vm->addr = addr;
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
102 vm->ip = ip;
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
103 vm->offset = offset;
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
104 vm->sz = sz;
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
105
3cac4139b31d send arg at vm_impl
tobaru
parents: 204
diff changeset
106 goto loaduvm_ptesize_checkvm_impl(vm, next);
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
107 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
108
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
109 __code allocuvmvm_impl(struct vm_impl* vm, pde_t* pgdir, uint oldsz, uint newsz, __code next(...)) {
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
110
214
2ecf1e09e981 allocuvm_loop and return
tobaru
parents: 212
diff changeset
111 goto allocuvm_check_newszvm_impl(vm, pgdir, oldsz, newsz, next(...));
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
112 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
113
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
114 __code clearpteuvm_impl(struct vm_impl* vm, pde_t* pgdir, char* uva, __code next(...)) {
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
115
216
0f1700bd5cff cleapteu
tobaru
parents: 214
diff changeset
116 goto clearpteu_check_ptevm_impl(vm, pgdir, uva, next(...);
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
117 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
118
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
119 __code copyuvmvm_impl(struct vm_impl* vm, pde_t* pgdir, uint sz, __code next(...)) {
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
120
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
121 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
122 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
123
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
124 __code uva2kavm_impl(struct vm_impl* vm, pde_t* pgdir, char* uva, __code next(...)) {
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
125
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
126 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
127 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
128
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
129 __code copyoutvm_impl(struct vm_impl* vm, pde_t* pgdir, uint va, void* pp, uint len, __code next(...)) {
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
130
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
131 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
132 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
133
200
1301727600cc success build
anatofuz
parents: 197
diff changeset
134 __code pagind_intvm_impl(struct vm_impl* vm, uint phy_low, uint phy_hi, __code next(...)) {
195
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
135
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
136 goto next(...);
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
137 }
14aa35b56347 add page table interface
tobaru
parents:
diff changeset
138