1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

bare: add mm_alloc, mm_free

also split errno from return value in existing Linux syscall wrappers
update applicable syscall wrapper checks
This commit is contained in:
bogen85
2019-11-29 01:14:17 -06:00
committed by Alexander Medvednikov
parent 52d25336db
commit 729f9c3391
4 changed files with 245 additions and 48 deletions

View File

@@ -1,7 +1,7 @@
module main
__global fd [2]int
__global buffer [16]byte
__global buffer [128]byte
const (
sample_text_file1 = ""
@@ -36,20 +36,22 @@ fn check_read_write_pipe() {
a := sys_pipe(intptr(fd))
assert a != -1
assert a == .enoerror
assert fd[0] != -1
assert fd[1] != -1
test_data := "test_data"
b := test_data.len + 1
mut c := sys_write (fd[1], test_data.str, u64(b))
c1, e1 := sys_write (fd[1], test_data.str, u64(b))
assert c == b
assert e1 == .enoerror
assert c1 == b
c = sys_read(fd[0], byteptr(buffer), u64(b))
c2, e2 := sys_read(fd[0], byteptr(buffer), u64(b))
assert c == b
assert e2 == .enoerror
assert c2 == b
assert buffer[b-1] == 0
@@ -57,10 +59,10 @@ fn check_read_write_pipe() {
assert test_data[i] == buffer[i]
}
assert 0 == sys_close(fd[0])
assert 0 == sys_close(fd[1])
assert sys_close(fd[0]) == .enoerror
assert sys_close(fd[1]) == .enoerror
assert 0 != sys_close(-1)
assert sys_close(-1) == .ebadf
println ("pipe read/write passed")
}
@@ -80,12 +82,13 @@ fn check_read_file() {
assert fd > 0
assert ec == .enoerror
n := sample_text.len
c := sys_read(fd, buffer, u64(n*2))
c, e := sys_read(fd, buffer, u64(n*2))
assert e == .enoerror
assert c == n
for i in 0..n {
assert sample_text[i] == buffer[i]
}
assert 0 == sys_close(fd)
assert sys_close(fd) == .enoerror
println("read file passed")
}
@@ -112,11 +115,100 @@ fn check_print() {
}
*/
fn check_munmap_fail() {
println ("checking 'munmap fail'")
ec := sys_munmap(-16384,8192)
assert ec == .einval
//es := i64_tos(buffer2,80,int(ec),16)
//println(es)
println ("'munmap fail' check passed")
}
fn check_mmap_one_page() {
println ("checking check_mmap_one_page")
mp := int(mm_prot.prot_read) | int(mm_prot.prot_write)
mf := int(map_flags.map_private) | int(map_flags.map_anonymous)
mut a, e := sys_mmap(0, u64(linux_mem.page_size), mm_prot(mp), map_flags(mf), -1, 0)
assert e == .enoerror
assert a != byteptr(-1)
for i in 0..int(linux_mem.page_size) {
b := i & 0xFF
a[i] = b
assert a[i] == b
}
ec := sys_munmap(a, u64(linux_mem.page_size))
assert ec == .enoerror
println ("check_mmap_one_page passed")
}
fn check_mm_pages() {
println ("checking check_mm_pages")
for i in 0 .. int(linux_mem.page_size)-4 {
assert u32(1) == mm_pages(u64(i))
}
for i in int(linux_mem.page_size)-3 .. (int(linux_mem.page_size)*2)-4 {
assert u32(2) == mm_pages(u64(i))
}
for i in (int(linux_mem.page_size)*2)-3 .. (int(linux_mem.page_size)*3)-4 {
assert u32(3) == mm_pages(u64(i))
}
println ("check_mm_pages passed")
}
//pub fn mm_alloc(size u64) (voidptr, errno)
fn check_mm_alloc() {
println ("checking check_mm_alloc")
for i in 1 .. 2000 {
size := u64(i*1000)
pages := mm_pages(size)
mut a, e := mm_alloc(size)
//ads := i64_tos(buffer,80,i64(a),16)
//println(ads)
//es := i64_tos(buffer,80,i64(e),16)
//println(es)
assert e == .enoerror
ap := intptr(a-4)
assert *ap == int(pages)
assert e == .enoerror
assert !isnil(a)
if (i%111) == 0 {
for j in 0 .. int(size) {
b := j & 0xFF
a[j] = b
assert b == int(a[j])
}
}
mfa := mm_free(a)
//mfas := i64_tos(buffer,80,i64(mfa),16)
//println(mfas)
assert mfa == .enoerror
}
println ("mm_alloc passed")
}
fn main() {
check_read_write_pipe()
check_read_file()
// check_print()
check_open_file_fail()
check_munmap_fail()
check_mmap_one_page()
check_mm_pages()
check_mm_alloc()
sys_exit(0)
}