2020-12-15 08:41:02 +01:00
|
|
|
module builtin
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
type FnExitCb = fn ()
|
|
|
|
|
2020-12-15 08:41:02 +01:00
|
|
|
fn C.atexit(f FnExitCb) int
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// exit terminates execution immediately and returns exit `code` to the shell.
|
2020-12-15 08:41:02 +01:00
|
|
|
pub fn exit(code int) {
|
|
|
|
C.exit(code)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// panic_debug private function that V uses for panics, -cg/-g is passed
|
2020-12-15 08:41:02 +01:00
|
|
|
// recent versions of tcc print nicer backtraces automatically
|
|
|
|
// NB: the duplication here is because tcc_backtrace should be called directly
|
|
|
|
// inside the panic functions.
|
|
|
|
fn panic_debug(line_no int, file string, mod string, fn_name string, s string) {
|
|
|
|
// NB: the order here is important for a stabler test output
|
|
|
|
// module is less likely to change than function, etc...
|
|
|
|
// During edits, the line number will change most frequently,
|
|
|
|
// so it is last
|
|
|
|
eprintln('================ V panic ================')
|
|
|
|
eprintln(' module: $mod')
|
|
|
|
eprintln(' function: ${fn_name}()')
|
|
|
|
eprintln(' message: $s')
|
2021-03-16 17:46:11 +01:00
|
|
|
eprintln(' file: $file:$line_no')
|
2020-12-15 08:41:02 +01:00
|
|
|
eprintln('=========================================')
|
|
|
|
$if exit_after_panic_message ? {
|
|
|
|
C.exit(1)
|
|
|
|
} $else {
|
|
|
|
$if no_backtrace ? {
|
|
|
|
C.exit(1)
|
|
|
|
} $else {
|
|
|
|
$if tinyc {
|
|
|
|
$if panics_break_into_debugger ? {
|
|
|
|
break_if_debugger_attached()
|
|
|
|
} $else {
|
|
|
|
C.tcc_backtrace('Backtrace')
|
|
|
|
}
|
|
|
|
C.exit(1)
|
|
|
|
}
|
|
|
|
print_backtrace_skipping_top_frames(1)
|
|
|
|
$if panics_break_into_debugger ? {
|
|
|
|
break_if_debugger_attached()
|
|
|
|
}
|
|
|
|
C.exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-24 12:16:36 +01:00
|
|
|
pub fn panic_optional_not_set(s string) {
|
|
|
|
panic('optional not set ($s)')
|
|
|
|
}
|
|
|
|
|
2020-12-15 08:41:02 +01:00
|
|
|
// panic prints a nice error message, then exits the process with exit code of 1.
|
|
|
|
// It also shows a backtrace on most platforms.
|
|
|
|
pub fn panic(s string) {
|
|
|
|
eprintln('V panic: $s')
|
|
|
|
$if exit_after_panic_message ? {
|
|
|
|
C.exit(1)
|
|
|
|
} $else {
|
|
|
|
$if no_backtrace ? {
|
|
|
|
C.exit(1)
|
|
|
|
} $else {
|
|
|
|
$if tinyc {
|
|
|
|
$if panics_break_into_debugger ? {
|
|
|
|
break_if_debugger_attached()
|
|
|
|
} $else {
|
|
|
|
C.tcc_backtrace('Backtrace')
|
|
|
|
}
|
|
|
|
C.exit(1)
|
|
|
|
}
|
|
|
|
print_backtrace_skipping_top_frames(1)
|
|
|
|
$if panics_break_into_debugger ? {
|
|
|
|
break_if_debugger_attached()
|
|
|
|
}
|
|
|
|
C.exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// eprintln prints a message with a line end, to stderr. Both stderr and stdout are flushed.
|
|
|
|
pub fn eprintln(s string) {
|
2021-01-14 10:41:52 +01:00
|
|
|
C.fflush(C.stdout)
|
|
|
|
C.fflush(C.stderr)
|
2020-12-15 08:41:02 +01:00
|
|
|
// eprintln is used in panics, so it should not fail at all
|
2021-03-05 18:12:42 +01:00
|
|
|
$if android {
|
|
|
|
if s.str == 0 {
|
|
|
|
C.fprintf(C.stderr, c'eprintln(NIL)\n')
|
|
|
|
} else {
|
|
|
|
C.fprintf(C.stderr, c'%.*s\n', s.len, s.str)
|
|
|
|
}
|
|
|
|
} $else {
|
|
|
|
if s.str == 0 {
|
|
|
|
C.write(2, c'eprintln(NIL)\n', 14)
|
|
|
|
} else {
|
|
|
|
C.write(2, s.str, s.len)
|
|
|
|
C.write(2, c'\n', 1)
|
|
|
|
}
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
C.fflush(C.stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// eprint prints a message to stderr. Both stderr and stdout are flushed.
|
|
|
|
pub fn eprint(s string) {
|
|
|
|
C.fflush(C.stdout)
|
|
|
|
C.fflush(C.stderr)
|
2021-03-05 18:12:42 +01:00
|
|
|
$if android {
|
|
|
|
if s.str == 0 {
|
|
|
|
C.fprintf(C.stderr, c'eprint(NIL)')
|
|
|
|
} else {
|
|
|
|
C.fprintf(C.stderr, c'%.*s', s.len, s.str)
|
|
|
|
}
|
|
|
|
} $else {
|
|
|
|
if s.str == 0 {
|
|
|
|
C.write(2, c'eprint(NIL)', 11)
|
|
|
|
} else {
|
|
|
|
C.write(2, s.str, s.len)
|
|
|
|
}
|
2021-01-14 10:41:52 +01:00
|
|
|
}
|
2020-12-15 08:41:02 +01:00
|
|
|
C.fflush(C.stderr)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// print prints a message to stdout. Unlike `println` stdout is not automatically flushed.
|
|
|
|
// A call to `flush()` will flush the output buffer to stdout.
|
2020-12-15 08:41:02 +01:00
|
|
|
pub fn print(s string) {
|
2021-03-05 18:12:42 +01:00
|
|
|
$if android {
|
|
|
|
C.fprintf(C.stdout, c'%.*s', s.len, s.str)
|
|
|
|
} $else {
|
|
|
|
C.write(1, s.str, s.len)
|
|
|
|
}
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
/*
|
|
|
|
#include "@VROOT/vlib/darwin/darwin.m"
|
|
|
|
fn C.nsstring2(s string) voidptr
|
|
|
|
fn C.NSLog(x voidptr)
|
|
|
|
#include <asl.h>
|
|
|
|
fn C.asl_log(voidptr, voidptr, int, charptr)
|
|
|
|
*/
|
|
|
|
// println prints a message with a line end, to stdout. stdout is flushed.
|
2020-12-15 08:41:02 +01:00
|
|
|
pub fn println(s string) {
|
|
|
|
$if windows {
|
|
|
|
print(s)
|
|
|
|
print('\n')
|
|
|
|
} $else {
|
|
|
|
// For debugging .app applications (no way to read stdout) so that it's printed to macOS Console
|
|
|
|
/*
|
|
|
|
$if macos {
|
|
|
|
C.asl_log(0, 0, C.ASL_LEVEL_ERR, s.str)
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
// TODO: a syscall sys_write on linux works, except for the v repl.
|
|
|
|
// Probably it is a stdio buffering issue. Needs more testing...
|
|
|
|
// $if linux {
|
|
|
|
// $if !android {
|
|
|
|
// snl := s + '\n'
|
|
|
|
// C.syscall(/* sys_write */ 1, /* stdout_value */ 1, snl.str, s.len+1)
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
C.printf('%.*s\n', s.len, s.str)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// malloc dynamically allocates a `n` bytes block of memory on the heap.
|
|
|
|
// malloc returns a `byteptr` pointing to the memory address of the allocated space.
|
|
|
|
// unlike the `calloc` family of functions - malloc will not zero the memory block.
|
2020-12-15 08:41:02 +01:00
|
|
|
[unsafe]
|
2021-04-04 16:43:32 +02:00
|
|
|
pub fn malloc(n int) &byte {
|
2020-12-15 08:41:02 +01:00
|
|
|
if n <= 0 {
|
2021-01-14 10:41:52 +01:00
|
|
|
panic('> V malloc(<=0)')
|
|
|
|
}
|
|
|
|
$if vplayground ? {
|
|
|
|
if n > 10000 {
|
|
|
|
panic('allocating more than 10 KB is not allowed in the playground')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$if trace_malloc ? {
|
|
|
|
total_m += n
|
2021-04-04 16:05:06 +02:00
|
|
|
C.fprintf(C.stderr, c'v_malloc %6d total %10d\n', n, total_m)
|
2021-01-14 10:41:52 +01:00
|
|
|
// print_backtrace()
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
2021-04-04 16:43:32 +02:00
|
|
|
mut res := &byte(0)
|
2020-12-15 08:41:02 +01:00
|
|
|
$if prealloc {
|
2021-01-14 10:41:52 +01:00
|
|
|
res = g_m2_ptr
|
2020-12-15 08:41:02 +01:00
|
|
|
unsafe {
|
|
|
|
g_m2_ptr += n
|
|
|
|
}
|
|
|
|
nr_mallocs++
|
|
|
|
} $else {
|
2021-03-20 14:16:36 +01:00
|
|
|
$if gcboehm ? {
|
2021-03-26 15:44:45 +01:00
|
|
|
unsafe {
|
2021-03-27 18:59:51 +01:00
|
|
|
res = C.GC_MALLOC(n)
|
2021-03-26 15:44:45 +01:00
|
|
|
}
|
2021-03-20 14:16:36 +01:00
|
|
|
} $else {
|
|
|
|
res = unsafe { C.malloc(n) }
|
|
|
|
}
|
2021-01-14 10:41:52 +01:00
|
|
|
if res == 0 {
|
2020-12-15 08:41:02 +01:00
|
|
|
panic('malloc($n) failed')
|
|
|
|
}
|
|
|
|
}
|
2021-03-14 17:29:00 +01:00
|
|
|
$if debug_malloc ? {
|
|
|
|
// Fill in the memory with something != 0, so it is easier to spot
|
|
|
|
// when the calling code wrongly relies on it being zeroed.
|
2021-03-15 16:37:06 +01:00
|
|
|
unsafe { C.memset(res, 0x88, n) }
|
2021-03-14 17:29:00 +01:00
|
|
|
}
|
2021-01-14 10:41:52 +01:00
|
|
|
return res
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
/*
|
|
|
|
#include <malloc/malloc.h>
|
|
|
|
fn malloc_size(b byteptr) int
|
|
|
|
*/
|
|
|
|
// v_realloc resizes the memory block `b` with `n` bytes.
|
2021-01-14 10:41:52 +01:00
|
|
|
// The `b byteptr` must be a pointer to an existing memory block
|
|
|
|
// previously allocated with `malloc`, `v_calloc` or `vcalloc`.
|
2021-03-14 17:29:00 +01:00
|
|
|
// Please, see also realloc_data, and use it instead if possible.
|
2020-12-15 08:41:02 +01:00
|
|
|
[unsafe]
|
2021-04-04 16:43:32 +02:00
|
|
|
pub fn v_realloc(b &byte, n int) &byte {
|
|
|
|
mut new_ptr := &byte(0)
|
2020-12-15 08:41:02 +01:00
|
|
|
$if prealloc {
|
|
|
|
unsafe {
|
2021-01-14 10:41:52 +01:00
|
|
|
new_ptr = malloc(n)
|
|
|
|
C.memcpy(new_ptr, b, n)
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
} $else {
|
2021-03-20 14:16:36 +01:00
|
|
|
$if gcboehm ? {
|
|
|
|
new_ptr = unsafe { C.GC_REALLOC(b, n) }
|
|
|
|
} $else {
|
|
|
|
new_ptr = unsafe { C.realloc(b, n) }
|
|
|
|
}
|
2021-03-14 13:54:35 +01:00
|
|
|
if new_ptr == 0 {
|
|
|
|
panic('realloc($n) failed')
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
}
|
2021-01-14 10:41:52 +01:00
|
|
|
return new_ptr
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
|
2021-03-14 13:54:35 +01:00
|
|
|
// realloc_data resizes the memory block pointed by `old_data` to `new_size`
|
|
|
|
// bytes. `old_data` must be a pointer to an existing memory block, previously
|
|
|
|
// allocated with `malloc`, `v_calloc` or `vcalloc`, of size `old_data`.
|
|
|
|
// realloc_data returns a pointer to the new location of the block.
|
|
|
|
// NB: if you know the old data size, it is preferable to call `realloc_data`,
|
|
|
|
// instead of `v_realloc`, at least during development, because `realloc_data`
|
|
|
|
// can make debugging easier, when you compile your program with
|
|
|
|
// `-d debug_realloc`.
|
|
|
|
[unsafe]
|
2021-04-04 16:43:32 +02:00
|
|
|
pub fn realloc_data(old_data &byte, old_size int, new_size int) &byte {
|
2021-03-14 13:54:35 +01:00
|
|
|
$if prealloc {
|
|
|
|
unsafe {
|
|
|
|
new_ptr := malloc(new_size)
|
2021-03-14 15:12:18 +01:00
|
|
|
min_size := if old_size < new_size { old_size } else { new_size }
|
|
|
|
C.memcpy(new_ptr, old_data, min_size)
|
2021-03-14 13:54:35 +01:00
|
|
|
return new_ptr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$if debug_realloc ? {
|
|
|
|
// NB: this is slower, but helps debugging memory problems.
|
|
|
|
// The main idea is to always force reallocating:
|
|
|
|
// 1) allocate a new memory block
|
|
|
|
// 2) copy the old to the new
|
|
|
|
// 3) fill the old with 0x57 (`W`)
|
|
|
|
// 4) free the old block
|
|
|
|
// => if there is still a pointer to the old block somewhere
|
|
|
|
// it will point to memory that is now filled with 0x57.
|
|
|
|
unsafe {
|
|
|
|
new_ptr := malloc(new_size)
|
2021-03-14 15:12:18 +01:00
|
|
|
min_size := if old_size < new_size { old_size } else { new_size }
|
|
|
|
C.memcpy(new_ptr, old_data, min_size)
|
2021-03-14 13:54:35 +01:00
|
|
|
C.memset(old_data, 0x57, old_size)
|
2021-03-20 14:16:36 +01:00
|
|
|
free(old_data)
|
2021-03-14 13:54:35 +01:00
|
|
|
return new_ptr
|
|
|
|
}
|
|
|
|
}
|
2021-04-04 16:43:32 +02:00
|
|
|
mut nptr := &byte(0)
|
2021-03-20 14:16:36 +01:00
|
|
|
$if gcboehm ? {
|
|
|
|
nptr = unsafe { C.GC_REALLOC(old_data, new_size) }
|
|
|
|
} $else {
|
|
|
|
nptr = unsafe { C.realloc(old_data, new_size) }
|
|
|
|
}
|
2021-03-14 13:54:35 +01:00
|
|
|
if nptr == 0 {
|
2021-03-14 15:12:18 +01:00
|
|
|
panic('realloc_data($old_data, $old_size, $new_size) failed')
|
2021-03-14 13:54:35 +01:00
|
|
|
}
|
|
|
|
return nptr
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// vcalloc dynamically allocates a zeroed `n` bytes block of memory on the heap.
|
|
|
|
// vcalloc returns a `byteptr` pointing to the memory address of the allocated space.
|
|
|
|
// Unlike `v_calloc` vcalloc checks for negative values given in `n`.
|
2021-04-04 16:43:32 +02:00
|
|
|
pub fn vcalloc(n int) &byte {
|
2020-12-15 08:41:02 +01:00
|
|
|
if n < 0 {
|
|
|
|
panic('calloc(<=0)')
|
|
|
|
} else if n == 0 {
|
2021-04-04 16:43:32 +02:00
|
|
|
return &byte(0)
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
2021-03-20 14:16:36 +01:00
|
|
|
$if gcboehm ? {
|
2021-04-04 16:43:32 +02:00
|
|
|
return &byte(C.GC_MALLOC(n))
|
2021-03-20 14:16:36 +01:00
|
|
|
} $else {
|
|
|
|
return C.calloc(1, n)
|
|
|
|
}
|
2020-12-15 08:41:02 +01:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// free allows for manually freeing memory allocated at the address `ptr`.
|
2020-12-15 08:41:02 +01:00
|
|
|
[unsafe]
|
|
|
|
pub fn free(ptr voidptr) {
|
|
|
|
$if prealloc {
|
|
|
|
return
|
|
|
|
}
|
2021-03-20 14:16:36 +01:00
|
|
|
$if gcboehm ? {
|
2021-03-25 16:52:33 +01:00
|
|
|
// It is generally better to leave it to Boehm's gc to free things.
|
2021-03-25 08:15:01 +01:00
|
|
|
// Calling C.GC_FREE(ptr) was tried initially, but does not work
|
|
|
|
// well with programs that do manual management themselves.
|
2021-03-25 16:52:33 +01:00
|
|
|
//
|
|
|
|
// The exception is doing leak detection for manual memory management:
|
|
|
|
$if gcboehm_leak ? {
|
|
|
|
C.GC_FREE(ptr)
|
|
|
|
}
|
2021-03-20 14:16:36 +01:00
|
|
|
return
|
|
|
|
}
|
2020-12-15 08:41:02 +01:00
|
|
|
C.free(ptr)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// memdup dynamically allocates a `sz` bytes block of memory on the heap
|
|
|
|
// memdup then copies the contents of `src` into the allocated space and
|
|
|
|
// returns a pointer to the newly allocated space.
|
2021-02-14 19:31:42 +01:00
|
|
|
[unsafe]
|
2020-12-15 08:41:02 +01:00
|
|
|
pub fn memdup(src voidptr, sz int) voidptr {
|
|
|
|
if sz == 0 {
|
|
|
|
return vcalloc(1)
|
|
|
|
}
|
|
|
|
unsafe {
|
|
|
|
mem := malloc(sz)
|
|
|
|
return C.memcpy(mem, src, sz)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:31:00 +01:00
|
|
|
// is_atty returns 1 if the `fd` file descriptor is open and refers to a terminal
|
2020-12-15 08:41:02 +01:00
|
|
|
pub fn is_atty(fd int) int {
|
|
|
|
$if windows {
|
|
|
|
mut mode := u32(0)
|
|
|
|
osfh := voidptr(C._get_osfhandle(fd))
|
|
|
|
C.GetConsoleMode(osfh, voidptr(&mode))
|
|
|
|
return int(mode)
|
|
|
|
} $else {
|
|
|
|
return C.isatty(fd)
|
|
|
|
}
|
|
|
|
}
|
2021-02-22 13:54:24 +01:00
|
|
|
|
|
|
|
[inline]
|
|
|
|
fn v_fixed_index(i int, len int) int {
|
|
|
|
$if !no_bounds_checking ? {
|
|
|
|
if i < 0 || i >= len {
|
|
|
|
s := 'fixed array index out of range (index: $i, len: $len)'
|
|
|
|
panic(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return i
|
|
|
|
}
|