Move notification-messages out into their own file and unify into notify_message, make them use proxies, cache task proxies in dom.

This commit is contained in:
Michael Bebenita
2010-07-28 16:24:50 -07:00
committed by Graydon Hoare
parent defd8a66ea
commit 4ff8e15128
8 changed files with 245 additions and 64 deletions

View File

@@ -259,6 +259,7 @@ RUNTIME_CS := rt/sync/spin_lock.cpp \
rt/rust_chan.cpp \ rt/rust_chan.cpp \
rt/rust_upcall.cpp \ rt/rust_upcall.cpp \
rt/rust_log.cpp \ rt/rust_log.cpp \
rt/rust_message.cpp \
rt/rust_timer.cpp \ rt/rust_timer.cpp \
rt/circular_buffer.cpp \ rt/circular_buffer.cpp \
rt/isaac/randport.cpp rt/isaac/randport.cpp
@@ -272,6 +273,7 @@ RUNTIME_HDR := rt/globals.h \
rt/rust_dom.h \ rt/rust_dom.h \
rt/rust_task.h \ rt/rust_task.h \
rt/rust_proxy.h \ rt/rust_proxy.h \
rt/rust_message.h \
rt/circular_buffer.h rt/circular_buffer.h
RUNTIME_INCS := -Irt/isaac -Irt/uthash RUNTIME_INCS := -Irt/isaac -Irt/uthash

View File

@@ -4,23 +4,6 @@
template class ptr_vec<rust_task>; template class ptr_vec<rust_task>;
rust_message::rust_message(rust_dom *dom) : dom(dom) {
}
void rust_message::process() {
}
kill_task_message::kill_task_message(rust_dom *dom, rust_task *task) :
rust_message(dom), _task(task) {
}
void kill_task_message::process() {
_task->ref_count--;
_task->kill();
}
rust_dom::rust_dom(rust_srv *srv, rust_crate const *root_crate) : rust_dom::rust_dom(rust_srv *srv, rust_crate const *root_crate) :
interrupt_flag(0), interrupt_flag(0),
@@ -54,7 +37,23 @@ del_all_tasks(rust_dom *dom, ptr_vec<rust_task> *v) {
} }
} }
void
rust_dom::delete_proxies() {
rust_task *task;
rust_proxy<rust_task> *task_proxy;
while (_task_proxies.pop(&task, &task_proxy)) {
log(rust_log::TASK, "deleting proxy %" PRIxPTR
" in dom %" PRIxPTR, task_proxy, task_proxy->dom);
delete task_proxy;
}
}
rust_dom::~rust_dom() { rust_dom::~rust_dom() {
log(rust_log::MEM | rust_log::DOM,
"~rust_dom 0x%" PRIxPTR, (uintptr_t)this);
log(rust_log::TASK, "deleting all proxies");
delete_proxies();
log(rust_log::TASK, "deleting all running tasks"); log(rust_log::TASK, "deleting all running tasks");
del_all_tasks(this, &running_tasks); del_all_tasks(this, &running_tasks);
log(rust_log::TASK, "deleting all blocked tasks"); log(rust_log::TASK, "deleting all blocked tasks");
@@ -126,8 +125,8 @@ void *
rust_dom::malloc(size_t sz) { rust_dom::malloc(size_t sz) {
void *p = srv->malloc(sz); void *p = srv->malloc(sz);
I(this, p); I(this, p);
log(rust_log::MEM, "rust_dom::malloc(%d) -> 0x%" PRIxPTR, log(rust_log::MEM, "0x%" PRIxPTR " rust_dom::malloc(%d) -> 0x%" PRIxPTR,
sz, p); (uintptr_t) this, sz, p);
return p; return p;
} }
@@ -219,6 +218,8 @@ rust_dom::reap_dead_tasks() {
rust_task *task = dead_tasks[i]; rust_task *task = dead_tasks[i];
if (task->ref_count == 0) { if (task->ref_count == 0) {
I(this, !task->waiting_tasks.length()); I(this, !task->waiting_tasks.length());
I(this, task->tasks_waiting_to_join.is_empty());
dead_tasks.swap_delete(task); dead_tasks.swap_delete(task);
log(rust_log::TASK, log(rust_log::TASK,
"deleting unreferenced dead task 0x%" PRIxPTR, task); "deleting unreferenced dead task 0x%" PRIxPTR, task);
@@ -229,18 +230,20 @@ rust_dom::reap_dead_tasks() {
} }
} }
/** /**
* Enqueues a message in this domain's incoming message queue. It's the * 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. * responsibility of the receiver to free the message once it's processed.
*/ */
void rust_dom::send_message(rust_message *message) { void rust_dom::send_message(rust_message *message) {
log(rust_log::COMM, "enqueueing message 0x%" PRIxPTR log(rust_log::COMM, "==> enqueueing \"%s\" 0x%" PRIxPTR
" in queue 0x%" PRIxPTR, " in queue 0x%" PRIxPTR,
message->label,
message, message,
&_incoming_message_queue); &_incoming_message_queue);
A(this, message->dom == this, "Message owned by non-local domain.");
_incoming_message_queue.enqueue(message); _incoming_message_queue.enqueue(message);
_incoming_message_pending.signal(); _incoming_message_pending.signal();
_progress.signal();
} }
/** /**
@@ -249,17 +252,24 @@ void rust_dom::send_message(rust_message *message) {
void rust_dom::drain_incoming_message_queue() { void rust_dom::drain_incoming_message_queue() {
rust_message *message; rust_message *message;
while ((message = (rust_message *) _incoming_message_queue.dequeue())) { while ((message = (rust_message *) _incoming_message_queue.dequeue())) {
log(rust_log::COMM, "read 0x%" PRIxPTR log(rust_log::COMM, "<== processing incoming message \"%s\" 0x%"
" from queue 0x%" PRIxPTR, PRIxPTR, message->label, message);
message,
&_incoming_message_queue);
log(rust_log::COMM, "processing incoming message 0x%" PRIxPTR,
message);
message->process(); message->process();
delete message; delete message;
} }
} }
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;
}
log(rust_log::COMM, "no proxy for 0x%" PRIxPTR, task);
proxy = new (this) rust_proxy<rust_task> (this, task, false);
_task_proxies.put(task, proxy);
return proxy;
}
/** /**
* Schedules a running task for execution. Only running tasks can be * Schedules a running task for execution. Only running tasks can be
* activated. Blocked tasks have to be unblocked before they can be * activated. Blocked tasks have to be unblocked before they can be
@@ -324,6 +334,8 @@ rust_dom::start_main_loop()
logptr("exit-task glue", root_crate->get_exit_task_glue()); logptr("exit-task glue", root_crate->get_exit_task_glue());
while (n_live_tasks() > 0) { while (n_live_tasks() > 0) {
drain_incoming_message_queue();
rust_task *scheduled_task = schedule_task(); rust_task *scheduled_task = schedule_task();
// If we cannot schedule a task because all other live tasks // If we cannot schedule a task because all other live tasks
@@ -362,8 +374,6 @@ rust_dom::start_main_loop()
(uintptr_t) &scheduled_task->stk->data[0]); (uintptr_t) &scheduled_task->stk->data[0]);
I(this, scheduled_task->rust_sp < scheduled_task->stk->limit); I(this, scheduled_task->rust_sp < scheduled_task->stk->limit);
drain_incoming_message_queue();
reap_dead_tasks(); reap_dead_tasks();
} }

View File

@@ -6,22 +6,10 @@
#define RUST_DOM_H #define RUST_DOM_H
#include "sync/lock_free_queue.h" #include "sync/lock_free_queue.h"
#include "util/hash_map.h"
class rust_message : public lock_free_queue_node, #include "rust_proxy.h"
public dom_owned<rust_message> { #include "rust_message.h"
public:
rust_dom *dom;
rust_message(rust_dom *dom);
virtual ~rust_message() {}
virtual void process();
};
class kill_task_message : public rust_message {
rust_task *_task;
public:
kill_task_message(rust_dom *dom, rust_task *task);
void process();
};
struct rust_dom struct rust_dom
{ {
@@ -48,6 +36,8 @@ struct rust_dom
condition_variable _progress; condition_variable _progress;
hash_map<rust_task *, rust_proxy<rust_task> *> _task_proxies;
// Incoming messages from other domains. // Incoming messages from other domains.
condition_variable _incoming_message_pending; condition_variable _incoming_message_pending;
lock_free_queue _incoming_message_queue; lock_free_queue _incoming_message_queue;
@@ -74,6 +64,8 @@ struct rust_dom
void send_message(rust_message *message); void send_message(rust_message *message);
void drain_incoming_message_queue(); void drain_incoming_message_queue();
rust_proxy<rust_task> *get_task_proxy(rust_task *task);
void delete_proxies();
#ifdef __WIN32__ #ifdef __WIN32__
void win32_require(LPCTSTR fn, BOOL ok); void win32_require(LPCTSTR fn, BOOL ok);

75
src/rt/rust_message.cpp Normal file
View File

@@ -0,0 +1,75 @@
#include "rust_internal.h"
#include "rust_message.h"
rust_message::
rust_message(const char* label, rust_task *source, rust_task *target) :
dom(target->dom), label(label),
_source(source),
_target(target) {
}
rust_message::~rust_message() {
}
void rust_message::process() {
I(dom, false);
}
rust_proxy<rust_task> *
rust_message::get_source_proxy() {
return dom->get_task_proxy(_source);
}
notify_message::
notify_message(notification_type type, const char* label,
rust_task *source,
rust_task *target) :
rust_message(label, source, target), type(type) {
}
/**
* Sends a message to the target task via a proxy. The message is allocated
* in the target task domain along with a proxy which points back to the
* source task.
*/
void notify_message::
send(notification_type type, const char* label, rust_task *source,
rust_proxy<rust_task> *target) {
rust_task *target_task = target->delegate();
rust_dom *target_domain = target_task->dom;
notify_message *message = new (target_domain)
notify_message(type, label, source, target_task);
target_domain->send_message(message);
}
void notify_message::process() {
rust_task *task = _target;
switch (type) {
case KILL:
task->ref_count--;
task->kill();
break;
case JOIN: {
if (task->dead() == false) {
task->tasks_waiting_to_join.append(get_source_proxy());
} else {
send(WAKEUP, "wakeup", task, get_source_proxy());
}
break;
}
case WAKEUP:
task->wakeup(get_source_proxy()->delegate());
break;
}
}
//
// Local Variables:
// mode: C++
// fill-column: 78;
// 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:
//

72
src/rt/rust_message.h Normal file
View File

@@ -0,0 +1,72 @@
#ifndef RUST_MESSAGE_H
#define RUST_MESSAGE_H
/**
* Rust messages are used for inter-thread communication. They are enqueued
* and allocated in the target domain.
*/
/**
* Abstract base class for all message types.
*/
class rust_message : public lock_free_queue_node,
public dom_owned<rust_message> {
public:
rust_dom *dom;
const char* label;
private:
rust_task *_source;
protected:
rust_task *_target;
public:
rust_message(const char* label, rust_task *source, rust_task *target);
virtual ~rust_message();
/**
* We can only access the source task through a proxy, so create one
* on demand if we need it.
*/
rust_proxy<rust_task> *get_source_proxy();
/**
* Processes the message in the target domain thread.
*/
virtual void process();
};
/**
* Notify messages are simple argument-less messages.
*/
class notify_message : public rust_message {
public:
enum notification_type {
KILL, JOIN, WAKEUP
};
const notification_type type;
notify_message(notification_type type, const char* label,
rust_task *source, rust_task *target);
void process();
/**
* This code executes in the sending domain's thread.
*/
static void
send(notification_type type, const char* label, rust_task *source,
rust_proxy<rust_task> *target);
};
//
// Local Variables:
// mode: C++
// fill-column: 78;
// 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:
//
#endif /* RUST_MESSAGE_H */

View File

@@ -385,6 +385,24 @@ rust_task::notify_waiting_tasks()
} }
} }
void
rust_task::notify_tasks_waiting_to_join() {
while (tasks_waiting_to_join.is_empty() == false) {
log(rust_log::ALL, "notify_tasks_waiting_to_join: %d",
tasks_waiting_to_join.size());
maybe_proxy<rust_task> *waiting_task = tasks_waiting_to_join.pop();
if (waiting_task->is_proxy()) {
notify_message::send(notify_message::WAKEUP, "wakeup",
this, waiting_task->as_proxy());
} else {
rust_task *task = waiting_task->delegate();
if (task->dead() == false) {
task->wakeup(this);
}
}
}
}
uintptr_t uintptr_t
rust_task::get_fp() { rust_task::get_fp() {
// sp in any suspended task points to the last callee-saved reg on // sp in any suspended task points to the last callee-saved reg on

View File

@@ -4,6 +4,10 @@
#ifndef RUST_TASK_H #ifndef RUST_TASK_H
#define RUST_TASK_H #define RUST_TASK_H
#include "util/array_list.h"
struct struct
rust_task : public maybe_proxy<rust_task>, rust_task : public maybe_proxy<rust_task>,
public dom_owned<rust_task> public dom_owned<rust_task>
@@ -35,6 +39,9 @@ rust_task : public maybe_proxy<rust_task>,
// that location before waking us up. // that location before waking us up.
uintptr_t* rendezvous_ptr; uintptr_t* rendezvous_ptr;
// List of tasks waiting for this task to finish.
array_list<maybe_proxy<rust_task> *> tasks_waiting_to_join;
rust_alarm alarm; rust_alarm alarm;
rust_task(rust_dom *dom, rust_task(rust_dom *dom,
@@ -95,6 +102,7 @@ rust_task : public maybe_proxy<rust_task>,
// Notify tasks waiting for us that we are about to die. // Notify tasks waiting for us that we are about to die.
void notify_waiting_tasks(); void notify_waiting_tasks();
void notify_tasks_waiting_to_join();
uintptr_t get_fp(); uintptr_t get_fp();
uintptr_t get_previous_fp(uintptr_t fp); uintptr_t get_previous_fp(uintptr_t fp);

View File

@@ -122,19 +122,25 @@ extern "C" CDECL void upcall_yield(rust_task *task) {
} }
extern "C" CDECL void extern "C" CDECL void
upcall_join(rust_task *task, maybe_proxy<rust_task> *proxy) { upcall_join(rust_task *task, maybe_proxy<rust_task> *target) {
LOG_UPCALL_ENTRY(task); LOG_UPCALL_ENTRY(task);
task->log(rust_log::UPCALL | rust_log::COMM, task->log(rust_log::UPCALL | rust_log::COMM,
"join proxy 0x%" PRIxPTR " -> task = 0x%" PRIxPTR, "target: 0x%" PRIxPTR ", task: 0x%" PRIxPTR,
proxy, proxy->delegate()); target, target->delegate());
rust_task *other = proxy->delegate(); rust_task *target_task = target->delegate();
if (target->is_proxy()) {
// If the other task is already dying, we don't have to wait for it. notify_message::
if (!other->dead()) { send(notify_message::JOIN, "join", task, target->as_proxy());
other->waiting_tasks.push(&task->alarm); task->block(target_task);
task->block(other);
task->yield(2); task->yield(2);
} else {
// If the other task is already dying, we don't have to wait for it.
if (target_task->dead() == false) {
target_task->tasks_waiting_to_join.push(task);
task->block(target_task);
task->yield(2);
}
} }
} }
@@ -194,22 +200,20 @@ extern "C" CDECL void upcall_fail(rust_task *task, char const *expr,
* Called whenever a task's ref count drops to zero. * Called whenever a task's ref count drops to zero.
*/ */
extern "C" CDECL void extern "C" CDECL void
upcall_kill(rust_task *task, maybe_proxy<rust_task> *target_proxy) { upcall_kill(rust_task *task, maybe_proxy<rust_task> *target) {
LOG_UPCALL_ENTRY(task); LOG_UPCALL_ENTRY(task);
rust_task *target_task = target_proxy->delegate(); rust_task *target_task = target->delegate();
if (target_proxy != target_task) {
task->dom->free(target_proxy);
}
task->log(rust_log::UPCALL | rust_log::TASK, task->log(rust_log::UPCALL | rust_log::TASK,
"kill task 0x%" PRIxPTR ", ref count %d", "kill task 0x%" PRIxPTR ", ref count %d",
target_task, target_task,
target_task->ref_count); target_task->ref_count);
if (requires_message_passing(task, target_task)) { if (target->is_proxy()) {
rust_dom *target_domain = target_task->dom; notify_message::
target_domain->send_message( send(notify_message::KILL, "kill", task, target->as_proxy());
new (target_domain) // The proxy ref_count dropped to zero, delete it here.
kill_task_message(target_domain, target_task)); delete target->as_proxy();
} else { } else {
target_task->kill(); target_task->kill();
} }
@@ -224,7 +228,7 @@ upcall_exit(rust_task *task) {
task->log(rust_log::UPCALL | rust_log::TASK, task->log(rust_log::UPCALL | rust_log::TASK,
"task ref_count: %d", task->ref_count); "task ref_count: %d", task->ref_count);
task->die(); task->die();
task->notify_waiting_tasks(); task->notify_tasks_waiting_to_join();
task->yield(1); task->yield(1);
} }