2012-12-10 17:44:02 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-06-27 15:14:04 -05:00
|
|
|
/* Foreign builtins. */
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2012-03-29 18:31:30 -05:00
|
|
|
#include "rust_sched_loop.h"
|
2011-12-30 22:46:08 -06:00
|
|
|
#include "rust_task.h"
|
2012-01-06 14:06:35 -06:00
|
|
|
#include "rust_util.h"
|
2012-02-03 17:12:18 -06:00
|
|
|
#include "rust_scheduler.h"
|
2012-02-02 18:24:32 -06:00
|
|
|
#include "sync/timer.h"
|
2013-01-10 21:03:13 -06:00
|
|
|
#include "sync/rust_thread.h"
|
2012-02-28 13:58:50 -06:00
|
|
|
#include "rust_abi.h"
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2012-04-03 12:32:26 -05:00
|
|
|
#include <time.h>
|
|
|
|
|
2012-02-07 20:55:02 -06:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <crt_externs.h>
|
|
|
|
#endif
|
|
|
|
|
2011-04-29 13:54:06 -05:00
|
|
|
#if !defined(__WIN32__)
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2012-02-09 00:08:24 -06:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
extern char **environ;
|
|
|
|
#endif
|
|
|
|
|
2012-11-29 18:21:49 -06:00
|
|
|
#ifdef __ANDROID__
|
|
|
|
time_t
|
|
|
|
timegm(struct tm *tm)
|
|
|
|
{
|
|
|
|
time_t ret;
|
|
|
|
char *tz;
|
|
|
|
|
|
|
|
tz = getenv("TZ");
|
|
|
|
setenv("TZ", "", 1);
|
|
|
|
tzset();
|
|
|
|
ret = mktime(tm);
|
|
|
|
if (tz)
|
|
|
|
setenv("TZ", tz, 1);
|
|
|
|
else
|
|
|
|
unsetenv("TZ");
|
|
|
|
tzset();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-02-07 20:55:02 -06:00
|
|
|
#if defined(__WIN32__)
|
2013-02-15 00:16:53 -06:00
|
|
|
extern "C" CDECL char**
|
2012-02-07 20:55:02 -06:00
|
|
|
rust_env_pairs() {
|
2013-02-15 00:16:53 -06:00
|
|
|
return 0;
|
2012-02-07 20:55:02 -06:00
|
|
|
}
|
|
|
|
#else
|
2013-02-15 00:16:53 -06:00
|
|
|
extern "C" CDECL char**
|
2012-02-07 20:55:02 -06:00
|
|
|
rust_env_pairs() {
|
|
|
|
#ifdef __APPLE__
|
|
|
|
char **environ = *_NSGetEnviron();
|
|
|
|
#endif
|
2013-02-15 00:16:53 -06:00
|
|
|
return environ;
|
2012-02-07 20:55:02 -06:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-17 18:31:19 -05:00
|
|
|
extern "C" CDECL void
|
|
|
|
vec_reserve_shared_actual(type_desc* ty, rust_vec_box** vp,
|
|
|
|
size_t n_elts) {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
reserve_vec_exact_shared(task, vp, n_elts * ty->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is completely misnamed.
|
2011-08-25 03:18:02 -05:00
|
|
|
extern "C" CDECL void
|
2012-05-21 20:36:52 -05:00
|
|
|
vec_reserve_shared(type_desc* ty, rust_vec_box** vp,
|
2011-10-03 20:04:43 -05:00
|
|
|
size_t n_elts) {
|
2013-02-27 14:39:11 -06:00
|
|
|
reserve_vec_exact(vp, n_elts * ty->size);
|
2011-08-25 03:18:02 -05:00
|
|
|
}
|
|
|
|
|
2013-02-19 09:06:20 -06:00
|
|
|
extern "C" CDECL size_t
|
|
|
|
rand_seed_size() {
|
|
|
|
return rng_seed_size();
|
2012-05-20 08:06:54 -05:00
|
|
|
}
|
|
|
|
|
2013-02-19 09:06:20 -06:00
|
|
|
extern "C" CDECL void
|
|
|
|
rand_gen_seed(uint8_t* dest, size_t size) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2013-02-19 09:06:20 -06:00
|
|
|
rng_gen_seed(task->kernel, dest, size);
|
2012-05-20 08:06:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void *
|
2013-02-19 09:06:20 -06:00
|
|
|
rand_new_seeded(uint8_t* seed, size_t seed_size) {
|
2012-05-20 08:06:54 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2013-02-14 02:48:40 -06:00
|
|
|
rust_rng *rng = (rust_rng *) task->malloc(sizeof(rust_rng),
|
|
|
|
"rand_new_seeded");
|
|
|
|
if (!rng) {
|
2011-07-13 15:43:35 -05:00
|
|
|
task->fail();
|
2010-07-25 23:45:09 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
2013-02-19 09:06:20 -06:00
|
|
|
rng_init(task->kernel, rng, seed, seed_size);
|
2013-02-14 02:48:40 -06:00
|
|
|
return rng;
|
2010-07-25 23:45:09 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 01:55:30 -06:00
|
|
|
extern "C" CDECL uint32_t
|
2013-02-14 02:48:40 -06:00
|
|
|
rand_next(rust_rng *rng) {
|
2013-02-14 03:11:59 -06:00
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return rng_gen_u32(task->kernel, rng);
|
2010-07-25 23:45:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2013-02-14 02:48:40 -06:00
|
|
|
rand_free(rust_rng *rng) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2013-02-14 02:48:40 -06:00
|
|
|
task->free(rng);
|
2010-07-25 23:45:09 -05:00
|
|
|
}
|
|
|
|
|
2012-03-20 18:32:25 -05:00
|
|
|
|
|
|
|
/* Debug helpers strictly to verify ABI conformance.
|
|
|
|
*
|
2012-06-21 18:44:10 -05:00
|
|
|
* FIXME (#2665): move these into a testcase when the testsuite
|
|
|
|
* understands how to have explicit C files included.
|
2012-03-20 18:32:25 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct quad {
|
|
|
|
uint64_t a;
|
|
|
|
uint64_t b;
|
|
|
|
uint64_t c;
|
|
|
|
uint64_t d;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct floats {
|
|
|
|
double a;
|
|
|
|
uint8_t b;
|
|
|
|
double c;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" quad
|
|
|
|
debug_abi_1(quad q) {
|
|
|
|
quad qq = { q.c + 1,
|
|
|
|
q.d - 1,
|
|
|
|
q.a + 1,
|
|
|
|
q.b - 1 };
|
|
|
|
return qq;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" floats
|
|
|
|
debug_abi_2(floats f) {
|
|
|
|
floats ff = { f.c + 1.0,
|
|
|
|
0xff,
|
|
|
|
f.a - 1.0 };
|
|
|
|
return ff;
|
|
|
|
}
|
|
|
|
|
2011-10-03 20:04:43 -05:00
|
|
|
/* Debug builtins for std::dbg. */
|
2010-08-24 20:37:42 -05:00
|
|
|
|
|
|
|
static void
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(type_desc *t)
|
|
|
|
{
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-06-18 14:48:47 -05:00
|
|
|
LOG(task, stdlib, " size %" PRIdPTR ", align %" PRIdPTR,
|
|
|
|
t->size, t->align);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2011-10-20 05:32:43 -05:00
|
|
|
debug_tydesc(type_desc *t) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "debug_tydesc");
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(t);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2011-10-20 05:32:43 -05:00
|
|
|
debug_opaque(type_desc *t, uint8_t *front) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "debug_opaque");
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(t);
|
2013-02-13 14:41:04 -06:00
|
|
|
// Account for alignment. `front` may not indeed be the
|
|
|
|
// front byte of the passed-in argument
|
|
|
|
if (((uintptr_t)front % t->align) != 0) {
|
|
|
|
front = (uint8_t *)align_to((uintptr_t)front, (size_t)t->align);
|
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
for (uintptr_t i = 0; i < t->size; ++front, ++i) {
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, " byte %" PRIdPTR ": 0x%" PRIx8, i, *front);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2013-02-13 03:42:39 -06:00
|
|
|
debug_box(type_desc *t, rust_opaque_box *box) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "debug_box(0x%" PRIxPTR ")", box);
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(t);
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, " refcount %" PRIdPTR,
|
2011-09-02 14:21:01 -05:00
|
|
|
box->ref_count - 1); // -1 because we ref'ed for this call
|
2013-02-13 03:42:39 -06:00
|
|
|
uint8_t *data = (uint8_t *)box_body(box);
|
2010-08-24 20:37:42 -05:00
|
|
|
for (uintptr_t i = 0; i < t->size; ++i) {
|
2013-02-13 03:42:39 -06:00
|
|
|
LOG(task, stdlib, " byte %" PRIdPTR ": 0x%" PRIx8, i, data[i]);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct rust_tag {
|
|
|
|
uintptr_t discriminant;
|
|
|
|
uint8_t variant[];
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2011-10-20 05:32:43 -05:00
|
|
|
debug_tag(type_desc *t, rust_tag *tag) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-10-03 20:04:43 -05:00
|
|
|
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "debug_tag");
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(t);
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, " discriminant %" PRIdPTR, tag->discriminant);
|
2010-08-24 20:37:42 -05:00
|
|
|
|
|
|
|
for (uintptr_t i = 0; i < t->size - sizeof(tag->discriminant); ++i)
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, " byte %" PRIdPTR ": 0x%" PRIx8, i,
|
|
|
|
tag->variant[i]);
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2013-02-13 03:42:39 -06:00
|
|
|
debug_fn(type_desc *t, fn_env_pair *fn) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "debug_fn");
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(t);
|
2013-02-13 03:42:39 -06:00
|
|
|
LOG(task, stdlib, " fn at 0x%" PRIxPTR, fn->f);
|
|
|
|
LOG(task, stdlib, " env at 0x%" PRIxPTR, fn->env);
|
|
|
|
if (fn->env) {
|
|
|
|
LOG(task, stdlib, " refcount %" PRIdPTR, fn->env->ref_count);
|
2010-09-30 19:39:37 -05:00
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
}
|
|
|
|
|
2010-09-07 01:24:01 -05:00
|
|
|
extern "C" CDECL void *
|
2011-10-20 05:32:43 -05:00
|
|
|
debug_ptrcast(type_desc *from_ty,
|
2010-09-07 01:24:01 -05:00
|
|
|
type_desc *to_ty,
|
2011-10-20 05:32:43 -05:00
|
|
|
void *ptr) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "debug_ptrcast from");
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(from_ty);
|
2011-04-19 05:21:57 -05:00
|
|
|
LOG(task, stdlib, "to");
|
2011-10-20 19:06:52 -05:00
|
|
|
debug_tydesc_helper(to_ty);
|
2010-09-07 01:24:01 -05:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-12-05 19:20:59 -06:00
|
|
|
extern "C" CDECL void *
|
|
|
|
debug_get_stk_seg() {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2011-12-05 19:20:59 -06:00
|
|
|
return task->stk;
|
|
|
|
}
|
|
|
|
|
2013-02-21 00:46:26 -06:00
|
|
|
extern "C" CDECL char*
|
2011-07-12 17:14:57 -05:00
|
|
|
#if defined(__WIN32__)
|
2013-02-21 00:46:26 -06:00
|
|
|
rust_list_dir_val(WIN32_FIND_DATA* entry_ptr) {
|
|
|
|
return entry_ptr->cFileName;
|
|
|
|
}
|
2011-07-12 17:14:57 -05:00
|
|
|
#else
|
2013-02-21 00:46:26 -06:00
|
|
|
rust_list_dir_val(dirent* entry_ptr) {
|
|
|
|
return entry_ptr->d_name;
|
|
|
|
}
|
2011-07-12 17:14:57 -05:00
|
|
|
#endif
|
2011-09-01 17:51:27 -05:00
|
|
|
|
2013-02-21 00:46:26 -06:00
|
|
|
extern "C" CDECL size_t
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
rust_list_dir_wfd_size() {
|
|
|
|
return sizeof(WIN32_FIND_DATAW);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
rust_list_dir_wfd_size() {
|
|
|
|
return 0;
|
2011-07-12 17:14:57 -05:00
|
|
|
}
|
2013-02-21 00:46:26 -06:00
|
|
|
#endif
|
2011-07-12 17:14:57 -05:00
|
|
|
|
2013-02-21 00:46:26 -06:00
|
|
|
extern "C" CDECL void*
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
rust_list_dir_wfd_fp_buf(WIN32_FIND_DATAW* wfd) {
|
|
|
|
if(wfd == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return wfd->cFileName;
|
|
|
|
}
|
2012-10-02 14:19:04 -05:00
|
|
|
}
|
2013-02-21 00:46:26 -06:00
|
|
|
#else
|
|
|
|
rust_list_dir_wfd_fp_buf(void* wfd) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2012-10-02 14:19:04 -05:00
|
|
|
|
2011-03-10 08:56:51 -06:00
|
|
|
extern "C" CDECL int
|
2011-12-16 16:32:09 -06:00
|
|
|
rust_path_is_dir(char *path) {
|
2011-03-10 08:56:51 -06:00
|
|
|
struct stat buf;
|
2011-09-01 14:58:24 -05:00
|
|
|
if (stat(path, &buf)) {
|
2011-09-01 14:38:36 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2011-03-10 08:56:51 -06:00
|
|
|
return S_ISDIR(buf.st_mode);
|
|
|
|
}
|
2010-08-24 20:37:42 -05:00
|
|
|
|
2011-12-16 16:32:09 -06:00
|
|
|
extern "C" CDECL int
|
|
|
|
rust_path_exists(char *path) {
|
|
|
|
struct stat buf;
|
|
|
|
if (stat(path, &buf)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
extern "C" CDECL FILE* rust_get_stdin() {return stdin;}
|
|
|
|
extern "C" CDECL FILE* rust_get_stdout() {return stdout;}
|
2011-08-24 23:19:56 -05:00
|
|
|
extern "C" CDECL FILE* rust_get_stderr() {return stderr;}
|
2011-03-10 09:02:53 -06:00
|
|
|
|
2011-04-29 13:54:06 -05:00
|
|
|
#if defined(__WIN32__)
|
|
|
|
extern "C" CDECL void
|
2012-04-02 23:41:24 -05:00
|
|
|
get_time(int64_t *sec, int32_t *nsec) {
|
2011-04-29 13:54:06 -05:00
|
|
|
FILETIME fileTime;
|
2012-02-18 03:21:26 -06:00
|
|
|
GetSystemTimeAsFileTime(&fileTime);
|
|
|
|
|
|
|
|
// A FILETIME contains a 64-bit value representing the number of
|
|
|
|
// hectonanosecond (100-nanosecond) intervals since 1601-01-01T00:00:00Z.
|
|
|
|
// http://support.microsoft.com/kb/167296/en-us
|
|
|
|
ULARGE_INTEGER ul;
|
|
|
|
ul.LowPart = fileTime.dwLowDateTime;
|
|
|
|
ul.HighPart = fileTime.dwHighDateTime;
|
|
|
|
uint64_t ns_since_1601 = ul.QuadPart / 10;
|
|
|
|
|
2013-03-13 17:06:33 -05:00
|
|
|
const uint64_t NANOSECONDS_FROM_1601_TO_1970 = 11644473600000000ull;
|
2012-02-18 03:21:26 -06:00
|
|
|
uint64_t ns_since_1970 = ns_since_1601 - NANOSECONDS_FROM_1601_TO_1970;
|
|
|
|
*sec = ns_since_1970 / 1000000;
|
2012-04-02 23:41:24 -05:00
|
|
|
*nsec = (ns_since_1970 % 1000000) * 1000;
|
2011-04-29 13:54:06 -05:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
extern "C" CDECL void
|
2012-04-02 23:41:24 -05:00
|
|
|
get_time(int64_t *sec, int32_t *nsec) {
|
|
|
|
#ifdef __APPLE__
|
2011-04-29 13:54:06 -05:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
*sec = tv.tv_sec;
|
2012-04-02 23:41:24 -05:00
|
|
|
*nsec = tv.tv_usec * 1000;
|
|
|
|
#else
|
|
|
|
timespec ts;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ts);
|
|
|
|
*sec = ts.tv_sec;
|
|
|
|
*nsec = ts.tv_nsec;
|
|
|
|
#endif
|
2011-04-29 13:54:06 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-06-28 19:58:44 -05:00
|
|
|
extern "C" CDECL void
|
2012-02-18 03:39:42 -06:00
|
|
|
precise_time_ns(uint64_t *ns) {
|
2011-06-28 19:58:44 -05:00
|
|
|
timer t;
|
2011-07-13 14:25:36 -05:00
|
|
|
*ns = t.time_ns();
|
2011-06-28 19:58:44 -05:00
|
|
|
}
|
|
|
|
|
2012-04-03 12:32:26 -05:00
|
|
|
struct rust_tm {
|
|
|
|
int32_t tm_sec;
|
|
|
|
int32_t tm_min;
|
|
|
|
int32_t tm_hour;
|
|
|
|
int32_t tm_mday;
|
|
|
|
int32_t tm_mon;
|
|
|
|
int32_t tm_year;
|
|
|
|
int32_t tm_wday;
|
|
|
|
int32_t tm_yday;
|
|
|
|
int32_t tm_isdst;
|
|
|
|
int32_t tm_gmtoff;
|
|
|
|
rust_str *tm_zone;
|
|
|
|
int32_t tm_nsec;
|
|
|
|
};
|
|
|
|
|
|
|
|
void rust_tm_to_tm(rust_tm* in_tm, tm* out_tm) {
|
|
|
|
memset(out_tm, 0, sizeof(tm));
|
|
|
|
out_tm->tm_sec = in_tm->tm_sec;
|
|
|
|
out_tm->tm_min = in_tm->tm_min;
|
|
|
|
out_tm->tm_hour = in_tm->tm_hour;
|
|
|
|
out_tm->tm_mday = in_tm->tm_mday;
|
|
|
|
out_tm->tm_mon = in_tm->tm_mon;
|
|
|
|
out_tm->tm_year = in_tm->tm_year;
|
|
|
|
out_tm->tm_wday = in_tm->tm_wday;
|
|
|
|
out_tm->tm_yday = in_tm->tm_yday;
|
|
|
|
out_tm->tm_isdst = in_tm->tm_isdst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tm_to_rust_tm(tm* in_tm, rust_tm* out_tm, int32_t gmtoff,
|
|
|
|
const char *zone, int32_t nsec) {
|
|
|
|
out_tm->tm_sec = in_tm->tm_sec;
|
|
|
|
out_tm->tm_min = in_tm->tm_min;
|
|
|
|
out_tm->tm_hour = in_tm->tm_hour;
|
|
|
|
out_tm->tm_mday = in_tm->tm_mday;
|
|
|
|
out_tm->tm_mon = in_tm->tm_mon;
|
|
|
|
out_tm->tm_year = in_tm->tm_year;
|
|
|
|
out_tm->tm_wday = in_tm->tm_wday;
|
|
|
|
out_tm->tm_yday = in_tm->tm_yday;
|
|
|
|
out_tm->tm_isdst = in_tm->tm_isdst;
|
|
|
|
out_tm->tm_gmtoff = gmtoff;
|
|
|
|
out_tm->tm_nsec = nsec;
|
|
|
|
|
|
|
|
if (zone != NULL) {
|
|
|
|
size_t size = strlen(zone);
|
2013-02-27 14:39:11 -06:00
|
|
|
reserve_vec_exact(&out_tm->tm_zone, size + 1);
|
2012-05-21 20:36:52 -05:00
|
|
|
memcpy(out_tm->tm_zone->body.data, zone, size);
|
|
|
|
out_tm->tm_zone->body.fill = size + 1;
|
|
|
|
out_tm->tm_zone->body.data[size] = '\0';
|
2012-04-03 12:32:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
#define TZSET() _tzset()
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
|
|
|
|
#define GMTIME(clock, result) gmtime_s((result), (clock))
|
|
|
|
#define LOCALTIME(clock, result) localtime_s((result), (clock))
|
|
|
|
#define TIMEGM(result) _mkgmtime64(result)
|
|
|
|
#else
|
|
|
|
struct tm* GMTIME(const time_t *clock, tm *result) {
|
|
|
|
struct tm* t = gmtime(clock);
|
|
|
|
if (t == NULL || result == NULL) { return NULL; }
|
|
|
|
*result = *t;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
struct tm* LOCALTIME(const time_t *clock, tm *result) {
|
|
|
|
struct tm* t = localtime(clock);
|
|
|
|
if (t == NULL || result == NULL) { return NULL; }
|
|
|
|
*result = *t;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#define TIMEGM(result) mktime((result)) - _timezone
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define TZSET() tzset()
|
|
|
|
#define GMTIME(clock, result) gmtime_r((clock), (result))
|
|
|
|
#define LOCALTIME(clock, result) localtime_r((clock), (result))
|
|
|
|
#define TIMEGM(result) timegm(result)
|
|
|
|
#endif
|
|
|
|
|
2012-04-13 19:33:02 -05:00
|
|
|
extern "C" CDECL void
|
|
|
|
rust_tzset() {
|
|
|
|
TZSET();
|
|
|
|
}
|
|
|
|
|
2012-04-03 12:32:26 -05:00
|
|
|
extern "C" CDECL void
|
2013-03-08 19:44:37 -06:00
|
|
|
rust_gmtime(int64_t sec, int32_t nsec, rust_tm *timeptr) {
|
2012-04-03 12:32:26 -05:00
|
|
|
tm tm;
|
2013-03-08 19:44:37 -06:00
|
|
|
time_t s = sec;
|
2012-04-03 12:32:26 -05:00
|
|
|
GMTIME(&s, &tm);
|
|
|
|
|
2013-03-08 19:44:37 -06:00
|
|
|
tm_to_rust_tm(&tm, timeptr, 0, "UTC", nsec);
|
2012-04-03 12:32:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
2013-03-08 19:44:37 -06:00
|
|
|
rust_localtime(int64_t sec, int32_t nsec, rust_tm *timeptr) {
|
2012-04-03 12:32:26 -05:00
|
|
|
tm tm;
|
2013-03-08 19:44:37 -06:00
|
|
|
time_t s = sec;
|
2012-04-03 12:32:26 -05:00
|
|
|
LOCALTIME(&s, &tm);
|
|
|
|
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
int32_t gmtoff = -timezone;
|
|
|
|
char zone[64];
|
|
|
|
strftime(zone, sizeof(zone), "%Z", &tm);
|
|
|
|
#else
|
|
|
|
int32_t gmtoff = tm.tm_gmtoff;
|
|
|
|
const char *zone = tm.tm_zone;
|
|
|
|
#endif
|
|
|
|
|
2013-03-08 19:44:37 -06:00
|
|
|
tm_to_rust_tm(&tm, timeptr, gmtoff, zone, nsec);
|
2012-04-03 12:32:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_timegm(rust_tm* timeptr, int64_t *out) {
|
|
|
|
tm t;
|
|
|
|
rust_tm_to_tm(timeptr, &t);
|
|
|
|
*out = TIMEGM(&t);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_mktime(rust_tm* timeptr, int64_t *out) {
|
|
|
|
tm t;
|
|
|
|
rust_tm_to_tm(timeptr, &t);
|
|
|
|
*out = mktime(&t);
|
|
|
|
}
|
|
|
|
|
2012-02-07 19:43:54 -06:00
|
|
|
extern "C" CDECL rust_sched_id
|
|
|
|
rust_get_sched_id() {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-02-07 19:43:54 -06:00
|
|
|
return task->sched->get_id();
|
|
|
|
}
|
|
|
|
|
2012-09-13 13:47:35 -05:00
|
|
|
extern "C" CDECL uintptr_t
|
|
|
|
rust_num_threads() {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return task->kernel->env->num_sched_threads;
|
|
|
|
}
|
|
|
|
|
2012-10-03 16:41:53 -05:00
|
|
|
extern "C" CDECL int
|
|
|
|
rust_get_argc() {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return task->kernel->env->argc;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL char**
|
|
|
|
rust_get_argv() {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return task->kernel->env->argv;
|
|
|
|
}
|
|
|
|
|
2012-02-07 19:43:54 -06:00
|
|
|
extern "C" CDECL rust_sched_id
|
2012-02-07 20:34:04 -06:00
|
|
|
rust_new_sched(uintptr_t threads) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-04-01 21:14:16 -05:00
|
|
|
assert(threads > 0 && "Can't create a scheduler with no threads, silly!");
|
2012-02-07 19:43:54 -06:00
|
|
|
return task->kernel->create_scheduler(threads);
|
|
|
|
}
|
|
|
|
|
2011-08-09 18:07:49 -05:00
|
|
|
extern "C" CDECL rust_task_id
|
2011-10-20 05:32:43 -05:00
|
|
|
get_task_id() {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-02-08 19:46:12 -06:00
|
|
|
return task->id;
|
2011-08-09 18:07:49 -05:00
|
|
|
}
|
|
|
|
|
2012-03-14 22:22:34 -05:00
|
|
|
static rust_task*
|
2012-02-07 19:43:54 -06:00
|
|
|
new_task_common(rust_scheduler *sched, rust_task *parent) {
|
|
|
|
return sched->create_task(parent, NULL);
|
|
|
|
}
|
|
|
|
|
2012-03-14 22:22:34 -05:00
|
|
|
extern "C" CDECL rust_task*
|
2011-10-20 05:32:43 -05:00
|
|
|
new_task() {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2013-01-08 21:46:12 -06:00
|
|
|
rust_sched_id sched_id = task->kernel->main_sched_id();
|
|
|
|
rust_scheduler *sched = task->kernel->get_scheduler_by_id(sched_id);
|
|
|
|
assert(sched != NULL && "should always have a main scheduler");
|
|
|
|
return new_task_common(sched, task);
|
2012-02-07 19:43:54 -06:00
|
|
|
}
|
|
|
|
|
2012-03-14 22:22:34 -05:00
|
|
|
extern "C" CDECL rust_task*
|
2012-02-07 19:43:54 -06:00
|
|
|
rust_new_task_in_sched(rust_sched_id id) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-02-07 19:43:54 -06:00
|
|
|
rust_scheduler *sched = task->kernel->get_scheduler_by_id(id);
|
2012-06-28 18:01:55 -05:00
|
|
|
if (sched == NULL)
|
|
|
|
return NULL;
|
2012-02-07 19:43:54 -06:00
|
|
|
return new_task_common(sched, task);
|
2011-08-10 20:48:57 -05:00
|
|
|
}
|
|
|
|
|
2011-11-30 19:54:11 -06:00
|
|
|
extern "C" rust_task *
|
|
|
|
rust_get_task() {
|
2012-04-02 00:13:39 -05:00
|
|
|
return rust_get_current_task();
|
2011-11-30 19:54:11 -06:00
|
|
|
}
|
|
|
|
|
2013-03-27 17:24:50 -05:00
|
|
|
extern "C" rust_task *
|
|
|
|
rust_try_get_task() {
|
|
|
|
return rust_try_get_current_task();
|
|
|
|
}
|
|
|
|
|
2012-08-24 12:43:57 -05:00
|
|
|
extern "C" CDECL stk_seg *
|
|
|
|
rust_get_stack_segment() {
|
|
|
|
return rust_get_current_task()->stk;
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:28:26 -05:00
|
|
|
extern "C" CDECL stk_seg *
|
|
|
|
rust_get_c_stack() {
|
|
|
|
return rust_get_current_task()->get_c_stack();
|
|
|
|
}
|
|
|
|
|
2011-09-06 16:03:20 -05:00
|
|
|
extern "C" CDECL void
|
2012-03-14 22:22:34 -05:00
|
|
|
start_task(rust_task *target, fn_env_pair *f) {
|
2012-01-04 22:11:39 -06:00
|
|
|
target->start(f->f, f->env, NULL);
|
2011-08-10 20:48:57 -05:00
|
|
|
}
|
|
|
|
|
2012-09-13 13:47:35 -05:00
|
|
|
extern "C" CDECL size_t
|
2012-09-18 05:28:05 -05:00
|
|
|
rust_sched_current_nonlazy_threads() {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-02-03 17:18:58 -06:00
|
|
|
return task->sched->number_of_threads();
|
2011-07-25 20:07:20 -05:00
|
|
|
}
|
|
|
|
|
2012-09-14 08:01:17 -05:00
|
|
|
extern "C" CDECL size_t
|
2012-09-18 05:28:05 -05:00
|
|
|
rust_sched_threads() {
|
2012-09-14 08:01:17 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return task->sched->max_number_of_threads();
|
|
|
|
}
|
|
|
|
|
2011-11-18 18:02:48 -06:00
|
|
|
// This is called by an intrinsic on the Rust stack and must run
|
|
|
|
// entirely in the red zone. Do not call on the C stack.
|
2012-07-24 17:22:44 -05:00
|
|
|
extern "C" CDECL MUST_CHECK bool
|
2012-02-02 17:48:08 -06:00
|
|
|
rust_task_yield(rust_task *task, bool *killed) {
|
2012-07-24 17:22:44 -05:00
|
|
|
return task->yield();
|
2011-11-08 17:38:56 -06:00
|
|
|
}
|
|
|
|
|
2012-01-13 00:17:21 -06:00
|
|
|
extern "C" CDECL void
|
|
|
|
rust_set_exit_status(intptr_t code) {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-01-13 00:17:21 -06:00
|
|
|
task->kernel->set_exit_status((int)code);
|
|
|
|
}
|
|
|
|
|
2012-01-13 15:19:26 -06:00
|
|
|
extern void log_console_on();
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_log_console_on() {
|
|
|
|
log_console_on();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void log_console_off(rust_env *env);
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_log_console_off() {
|
2012-04-02 00:13:39 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-01-13 15:19:26 -06:00
|
|
|
log_console_off(task->kernel->env);
|
|
|
|
}
|
|
|
|
|
2012-06-01 02:11:51 -05:00
|
|
|
extern "C" CDECL void
|
|
|
|
rust_dbg_breakpoint() {
|
|
|
|
BREAKPOINT_AWESOME;
|
|
|
|
}
|
|
|
|
|
2012-04-03 16:03:27 -05:00
|
|
|
extern "C" CDECL rust_sched_id
|
|
|
|
rust_osmain_sched_id() {
|
2012-04-03 22:29:12 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-04-03 16:03:27 -05:00
|
|
|
return task->kernel->osmain_sched_id();
|
|
|
|
}
|
|
|
|
|
2012-05-15 13:34:52 -05:00
|
|
|
extern "C" void
|
2012-07-24 14:27:45 -05:00
|
|
|
rust_task_inhibit_kill(rust_task *task) {
|
2012-05-15 13:34:52 -05:00
|
|
|
task->inhibit_kill();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
2012-07-24 14:27:45 -05:00
|
|
|
rust_task_allow_kill(rust_task *task) {
|
2012-05-15 13:34:52 -05:00
|
|
|
task->allow_kill();
|
|
|
|
}
|
|
|
|
|
2012-07-24 14:27:45 -05:00
|
|
|
extern "C" void
|
|
|
|
rust_task_inhibit_yield(rust_task *task) {
|
|
|
|
task->inhibit_yield();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
rust_task_allow_yield(rust_task *task) {
|
|
|
|
task->allow_yield();
|
|
|
|
}
|
|
|
|
|
2012-07-10 17:55:16 -05:00
|
|
|
extern "C" void
|
|
|
|
rust_task_kill_other(rust_task *task) { /* Used for linked failure */
|
|
|
|
task->kill();
|
|
|
|
}
|
|
|
|
|
2012-07-12 18:52:32 -05:00
|
|
|
extern "C" void
|
2012-07-13 18:13:11 -05:00
|
|
|
rust_task_kill_all(rust_task *task) { /* Used for linked failure */
|
2012-07-12 18:52:32 -05:00
|
|
|
task->fail_sched_loop();
|
2012-07-13 18:13:11 -05:00
|
|
|
// This must not happen twice.
|
|
|
|
static bool main_taskgroup_failed = false;
|
|
|
|
assert(!main_taskgroup_failed);
|
|
|
|
main_taskgroup_failed = true;
|
2012-07-12 18:52:32 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 16:35:08 -05:00
|
|
|
extern "C" CDECL
|
|
|
|
bool rust_task_is_unwinding(rust_task *rt) {
|
|
|
|
return rt->unwinding;
|
|
|
|
}
|
|
|
|
|
2012-08-07 13:42:30 -05:00
|
|
|
extern "C" lock_and_signal*
|
|
|
|
rust_create_little_lock() {
|
|
|
|
return new lock_and_signal();
|
2012-06-06 17:06:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
2012-08-07 13:42:30 -05:00
|
|
|
rust_destroy_little_lock(lock_and_signal *lock) {
|
2012-06-06 17:06:24 -05:00
|
|
|
delete lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
2012-08-07 13:42:30 -05:00
|
|
|
rust_lock_little_lock(lock_and_signal *lock) {
|
|
|
|
lock->lock();
|
2012-06-06 17:06:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
2012-08-07 13:42:30 -05:00
|
|
|
rust_unlock_little_lock(lock_and_signal *lock) {
|
|
|
|
lock->unlock();
|
2012-06-06 17:06:24 -05:00
|
|
|
}
|
|
|
|
|
2012-06-27 12:07:00 -05:00
|
|
|
// set/get/atexit task_local_data can run on the rust stack for speed.
|
|
|
|
extern "C" void *
|
|
|
|
rust_get_task_local_data(rust_task *task) {
|
|
|
|
return task->task_local_data;
|
|
|
|
}
|
|
|
|
extern "C" void
|
|
|
|
rust_set_task_local_data(rust_task *task, void *data) {
|
|
|
|
task->task_local_data = data;
|
|
|
|
}
|
|
|
|
extern "C" void
|
|
|
|
rust_task_local_data_atexit(rust_task *task, void (*cleanup_fn)(void *data)) {
|
|
|
|
task->task_local_data_cleanup = cleanup_fn;
|
|
|
|
}
|
2012-06-06 17:06:24 -05:00
|
|
|
|
2013-05-01 09:29:47 -05:00
|
|
|
// set/get/atexit task_borrow_list can run on the rust stack for speed.
|
|
|
|
extern "C" void *
|
|
|
|
rust_take_task_borrow_list(rust_task *task) {
|
|
|
|
void *r = task->borrow_list;
|
|
|
|
task->borrow_list = NULL;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
extern "C" void
|
|
|
|
rust_set_task_borrow_list(rust_task *task, void *data) {
|
|
|
|
assert(task->borrow_list == NULL);
|
|
|
|
assert(data != NULL);
|
|
|
|
task->borrow_list = data;
|
|
|
|
}
|
|
|
|
|
2012-07-02 19:42:58 -05:00
|
|
|
extern "C" void
|
|
|
|
task_clear_event_reject(rust_task *task) {
|
|
|
|
task->clear_event_reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Waits on an event, returning the pointer to the event that unblocked this
|
|
|
|
// task.
|
2012-07-24 17:22:44 -05:00
|
|
|
extern "C" MUST_CHECK bool
|
|
|
|
task_wait_event(rust_task *task, void **result) {
|
|
|
|
// Maybe (if not too slow) assert that the passed in task is the currently
|
2012-07-12 20:20:39 -05:00
|
|
|
// running task. We wouldn't want to wait some other task.
|
2012-07-02 19:42:58 -05:00
|
|
|
|
2012-07-24 17:22:44 -05:00
|
|
|
return task->wait_event(result);
|
2012-07-02 19:42:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
task_signal_event(rust_task *target, void *event) {
|
|
|
|
target->signal_event(event);
|
|
|
|
}
|
|
|
|
|
2012-08-03 20:00:23 -05:00
|
|
|
// Can safely run on the rust stack.
|
|
|
|
extern "C" void
|
|
|
|
rust_task_ref(rust_task *task) {
|
|
|
|
task->ref();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't run on the rust stack!
|
|
|
|
extern "C" void
|
|
|
|
rust_task_deref(rust_task *task) {
|
|
|
|
task->deref();
|
|
|
|
}
|
|
|
|
|
2012-08-21 17:32:30 -05:00
|
|
|
// Must call on rust stack.
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_call_tydesc_glue(void *root, size_t *tydesc, size_t glue_index) {
|
|
|
|
void (*glue_fn)(void *, void *, void *, void *) =
|
|
|
|
(void (*)(void *, void *, void *, void *))tydesc[glue_index];
|
|
|
|
if (glue_fn)
|
|
|
|
glue_fn(0, 0, 0, root);
|
|
|
|
}
|
|
|
|
|
2012-09-24 22:24:32 -05:00
|
|
|
// Don't run on the Rust stack!
|
|
|
|
extern "C" void
|
2012-09-25 14:17:20 -05:00
|
|
|
rust_log_str(uint32_t level, const char *str, size_t size) {
|
2012-09-24 22:24:32 -05:00
|
|
|
rust_task *task = rust_get_current_task();
|
2012-09-25 14:17:20 -05:00
|
|
|
task->sched_loop->get_log().log(task, level, "%.*s", (int)size, str);
|
2012-09-24 22:24:32 -05:00
|
|
|
}
|
|
|
|
|
2013-01-10 21:03:13 -06:00
|
|
|
extern "C" CDECL void record_sp_limit(void *limit);
|
|
|
|
|
|
|
|
class raw_thread: public rust_thread {
|
|
|
|
public:
|
2013-02-03 20:15:43 -06:00
|
|
|
fn_env_pair fn;
|
2013-01-10 21:03:13 -06:00
|
|
|
|
2013-02-03 20:15:43 -06:00
|
|
|
raw_thread(fn_env_pair fn) : fn(fn) { }
|
2013-01-10 21:03:13 -06:00
|
|
|
|
|
|
|
virtual void run() {
|
|
|
|
record_sp_limit(0);
|
2013-02-03 20:15:43 -06:00
|
|
|
fn.f(NULL, fn.env, NULL);
|
2013-01-10 21:03:13 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" raw_thread*
|
|
|
|
rust_raw_thread_start(fn_env_pair *fn) {
|
|
|
|
assert(fn);
|
2013-02-03 20:15:43 -06:00
|
|
|
raw_thread *thread = new raw_thread(*fn);
|
2013-01-10 21:03:13 -06:00
|
|
|
thread->start();
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
rust_raw_thread_join_delete(raw_thread *thread) {
|
|
|
|
assert(thread);
|
|
|
|
thread->join();
|
|
|
|
delete thread;
|
|
|
|
}
|
|
|
|
|
2013-01-11 17:55:14 -06:00
|
|
|
extern "C" void
|
|
|
|
rust_register_exit_function(spawn_fn runner, fn_env_pair *f) {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
task->kernel->register_exit_function(runner, f);
|
|
|
|
}
|
2013-01-10 21:03:13 -06:00
|
|
|
|
2013-01-13 01:27:46 -06:00
|
|
|
extern "C" void *
|
|
|
|
rust_get_global_data_ptr() {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return &task->kernel->global_data;
|
|
|
|
}
|
|
|
|
|
2013-01-15 21:53:35 -06:00
|
|
|
extern "C" void
|
2013-02-09 03:19:31 -06:00
|
|
|
rust_inc_kernel_live_count() {
|
2013-01-15 21:53:35 -06:00
|
|
|
rust_task *task = rust_get_current_task();
|
2013-02-09 03:19:31 -06:00
|
|
|
task->kernel->inc_live_count();
|
2013-01-15 21:53:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
2013-02-09 03:19:31 -06:00
|
|
|
rust_dec_kernel_live_count() {
|
2013-01-15 21:53:35 -06:00
|
|
|
rust_task *task = rust_get_current_task();
|
2013-02-09 03:19:31 -06:00
|
|
|
task->kernel->dec_live_count();
|
2013-01-15 21:53:35 -06:00
|
|
|
}
|
|
|
|
|
2013-03-12 22:06:20 -05:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
extern "C" DIR*
|
|
|
|
rust_opendir(char *dirname) {
|
|
|
|
return opendir(dirname);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" dirent*
|
|
|
|
rust_readdir(DIR *dirp) {
|
|
|
|
return readdir(dirp);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
rust_opendir() {
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
rust_readdir() {
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-03-12 14:23:24 -05:00
|
|
|
extern "C" rust_env*
|
|
|
|
rust_get_rt_env() {
|
|
|
|
rust_task *task = rust_get_current_task();
|
|
|
|
return task->kernel->env;
|
|
|
|
}
|
2013-03-12 22:06:20 -05:00
|
|
|
|
2013-03-15 20:06:19 -05:00
|
|
|
typedef void *(*nullary_fn)();
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_call_nullary_fn(nullary_fn f) {
|
|
|
|
f();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
pthread_key_t sched_key;
|
|
|
|
#else
|
|
|
|
DWORD sched_key;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern "C" void*
|
|
|
|
rust_get_sched_tls_key() {
|
|
|
|
return &sched_key;
|
|
|
|
}
|
|
|
|
|
2013-03-15 20:35:33 -05:00
|
|
|
// Initialize the global state required by the new scheduler
|
2013-03-15 20:06:19 -05:00
|
|
|
extern "C" CDECL void
|
|
|
|
rust_initialize_global_state() {
|
|
|
|
|
2013-03-15 20:35:33 -05:00
|
|
|
static lock_and_signal init_lock;
|
|
|
|
static bool initialized = false;
|
|
|
|
|
|
|
|
scoped_lock with(init_lock);
|
|
|
|
|
|
|
|
if (!initialized) {
|
|
|
|
|
2013-03-15 20:06:19 -05:00
|
|
|
#ifndef _WIN32
|
2013-03-15 20:35:33 -05:00
|
|
|
assert(!pthread_key_create(&sched_key, NULL));
|
2013-03-15 20:06:19 -05:00
|
|
|
#else
|
2013-03-15 20:35:33 -05:00
|
|
|
sched_key = TlsAlloc();
|
|
|
|
assert(sched_key != TLS_OUT_OF_INDEXES);
|
2013-03-15 20:06:19 -05:00
|
|
|
#endif
|
|
|
|
|
2013-03-15 20:35:33 -05:00
|
|
|
initialized = true;
|
|
|
|
}
|
2013-03-15 20:06:19 -05:00
|
|
|
}
|
|
|
|
|
2013-04-21 21:03:52 -05:00
|
|
|
extern "C" CDECL memory_region*
|
|
|
|
rust_new_memory_region(uintptr_t synchronized,
|
|
|
|
uintptr_t detailed_leaks,
|
|
|
|
uintptr_t poison_on_free) {
|
|
|
|
return new memory_region((bool)synchronized,
|
|
|
|
(bool)detailed_leaks,
|
|
|
|
(bool)poison_on_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_delete_memory_region(memory_region *region) {
|
|
|
|
delete region;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL boxed_region*
|
|
|
|
rust_new_boxed_region(memory_region *region,
|
|
|
|
uintptr_t poison_on_free) {
|
|
|
|
return new boxed_region(region, poison_on_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_delete_boxed_region(boxed_region *region) {
|
|
|
|
delete region;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL rust_opaque_box*
|
|
|
|
rust_boxed_region_malloc(boxed_region *region, type_desc *td, size_t size) {
|
|
|
|
return region->malloc(td, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_boxed_region_free(boxed_region *region, rust_opaque_box *box) {
|
|
|
|
region->free(box);
|
|
|
|
}
|
|
|
|
|
2013-04-22 19:15:31 -05:00
|
|
|
typedef void *(rust_try_fn)(void*, void*);
|
|
|
|
|
|
|
|
extern "C" CDECL uintptr_t
|
|
|
|
rust_try(rust_try_fn f, void *fptr, void *env) {
|
|
|
|
try {
|
|
|
|
f(fptr, env);
|
|
|
|
} catch (uintptr_t token) {
|
|
|
|
assert(token != 0);
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" CDECL void
|
|
|
|
rust_begin_unwind(uintptr_t token) {
|
|
|
|
#ifndef __WIN32__
|
|
|
|
throw token;
|
|
|
|
#else
|
2013-04-24 23:33:03 -05:00
|
|
|
abort();
|
2013-04-22 19:15:31 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: C++
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|
|
|
|
//
|