2010-06-23 23:03:09 -05:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "rust_internal.h"
|
|
|
|
|
|
|
|
template class ptr_vec<rust_task>;
|
|
|
|
|
2010-08-09 09:34:11 -05:00
|
|
|
// Keeps track of all live domains, for debugging purposes.
|
|
|
|
array_list<rust_dom*> _live_domains;
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2010-08-08 21:24:35 -05:00
|
|
|
rust_dom::rust_dom(rust_srv *srv, rust_crate const *root_crate,
|
|
|
|
const char *name) :
|
2010-06-23 23:03:09 -05:00
|
|
|
interrupt_flag(0),
|
|
|
|
root_crate(root_crate),
|
|
|
|
_log(srv, this),
|
|
|
|
srv(srv),
|
2010-08-08 21:24:35 -05:00
|
|
|
name(name),
|
2010-06-23 23:03:09 -05:00
|
|
|
running_tasks(this),
|
|
|
|
blocked_tasks(this),
|
|
|
|
dead_tasks(this),
|
|
|
|
caches(this),
|
|
|
|
root_task(NULL),
|
|
|
|
curr_task(NULL),
|
|
|
|
rval(0)
|
|
|
|
{
|
|
|
|
logptr("new dom", (uintptr_t)this);
|
2010-07-25 23:45:09 -05:00
|
|
|
isaac_init(this, &rctx);
|
|
|
|
#ifndef __WIN32__
|
2010-06-23 23:03:09 -05:00
|
|
|
pthread_attr_init(&attr);
|
|
|
|
pthread_attr_setstacksize(&attr, 1024 * 1024);
|
|
|
|
pthread_attr_setdetachstate(&attr, true);
|
|
|
|
#endif
|
2010-08-08 21:24:35 -05:00
|
|
|
root_task = new (this) rust_task(this, NULL, name);
|
2010-08-09 09:34:11 -05:00
|
|
|
|
|
|
|
if (_live_domains.replace(NULL, this) == false) {
|
|
|
|
_live_domains.append(this);
|
|
|
|
}
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
del_all_tasks(rust_dom *dom, ptr_vec<rust_task> *v) {
|
|
|
|
I(dom, v);
|
|
|
|
while (v->length()) {
|
2010-08-09 09:52:07 -05:00
|
|
|
dom->log(rust_log::TASK, "deleting task 0x%" PRIdPTR,
|
|
|
|
v->length() - 1);
|
2010-06-23 23:03:09 -05:00
|
|
|
delete v->pop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 18:24:50 -05:00
|
|
|
void
|
|
|
|
rust_dom::delete_proxies() {
|
|
|
|
rust_task *task;
|
|
|
|
rust_proxy<rust_task> *task_proxy;
|
|
|
|
while (_task_proxies.pop(&task, &task_proxy)) {
|
2010-08-08 21:24:35 -05:00
|
|
|
log(rust_log::TASK,
|
2010-08-10 15:26:00 -05:00
|
|
|
"deleting proxy 0x%" PRIxPTR " in dom %s 0x%" PRIxPTR,
|
2010-08-08 21:24:35 -05:00
|
|
|
task_proxy, task_proxy->dom->name, task_proxy->dom);
|
2010-07-28 18:24:50 -05:00
|
|
|
delete task_proxy;
|
|
|
|
}
|
2010-07-28 18:46:13 -05:00
|
|
|
|
|
|
|
rust_port *port;
|
|
|
|
rust_proxy<rust_port> *port_proxy;
|
|
|
|
while (_port_proxies.pop(&port, &port_proxy)) {
|
2010-08-08 21:24:35 -05:00
|
|
|
log(rust_log::TASK,
|
2010-08-10 15:26:00 -05:00
|
|
|
"deleting proxy 0x%" PRIxPTR " in dom %s 0x%" PRIxPTR,
|
2010-08-08 21:24:35 -05:00
|
|
|
port_proxy, port_proxy->dom->name, port_proxy->dom);
|
2010-07-28 18:46:13 -05:00
|
|
|
delete port_proxy;
|
|
|
|
}
|
2010-07-28 18:24:50 -05:00
|
|
|
}
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
rust_dom::~rust_dom() {
|
2010-07-28 18:24:50 -05:00
|
|
|
log(rust_log::MEM | rust_log::DOM,
|
2010-08-08 21:24:35 -05:00
|
|
|
"~rust_dom %s @0x%" PRIxPTR, name, (uintptr_t)this);
|
2010-07-28 18:24:50 -05:00
|
|
|
|
|
|
|
log(rust_log::TASK, "deleting all proxies");
|
|
|
|
delete_proxies();
|
2010-06-23 23:03:09 -05:00
|
|
|
log(rust_log::TASK, "deleting all running tasks");
|
|
|
|
del_all_tasks(this, &running_tasks);
|
|
|
|
log(rust_log::TASK, "deleting all blocked tasks");
|
|
|
|
del_all_tasks(this, &blocked_tasks);
|
|
|
|
log(rust_log::TASK, "deleting all dead tasks");
|
|
|
|
del_all_tasks(this, &dead_tasks);
|
|
|
|
#ifndef __WIN32__
|
|
|
|
pthread_attr_destroy(&attr);
|
|
|
|
#endif
|
|
|
|
while (caches.length())
|
|
|
|
delete caches.pop();
|
2010-08-09 09:34:11 -05:00
|
|
|
|
|
|
|
_live_domains.replace(this, NULL);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_dom::activate(rust_task *task) {
|
|
|
|
curr_task = task;
|
|
|
|
root_crate->get_activate_glue()(task);
|
|
|
|
curr_task = NULL;
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
void
|
|
|
|
rust_dom::log(rust_task *task, uint32_t type_bits, char const *fmt, ...) {
|
|
|
|
char buf[256];
|
|
|
|
if (_log.is_tracing(type_bits)) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
_log.trace_ln(task, type_bits, buf);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
void
|
|
|
|
rust_dom::log(uint32_t type_bits, char const *fmt, ...) {
|
|
|
|
char buf[256];
|
|
|
|
if (_log.is_tracing(type_bits)) {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
2010-07-19 16:05:18 -05:00
|
|
|
_log.trace_ln(NULL, type_bits, buf);
|
2010-06-23 23:03:09 -05:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rust_log &
|
|
|
|
rust_dom::get_log() {
|
|
|
|
return _log;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_dom::logptr(char const *msg, uintptr_t ptrval) {
|
|
|
|
log(rust_log::MEM, "%s 0x%" PRIxPTR, msg, ptrval);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T> void
|
|
|
|
rust_dom::logptr(char const *msg, T* ptrval) {
|
|
|
|
log(rust_log::MEM, "%s 0x%" PRIxPTR, msg, (uintptr_t)ptrval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_dom::fail() {
|
2010-08-08 21:24:35 -05:00
|
|
|
log(rust_log::DOM, "domain %s @0x%" PRIxPTR " root task failed",
|
|
|
|
name, this);
|
2010-06-23 23:03:09 -05:00
|
|
|
I(this, rval == 0);
|
|
|
|
rval = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
rust_dom::malloc(size_t sz) {
|
|
|
|
void *p = srv->malloc(sz);
|
|
|
|
I(this, p);
|
2010-08-08 21:24:35 -05:00
|
|
|
log(rust_log::MEM,
|
|
|
|
"%s @0x%" PRIxPTR " rust_dom::malloc(%d) -> 0x%" PRIxPTR,
|
|
|
|
name, (uintptr_t) this, sz, p);
|
2010-06-23 23:03:09 -05:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
rust_dom::calloc(size_t sz) {
|
|
|
|
void *p = this->malloc(sz);
|
|
|
|
memset(p, 0, sz);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
rust_dom::realloc(void *p, size_t sz) {
|
|
|
|
void *p1 = srv->realloc(p, sz);
|
|
|
|
I(this, p1);
|
|
|
|
log(rust_log::MEM, "rust_dom::realloc(0x%" PRIxPTR ", %d) -> 0x%" PRIxPTR,
|
|
|
|
p, sz, p1);
|
|
|
|
return p1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_dom::free(void *p) {
|
|
|
|
log(rust_log::MEM, "rust_dom::free(0x%" PRIxPTR ")", p);
|
|
|
|
I(this, p);
|
|
|
|
srv->free(p);
|
|
|
|
}
|
|
|
|
|
2010-07-26 00:07:21 -05:00
|
|
|
#ifdef __WIN32__
|
|
|
|
void
|
|
|
|
rust_dom::win32_require(LPCTSTR fn, BOOL ok) {
|
|
|
|
if (!ok) {
|
|
|
|
LPTSTR buf;
|
|
|
|
DWORD err = GetLastError();
|
|
|
|
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL, err,
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
(LPTSTR) &buf, 0, NULL );
|
|
|
|
log(rust_log::ERR, "%s failed with error %ld: %s", fn, err, buf);
|
|
|
|
LocalFree((HLOCAL)buf);
|
|
|
|
I(this, ok);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
size_t
|
|
|
|
rust_dom::n_live_tasks()
|
|
|
|
{
|
|
|
|
return running_tasks.length() + blocked_tasks.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_dom::add_task_to_state_vec(ptr_vec<rust_task> *v, rust_task *task)
|
|
|
|
{
|
|
|
|
log(rust_log::MEM|rust_log::TASK,
|
2010-08-08 21:24:35 -05:00
|
|
|
"adding task %s @0x%" PRIxPTR " in state '%s' to vec 0x%" PRIxPTR,
|
|
|
|
task->name, (uintptr_t)task, state_vec_name(v), (uintptr_t)v);
|
2010-06-23 23:03:09 -05:00
|
|
|
v->push(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
rust_dom::remove_task_from_state_vec(ptr_vec<rust_task> *v, rust_task *task)
|
|
|
|
{
|
|
|
|
log(rust_log::MEM|rust_log::TASK,
|
2010-08-08 21:24:35 -05:00
|
|
|
"removing task %s @0x%" PRIxPTR " in state '%s' from vec 0x%" PRIxPTR,
|
|
|
|
task->name, (uintptr_t)task, state_vec_name(v), (uintptr_t)v);
|
2010-06-23 23:03:09 -05:00
|
|
|
I(this, (*v)[task->idx] == task);
|
2010-07-19 16:05:18 -05:00
|
|
|
v->swap_delete(task);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
rust_dom::state_vec_name(ptr_vec<rust_task> *v)
|
|
|
|
{
|
|
|
|
if (v == &running_tasks)
|
|
|
|
return "running";
|
|
|
|
if (v == &blocked_tasks)
|
|
|
|
return "blocked";
|
|
|
|
I(this, v == &dead_tasks);
|
|
|
|
return "dead";
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
/**
|
|
|
|
* Delete any dead tasks.
|
|
|
|
*/
|
2010-06-23 23:03:09 -05:00
|
|
|
void
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_dom::reap_dead_tasks() {
|
2010-06-23 23:03:09 -05:00
|
|
|
for (size_t i = 0; i < dead_tasks.length(); ) {
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_task *task = dead_tasks[i];
|
|
|
|
if (task->ref_count == 0) {
|
2010-07-28 18:24:50 -05:00
|
|
|
I(this, task->tasks_waiting_to_join.is_empty());
|
2010-07-19 16:05:18 -05:00
|
|
|
dead_tasks.swap_delete(task);
|
2010-06-23 23:03:09 -05:00
|
|
|
log(rust_log::TASK,
|
2010-08-08 21:24:35 -05:00
|
|
|
"deleting unreferenced dead task %s @0x%" PRIxPTR,
|
|
|
|
task->name, task);
|
2010-07-19 16:05:18 -05:00
|
|
|
delete task;
|
2010-06-23 23:03:09 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
/**
|
|
|
|
* Enqueues a message in this domain's incoming message queue. It's the
|
|
|
|
* responsibility of the receiver to free the message once it's processed.
|
|
|
|
*/
|
|
|
|
void rust_dom::send_message(rust_message *message) {
|
2010-07-28 18:24:50 -05:00
|
|
|
log(rust_log::COMM, "==> enqueueing \"%s\" 0x%" PRIxPTR
|
2010-08-09 09:52:07 -05:00
|
|
|
" in queue 0x%" PRIxPTR
|
|
|
|
" in domain 0x%" PRIxPTR,
|
2010-07-28 18:24:50 -05:00
|
|
|
message->label,
|
2010-07-19 16:05:18 -05:00
|
|
|
message,
|
2010-08-09 09:52:07 -05:00
|
|
|
&_incoming_message_queue,
|
|
|
|
this);
|
2010-07-28 18:24:50 -05:00
|
|
|
A(this, message->dom == this, "Message owned by non-local domain.");
|
2010-07-19 16:05:18 -05:00
|
|
|
_incoming_message_queue.enqueue(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Drains and processes incoming pending messages.
|
|
|
|
*/
|
|
|
|
void rust_dom::drain_incoming_message_queue() {
|
|
|
|
rust_message *message;
|
|
|
|
while ((message = (rust_message *) _incoming_message_queue.dequeue())) {
|
2010-07-28 18:24:50 -05:00
|
|
|
log(rust_log::COMM, "<== processing incoming message \"%s\" 0x%"
|
|
|
|
PRIxPTR, message->label, message);
|
2010-07-19 16:05:18 -05:00
|
|
|
message->process();
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 18:24:50 -05:00
|
|
|
rust_proxy<rust_task> *
|
|
|
|
rust_dom::get_task_proxy(rust_task *task) {
|
|
|
|
rust_proxy<rust_task> *proxy = NULL;
|
|
|
|
if (_task_proxies.get(task, &proxy)) {
|
|
|
|
return proxy;
|
|
|
|
}
|
2010-08-08 21:24:35 -05:00
|
|
|
log(rust_log::COMM, "no proxy for %s @0x%" PRIxPTR, task->name, task);
|
2010-07-28 18:24:50 -05:00
|
|
|
proxy = new (this) rust_proxy<rust_task> (this, task, false);
|
|
|
|
_task_proxies.put(task, proxy);
|
|
|
|
return proxy;
|
|
|
|
}
|
2010-07-28 18:46:13 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a proxy for this port.
|
|
|
|
*
|
|
|
|
* TODO: This method needs to be synchronized since it's usually called
|
|
|
|
* during upcall_clone_chan in a different thread. However, for now
|
|
|
|
* since this usually happens before the thread actually starts,
|
|
|
|
* we may get lucky without synchronizing.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
rust_proxy<rust_port> *
|
|
|
|
rust_dom::get_port_proxy_synchronized(rust_port *port) {
|
|
|
|
rust_proxy<rust_port> *proxy = NULL;
|
|
|
|
if (_port_proxies.get(port, &proxy)) {
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
log(rust_log::COMM, "no proxy for 0x%" PRIxPTR, port);
|
|
|
|
proxy = new (this) rust_proxy<rust_port> (this, port, false);
|
|
|
|
_port_proxies.put(port, proxy);
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
/**
|
|
|
|
* Schedules a running task for execution. Only running tasks can be
|
|
|
|
* activated. Blocked tasks have to be unblocked before they can be
|
|
|
|
* activated.
|
|
|
|
*
|
|
|
|
* Returns NULL if no tasks can be scheduled.
|
|
|
|
*/
|
2010-06-23 23:03:09 -05:00
|
|
|
rust_task *
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_dom::schedule_task()
|
2010-06-23 23:03:09 -05:00
|
|
|
{
|
|
|
|
I(this, this);
|
|
|
|
// FIXME: in the face of failing tasks, this is not always right.
|
|
|
|
// I(this, n_live_tasks() > 0);
|
|
|
|
if (running_tasks.length() > 0) {
|
|
|
|
size_t i = rand(&rctx);
|
|
|
|
i %= running_tasks.length();
|
2010-08-11 23:23:34 -05:00
|
|
|
if (running_tasks[i]->yield_timer.has_timed_out()) {
|
|
|
|
return (rust_task *)running_tasks[i];
|
|
|
|
}
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
// log(rust_log::DOM|rust_log::TASK, "no schedulable tasks");
|
2010-06-23 23:03:09 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-08-09 09:34:11 -05:00
|
|
|
void
|
|
|
|
rust_dom::log_all_state() {
|
|
|
|
for (uint32_t i = 0; i < _live_domains.size(); i++) {
|
|
|
|
_live_domains[i]->log_state();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-28 16:53:08 -05:00
|
|
|
void
|
|
|
|
rust_dom::log_state() {
|
|
|
|
if (!running_tasks.is_empty()) {
|
|
|
|
log(rust_log::TASK, "running tasks:");
|
|
|
|
for (size_t i = 0; i < running_tasks.length(); i++) {
|
|
|
|
log(rust_log::TASK,
|
2010-08-11 23:23:34 -05:00
|
|
|
"\t task: %s @0x%" PRIxPTR
|
|
|
|
" timeout: %d",
|
|
|
|
running_tasks[i]->name,
|
|
|
|
running_tasks[i],
|
|
|
|
running_tasks[i]->yield_timer.get_timeout());
|
2010-07-28 16:53:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!blocked_tasks.is_empty()) {
|
|
|
|
log(rust_log::TASK, "blocked tasks:");
|
|
|
|
for (size_t i = 0; i < blocked_tasks.length(); i++) {
|
|
|
|
log(rust_log::TASK,
|
2010-08-08 21:24:35 -05:00
|
|
|
"\t task: %s @0x%" PRIxPTR ", blocked on: 0x%" PRIxPTR,
|
|
|
|
blocked_tasks[i]->name, blocked_tasks[i],
|
|
|
|
blocked_tasks[i]->cond);
|
2010-07-28 16:53:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dead_tasks.is_empty()) {
|
|
|
|
log(rust_log::TASK, "dead tasks:");
|
|
|
|
for (size_t i = 0; i < dead_tasks.length(); i++) {
|
2010-08-10 15:26:00 -05:00
|
|
|
log(rust_log::TASK, "\t task: %s 0x%" PRIxPTR ", ref_count: %d",
|
|
|
|
dead_tasks[i], dead_tasks[i]->name,
|
|
|
|
dead_tasks[i]->ref_count);
|
2010-07-28 16:53:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
/**
|
|
|
|
* Starts the main scheduler loop which performs task scheduling for this
|
|
|
|
* domain.
|
|
|
|
*
|
2010-07-28 18:49:16 -05:00
|
|
|
* Returns once no more tasks can be scheduled and all task ref_counts
|
|
|
|
* drop to zero.
|
2010-07-19 16:05:18 -05:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
rust_dom::start_main_loop()
|
|
|
|
{
|
|
|
|
// Make sure someone is watching, to pull us out of infinite loops.
|
|
|
|
rust_timer timer(this);
|
|
|
|
|
2010-08-08 21:24:35 -05:00
|
|
|
log(rust_log::DOM, "running main-loop on domain %s @0x%" PRIxPTR,
|
|
|
|
name, this);
|
2010-07-19 16:05:18 -05:00
|
|
|
logptr("exit-task glue", root_crate->get_exit_task_glue());
|
|
|
|
|
|
|
|
while (n_live_tasks() > 0) {
|
2010-07-28 18:24:50 -05:00
|
|
|
drain_incoming_message_queue();
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_task *scheduled_task = schedule_task();
|
|
|
|
|
|
|
|
// If we cannot schedule a task because all other live tasks
|
2010-08-11 23:23:34 -05:00
|
|
|
// are blocked, yield and hopefully some progress is made in
|
|
|
|
// other domains.
|
2010-07-19 16:05:18 -05:00
|
|
|
|
|
|
|
if (scheduled_task == NULL) {
|
2010-08-09 10:15:34 -05:00
|
|
|
if (_log.is_tracing(rust_log::TASK)) {
|
2010-07-28 16:53:08 -05:00
|
|
|
log_state();
|
2010-08-09 10:15:34 -05:00
|
|
|
}
|
2010-07-28 16:53:08 -05:00
|
|
|
log(rust_log::TASK,
|
2010-08-09 10:06:08 -05:00
|
|
|
"all tasks are blocked, scheduler yielding ...");
|
|
|
|
sync::yield();
|
|
|
|
log(rust_log::TASK,
|
|
|
|
"scheduler resuming ...");
|
2010-07-19 16:05:18 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
I(this, scheduled_task->running());
|
|
|
|
|
|
|
|
log(rust_log::TASK,
|
2010-08-10 15:26:00 -05:00
|
|
|
"activating task %s 0x%" PRIxPTR
|
|
|
|
", sp=0x%" PRIxPTR
|
|
|
|
", ref_count=%d"
|
|
|
|
", state: %s",
|
|
|
|
scheduled_task->name,
|
|
|
|
(uintptr_t)scheduled_task,
|
|
|
|
scheduled_task->rust_sp,
|
|
|
|
scheduled_task->ref_count,
|
|
|
|
scheduled_task->state_str());
|
2010-07-19 16:05:18 -05:00
|
|
|
|
|
|
|
interrupt_flag = 0;
|
|
|
|
|
|
|
|
activate(scheduled_task);
|
|
|
|
|
|
|
|
log(rust_log::TASK,
|
2010-08-08 21:24:35 -05:00
|
|
|
"returned from task %s @0x%" PRIxPTR
|
2010-07-19 16:05:18 -05:00
|
|
|
" in state '%s', sp=0x%" PRIxPTR,
|
2010-08-08 21:24:35 -05:00
|
|
|
scheduled_task->name,
|
2010-07-19 16:05:18 -05:00
|
|
|
(uintptr_t)scheduled_task,
|
|
|
|
state_vec_name(scheduled_task->state),
|
|
|
|
scheduled_task->rust_sp);
|
|
|
|
|
|
|
|
I(this, scheduled_task->rust_sp >=
|
|
|
|
(uintptr_t) &scheduled_task->stk->data[0]);
|
|
|
|
I(this, scheduled_task->rust_sp < scheduled_task->stk->limit);
|
|
|
|
|
|
|
|
reap_dead_tasks();
|
|
|
|
}
|
|
|
|
|
|
|
|
log(rust_log::DOM, "terminated scheduler loop, reaping dead tasks ...");
|
|
|
|
|
|
|
|
while (dead_tasks.length() > 0) {
|
|
|
|
if (_incoming_message_queue.is_empty()) {
|
2010-08-09 10:06:08 -05:00
|
|
|
log(rust_log::DOM,
|
|
|
|
"waiting for %d dead tasks to become dereferenced, "
|
|
|
|
"scheduler yielding ...",
|
|
|
|
dead_tasks.length());
|
|
|
|
if (_log.is_tracing(rust_log::TASK)) {
|
|
|
|
log_state();
|
|
|
|
}
|
|
|
|
sync::yield();
|
2010-07-19 16:05:18 -05:00
|
|
|
} else {
|
|
|
|
drain_incoming_message_queue();
|
|
|
|
}
|
|
|
|
reap_dead_tasks();
|
|
|
|
}
|
|
|
|
|
|
|
|
log(rust_log::DOM, "finished main-loop (dom.rval = %d)", rval);
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
rust_crate_cache *
|
|
|
|
rust_dom::get_cache(rust_crate const *crate) {
|
|
|
|
log(rust_log::CACHE,
|
|
|
|
"looking for crate-cache for crate 0x%" PRIxPTR, crate);
|
|
|
|
rust_crate_cache *cache = NULL;
|
|
|
|
for (size_t i = 0; i < caches.length(); ++i) {
|
|
|
|
rust_crate_cache *c = caches[i];
|
|
|
|
if (c->crate == crate) {
|
|
|
|
cache = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!cache) {
|
|
|
|
log(rust_log::CACHE,
|
|
|
|
"making new crate-cache for crate 0x%" PRIxPTR, crate);
|
|
|
|
cache = new (this) rust_crate_cache(this, crate);
|
|
|
|
caches.push(cache);
|
|
|
|
}
|
|
|
|
cache->ref();
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: C++
|
|
|
|
// fill-column: 70;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|
|
|
|
//
|