2019-06-23 04:21:30 +02:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
2019-06-22 20:20:28 +02:00
|
|
|
module builtin
|
|
|
|
|
2019-12-11 19:42:22 +01:00
|
|
|
__global g_m2_buf byteptr
|
2019-12-11 16:41:25 +01:00
|
|
|
__global g_m2_ptr byteptr
|
|
|
|
|
2019-10-12 00:17:37 +02:00
|
|
|
fn init() {
|
2019-12-05 09:08:41 +01:00
|
|
|
$if windows {
|
2019-11-06 21:04:40 +01:00
|
|
|
if is_atty(0) > 0 {
|
2019-10-10 19:08:36 +02:00
|
|
|
C._setmode(C._fileno(C.stdin), C._O_U16TEXT)
|
2019-12-19 21:52:45 +01:00
|
|
|
}
|
|
|
|
else {
|
2019-12-05 09:08:41 +01:00
|
|
|
C._setmode(C._fileno(C.stdin), C._O_U8TEXT)
|
2019-10-10 19:08:36 +02:00
|
|
|
}
|
|
|
|
C._setmode(C._fileno(C.stdout), C._O_U8TEXT)
|
|
|
|
C.SetConsoleMode(C.GetStdHandle(C.STD_OUTPUT_HANDLE), C.ENABLE_PROCESSED_OUTPUT | 0x0004) // ENABLE_VIRTUAL_TERMINAL_PROCESSING
|
2019-12-19 21:52:45 +01:00
|
|
|
C.setbuf(C.stdout, 0)
|
2019-10-10 19:08:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-23 10:12:09 +02:00
|
|
|
pub fn exit(code int) {
|
2019-06-23 10:15:30 +02:00
|
|
|
C.exit(code)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// isnil returns true if an object is nil (only for C objects).
|
|
|
|
pub fn isnil(v voidptr) bool {
|
|
|
|
return v == 0
|
|
|
|
}
|
|
|
|
|
2019-12-19 21:52:45 +01:00
|
|
|
fn on_panic(f fn(int)int) {
|
2019-06-22 20:20:28 +02:00
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2019-08-27 22:29:13 +02:00
|
|
|
pub fn print_backtrace_skipping_top_frames(skipframes int) {
|
2019-11-13 09:05:06 +01:00
|
|
|
$if windows {
|
|
|
|
$if msvc {
|
2019-12-19 21:52:45 +01:00
|
|
|
if print_backtrace_skipping_top_frames_msvc(skipframes) {
|
|
|
|
return
|
|
|
|
}
|
2019-11-10 17:34:53 +01:00
|
|
|
}
|
2019-11-13 09:05:06 +01:00
|
|
|
$if mingw {
|
2019-12-19 21:52:45 +01:00
|
|
|
if print_backtrace_skipping_top_frames_mingw(skipframes) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} $else {
|
|
|
|
if print_backtrace_skipping_top_frames_nix(skipframes) {
|
|
|
|
return
|
2019-11-13 09:05:06 +01:00
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-09-03 08:54:39 +02:00
|
|
|
println('print_backtrace_skipping_top_frames is not implemented on this platform for now...\n')
|
2019-08-27 22:29:13 +02:00
|
|
|
}
|
2019-10-25 16:59:41 +02:00
|
|
|
|
2019-12-19 21:52:45 +01:00
|
|
|
pub fn print_backtrace() {
|
2019-08-27 22:29:13 +02:00
|
|
|
// at the time of backtrace_symbols_fd call, the C stack would look something like this:
|
|
|
|
// 1 frame for print_backtrace_skipping_top_frames
|
|
|
|
// 1 frame for print_backtrace itself
|
|
|
|
// ... print the rest of the backtrace frames ...
|
|
|
|
// => top 2 frames should be skipped, since they will not be informative to the developer
|
|
|
|
print_backtrace_skipping_top_frames(2)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-07-30 15:08:14 +02:00
|
|
|
// replaces panic when -debug arg is passed
|
2019-12-19 21:52:45 +01:00
|
|
|
fn panic_debug(line_no int, file, mod, fn_name, s string) {
|
2019-07-30 15:08:14 +02:00
|
|
|
println('================ V panic ================')
|
|
|
|
println(' module: $mod')
|
|
|
|
println(' function: ${fn_name}()')
|
|
|
|
println(' file: $file')
|
|
|
|
println(' line: ' + line_no.str())
|
|
|
|
println(' message: $s')
|
|
|
|
println('=========================================')
|
2019-08-27 22:29:13 +02:00
|
|
|
print_backtrace_skipping_top_frames(1)
|
2019-07-30 15:08:14 +02:00
|
|
|
C.exit(1)
|
|
|
|
}
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
pub fn panic(s string) {
|
2019-06-23 10:01:55 +02:00
|
|
|
println('V panic: $s')
|
2019-06-22 20:20:28 +02:00
|
|
|
print_backtrace()
|
|
|
|
C.exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn eprintln(s string) {
|
|
|
|
if isnil(s.str) {
|
|
|
|
panic('eprintln(NIL)')
|
2019-10-04 14:48:09 +02:00
|
|
|
}
|
2019-11-28 09:46:52 +01:00
|
|
|
$if !windows {
|
|
|
|
C.fflush(stdout)
|
2019-09-28 13:17:16 +02:00
|
|
|
C.fflush(stderr)
|
2019-11-25 11:54:56 +01:00
|
|
|
C.fprintf(stderr, '%.*s\n', s.len, s.str)
|
|
|
|
C.fflush(stderr)
|
|
|
|
return
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
// TODO issues with stderr and cross compiling for Linux
|
2019-09-28 13:17:16 +02:00
|
|
|
println(s)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-12-28 11:02:06 +01:00
|
|
|
pub fn eprint(s string) {
|
|
|
|
if isnil(s.str) {
|
|
|
|
panic('eprint(NIL)')
|
|
|
|
}
|
|
|
|
$if !windows {
|
|
|
|
C.fflush(stdout)
|
|
|
|
C.fflush(stderr)
|
|
|
|
C.fprintf(stderr, '%.*s', s.len, s.str)
|
|
|
|
C.fflush(stderr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
print(s)
|
|
|
|
}
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
pub fn print(s string) {
|
2019-07-24 12:16:45 +02:00
|
|
|
$if windows {
|
|
|
|
C.wprintf(s.to_wide())
|
|
|
|
} $else {
|
|
|
|
C.printf('%.*s', s.len, s.str)
|
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-12-19 21:52:45 +01:00
|
|
|
__global total_m i64=0
|
|
|
|
__global nr_mallocs int=0
|
2019-12-11 16:41:25 +01:00
|
|
|
|
2019-10-20 19:29:24 +02:00
|
|
|
[unsafe_fn]
|
2019-06-22 20:20:28 +02:00
|
|
|
pub fn malloc(n int) byteptr {
|
2019-12-16 19:29:32 +01:00
|
|
|
if n <= 0 {
|
2019-12-16 20:22:04 +01:00
|
|
|
panic('malloc(<=0)')
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-12-14 00:46:55 +01:00
|
|
|
$if prealloc {
|
2019-12-11 16:41:25 +01:00
|
|
|
res := g_m2_ptr
|
|
|
|
g_m2_ptr += n
|
|
|
|
nr_mallocs++
|
|
|
|
return res
|
|
|
|
} $else {
|
|
|
|
ptr := C.malloc(n)
|
|
|
|
if ptr == 0 {
|
|
|
|
panic('malloc($n) failed')
|
|
|
|
}
|
|
|
|
return ptr
|
2019-12-14 00:46:55 +01:00
|
|
|
}
|
2019-12-19 21:52:45 +01:00
|
|
|
/*
|
2019-09-09 15:22:39 +02:00
|
|
|
TODO
|
2019-06-22 20:20:28 +02:00
|
|
|
#ifdef VPLAY
|
|
|
|
if n > 10000 {
|
|
|
|
panic('allocating more than 10 KB is not allowed in the playground')
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef DEBUG_ALLOC
|
2019-06-27 19:02:47 +02:00
|
|
|
total_m += n
|
|
|
|
println('\n\n\nmalloc($n) total=$total_m')
|
2019-06-22 20:20:28 +02:00
|
|
|
print_backtrace()
|
|
|
|
#endif
|
2019-09-09 15:22:39 +02:00
|
|
|
*/
|
2019-12-19 21:52:45 +01:00
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn calloc(n int) byteptr {
|
2019-12-16 20:22:04 +01:00
|
|
|
if n <= 0 {
|
|
|
|
panic('calloc(<=0)')
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-06-24 08:06:38 +02:00
|
|
|
return C.calloc(n, 1)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-10-20 19:29:24 +02:00
|
|
|
[unsafe_fn]
|
2019-07-15 22:56:10 +02:00
|
|
|
pub fn free(ptr voidptr) {
|
|
|
|
C.free(ptr)
|
|
|
|
}
|
|
|
|
|
2019-10-31 11:08:01 +01:00
|
|
|
pub fn memdup(src voidptr, sz int) voidptr {
|
2019-06-22 20:20:28 +02:00
|
|
|
mem := malloc(sz)
|
|
|
|
return C.memcpy(mem, src, sz)
|
|
|
|
}
|
|
|
|
|
2019-09-09 15:22:39 +02:00
|
|
|
fn v_ptr_free(ptr voidptr) {
|
|
|
|
C.free(ptr)
|
2019-10-10 19:08:36 +02:00
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
|
2019-11-06 21:04:40 +01:00
|
|
|
pub fn is_atty(fd int) int {
|
2019-10-10 19:08:36 +02:00
|
|
|
$if windows {
|
2019-11-16 00:30:50 +01:00
|
|
|
mut mode := u32(0)
|
|
|
|
osfh := voidptr(C._get_osfhandle(fd))
|
|
|
|
C.GetConsoleMode(osfh, voidptr(&mode))
|
|
|
|
return int(mode)
|
2019-10-10 19:08:36 +02:00
|
|
|
} $else {
|
2019-11-06 21:04:40 +01:00
|
|
|
return C.isatty(fd)
|
2019-10-10 19:08:36 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-19 21:52:45 +01:00
|
|
|
|
2019-12-26 07:55:34 +01:00
|
|
|
/*
|
|
|
|
fn C.va_start()
|
|
|
|
fn C.va_end()
|
|
|
|
fn C.vsnprintf() int
|
|
|
|
fn C.vsprintf() int
|
|
|
|
|
|
|
|
pub fn str2_(fmt charptr, ...) string {
|
|
|
|
argptr := C.va_list{}
|
|
|
|
C.va_start(argptr, fmt)
|
|
|
|
len := C.vsnprintf(0, 0, fmt, argptr) + 1
|
|
|
|
C.va_end(argptr)
|
|
|
|
buf := malloc(len)
|
|
|
|
C.va_start(argptr, fmt)
|
|
|
|
C.vsprintf(charptr(buf), fmt, argptr)
|
|
|
|
C.va_end(argptr)
|
|
|
|
//#ifdef DEBUG_ALLOC
|
|
|
|
// puts("_STR:");
|
|
|
|
// puts(buf);
|
|
|
|
//#endif
|
|
|
|
return tos2(buf)
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
|