2021-07-28 11:56:35 +02:00
|
|
|
#include "ovni.h"
|
|
|
|
#include "emu.h"
|
2021-08-02 10:08:58 +02:00
|
|
|
#include "prv.h"
|
2021-10-21 16:15:29 +02:00
|
|
|
#include "chan.h"
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2021-10-21 16:05:01 +02:00
|
|
|
/* The emulator ovni module provides the execution model by tracking the thread
|
|
|
|
* state and which threads run in each CPU */
|
|
|
|
|
2021-10-21 16:46:42 +02:00
|
|
|
/* --------------------------- init ------------------------------- */
|
|
|
|
|
|
|
|
void
|
|
|
|
hook_init_ovni(struct ovni_emu *emu)
|
|
|
|
{
|
|
|
|
struct ovni_ethread *th;
|
|
|
|
struct ovni_cpu *cpu;
|
2021-10-18 12:47:51 +02:00
|
|
|
struct ovni_chan **uth, **ucpu;
|
|
|
|
size_t i;
|
|
|
|
int row;
|
2021-10-21 16:46:42 +02:00
|
|
|
FILE *prv_th, *prv_cpu;
|
|
|
|
int64_t *clock;
|
|
|
|
|
|
|
|
clock = &emu->delta_time;
|
|
|
|
prv_th = emu->prv_thread;
|
|
|
|
prv_cpu = emu->prv_cpu;
|
|
|
|
|
|
|
|
/* Init the ovni channels in all threads */
|
|
|
|
for(i=0; i<emu->total_nthreads; i++)
|
|
|
|
{
|
|
|
|
th = emu->global_thread[i];
|
|
|
|
row = th->gindex + 1;
|
2021-10-18 12:47:51 +02:00
|
|
|
uth = &emu->th_chan;
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
chan_th_init(th, uth, CHAN_OVNI_TID, CHAN_TRACK_TH_RUNNING, th->tid, 0, 1, row, prv_th, clock);
|
|
|
|
chan_th_init(th, uth, CHAN_OVNI_PID, CHAN_TRACK_TH_RUNNING, th->proc->pid, 0, 1, row, prv_th, clock);
|
|
|
|
chan_th_init(th, uth, CHAN_OVNI_CPU, CHAN_TRACK_NONE, -1, 0, 1, row, prv_th, clock);
|
|
|
|
chan_th_init(th, uth, CHAN_OVNI_STATE, CHAN_TRACK_NONE, TH_ST_UNKNOWN, 1, 1, row, prv_th, clock);
|
2021-10-21 16:46:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Init the ovni channels in all cpus */
|
|
|
|
for(i=0; i<emu->total_ncpus; i++)
|
|
|
|
{
|
|
|
|
cpu = emu->global_cpu[i];
|
|
|
|
row = cpu->gindex + 1;
|
2021-10-18 12:47:51 +02:00
|
|
|
ucpu = &emu->cpu_chan;
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
chan_cpu_init(cpu, ucpu, CHAN_OVNI_TID, CHAN_TRACK_TH_RUNNING, row, prv_cpu, clock);
|
|
|
|
chan_cpu_init(cpu, ucpu, CHAN_OVNI_PID, CHAN_TRACK_TH_RUNNING, row, prv_cpu, clock);
|
2021-10-19 10:13:57 +02:00
|
|
|
chan_cpu_init(cpu, ucpu, CHAN_OVNI_NRTHREADS, CHAN_TRACK_NONE, row, prv_cpu, clock);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* FIXME: Use extended initialization for CPUs too */
|
2021-10-21 16:46:42 +02:00
|
|
|
chan_enable(&cpu->chan[CHAN_OVNI_TID], 1);
|
|
|
|
chan_set(&cpu->chan[CHAN_OVNI_TID], 0);
|
|
|
|
|
|
|
|
chan_enable(&cpu->chan[CHAN_OVNI_PID], 1);
|
|
|
|
chan_set(&cpu->chan[CHAN_OVNI_PID], 0);
|
|
|
|
|
2021-10-19 10:13:57 +02:00
|
|
|
chan_enable(&cpu->chan[CHAN_OVNI_NRTHREADS], 1);
|
|
|
|
chan_set(&cpu->chan[CHAN_OVNI_NRTHREADS], 0);
|
2021-10-21 16:46:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 16:15:29 +02:00
|
|
|
/* --------------------------- pre ------------------------------- */
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Update the tracking channel if needed */
|
2021-10-21 16:15:29 +02:00
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
chan_tracking_update(struct ovni_chan *chan, struct ovni_ethread *th)
|
2021-10-21 16:15:29 +02:00
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
int enabled;
|
2021-10-11 11:12:26 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
assert(th);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
switch (chan->track)
|
2021-10-21 16:46:42 +02:00
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
case CHAN_TRACK_TH_RUNNING:
|
|
|
|
enabled = th->is_running;
|
|
|
|
break;
|
|
|
|
case CHAN_TRACK_TH_ACTIVE:
|
|
|
|
enabled = th->is_active;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dbg("ignoring thread %d chan %d with track=%d\n",
|
|
|
|
th->tid, chan->id, chan->track);
|
|
|
|
return;
|
|
|
|
}
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* The channel is already in the proper state */
|
|
|
|
if(chan_is_enabled(chan) == enabled)
|
|
|
|
return;
|
2021-10-11 11:12:26 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
dbg("thread %d changes state to %d: chan %d enabled=%d\n",
|
|
|
|
th->tid, th->state, chan->id, enabled);
|
2021-10-11 11:12:26 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
chan_enable(chan, enabled);
|
2021-10-21 16:15:29 +02:00
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Sets the state of the thread and updates the thread tracking channels */
|
2021-10-21 16:15:29 +02:00
|
|
|
static void
|
|
|
|
thread_set_state(struct ovni_ethread *th, int state)
|
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* The state must be updated when a cpu is set */
|
|
|
|
assert(th->cpu);
|
|
|
|
|
|
|
|
dbg("thread_set_state: setting thread %d state %d\n",
|
|
|
|
th->tid, state);
|
2021-10-21 16:15:29 +02:00
|
|
|
|
|
|
|
th->state = state;
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
th->is_running = (state == TH_ST_RUNNING) ? 1 : 0;
|
|
|
|
|
|
|
|
th->is_active = (state == TH_ST_RUNNING
|
|
|
|
|| state == TH_ST_COOLING
|
|
|
|
|| state == TH_ST_WARMING) ? 1 : 0;
|
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
chan_set(&th->chan[CHAN_OVNI_STATE], th->state);
|
|
|
|
|
|
|
|
/* Enable or disable the thread channels that track the thread state */
|
2021-10-18 12:47:51 +02:00
|
|
|
for(i=0; i<CHAN_MAX; i++)
|
|
|
|
chan_tracking_update(&th->chan[i], th);
|
|
|
|
|
|
|
|
dbg("thread_set_state: done\n");
|
2021-10-21 16:15:29 +02:00
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
|
|
|
cpu_update_th_stats(struct ovni_cpu *cpu)
|
2021-10-21 16:05:01 +02:00
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
struct ovni_ethread *th, *th_running = NULL, *th_active = NULL;
|
|
|
|
size_t i;
|
|
|
|
int active = 0, running = 0;
|
2021-10-21 16:05:01 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
for(i=0; i<cpu->nthreads; i++)
|
2021-10-11 11:12:26 +02:00
|
|
|
{
|
|
|
|
th = cpu->thread[i];
|
|
|
|
if(th->state == TH_ST_RUNNING)
|
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
th_running = th;
|
|
|
|
running++;
|
|
|
|
th_active = th;
|
|
|
|
active++;
|
|
|
|
}
|
|
|
|
else if(th->state == TH_ST_COOLING || th->state == TH_ST_WARMING)
|
|
|
|
{
|
|
|
|
th_active = th;
|
|
|
|
active++;
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
cpu->nrunning_threads = running;
|
|
|
|
cpu->nactive_threads = active;
|
|
|
|
cpu->th_running = th_running;
|
|
|
|
cpu->th_active = th_active;
|
|
|
|
}
|
2021-10-21 16:05:01 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
|
|
|
update_cpu(struct ovni_cpu *cpu)
|
|
|
|
{
|
|
|
|
int i;
|
2021-10-21 16:05:01 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
dbg("updating cpu %s\n", cpu->name);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Update the running and active threads first */
|
|
|
|
cpu_update_th_stats(cpu);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* From the CPU channels we only need to manually update the number of
|
|
|
|
* threads running in the CPU */
|
2021-10-19 10:13:57 +02:00
|
|
|
if(chan_get_st(&cpu->chan[CHAN_OVNI_NRTHREADS]) != (int) cpu->nrunning_threads)
|
|
|
|
chan_set(&cpu->chan[CHAN_OVNI_NRTHREADS], (int) cpu->nrunning_threads);
|
2021-10-18 12:47:51 +02:00
|
|
|
|
|
|
|
/* Update all tracking channels */
|
|
|
|
for(i=0; i<CHAN_MAX; i++)
|
|
|
|
emu_cpu_update_chan(cpu, &cpu->chan[i]);
|
|
|
|
|
|
|
|
dbg("updating cpu %s complete!\n", cpu->name);
|
2021-10-21 16:05:01 +02:00
|
|
|
}
|
|
|
|
|
2021-07-28 19:12:20 +02:00
|
|
|
struct ovni_cpu *
|
2021-08-02 21:13:03 +02:00
|
|
|
emu_get_cpu(struct ovni_loom *loom, int cpuid)
|
2021-07-28 19:12:20 +02:00
|
|
|
{
|
|
|
|
assert(cpuid < OVNI_MAX_CPU);
|
|
|
|
|
|
|
|
if(cpuid < 0)
|
|
|
|
{
|
2021-08-02 21:13:03 +02:00
|
|
|
return &loom->vcpu;
|
2021-07-28 19:12:20 +02:00
|
|
|
}
|
|
|
|
|
2021-08-02 21:13:03 +02:00
|
|
|
return &loom->cpu[cpuid];
|
2021-07-28 19:12:20 +02:00
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
static int
|
2021-07-28 19:12:20 +02:00
|
|
|
emu_cpu_find_thread(struct ovni_cpu *cpu, struct ovni_ethread *thread)
|
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
size_t i;
|
2021-07-28 19:12:20 +02:00
|
|
|
|
|
|
|
for(i=0; i<cpu->nthreads; i++)
|
|
|
|
if(cpu->thread[i] == thread)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Not found */
|
|
|
|
if(i >= cpu->nthreads)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Add the given thread to the list of threads assigned to the CPU */
|
2021-10-11 11:12:26 +02:00
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
cpu_add_thread(struct ovni_cpu *cpu, struct ovni_ethread *thread)
|
2021-07-28 19:12:20 +02:00
|
|
|
{
|
|
|
|
/* Found, abort */
|
|
|
|
if(emu_cpu_find_thread(cpu, thread) >= 0)
|
2021-10-18 12:47:51 +02:00
|
|
|
{
|
|
|
|
err("The thread %d is already assigned to %s\n",
|
|
|
|
thread->tid, cpu->name);
|
2021-07-28 19:12:20 +02:00
|
|
|
abort();
|
2021-10-18 12:47:51 +02:00
|
|
|
}
|
2021-07-28 19:12:20 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Ensure that we have room for another thread */
|
2021-07-28 19:12:20 +02:00
|
|
|
assert(cpu->nthreads < OVNI_MAX_THR);
|
|
|
|
|
|
|
|
cpu->thread[cpu->nthreads++] = thread;
|
2021-10-21 16:05:01 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
update_cpu(cpu);
|
2021-07-28 19:12:20 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
cpu_remove_thread(struct ovni_cpu *cpu, struct ovni_ethread *thread)
|
2021-07-28 19:12:20 +02:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
i = emu_cpu_find_thread(cpu, thread);
|
|
|
|
|
|
|
|
/* Not found, abort */
|
|
|
|
if(i < 0)
|
|
|
|
abort();
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
for(j=i; j+1 < (int)cpu->nthreads; j++)
|
2021-07-28 19:12:20 +02:00
|
|
|
cpu->thread[i] = cpu->thread[j+1];
|
|
|
|
|
|
|
|
cpu->nthreads--;
|
2021-10-21 16:05:01 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
update_cpu(cpu);
|
2021-07-28 19:12:20 +02:00
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
|
|
|
cpu_migrate_thread(struct ovni_cpu *cpu,
|
2021-10-11 11:12:26 +02:00
|
|
|
struct ovni_ethread *thread,
|
|
|
|
struct ovni_cpu *newcpu)
|
|
|
|
{
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
cpu_remove_thread(cpu, thread);
|
|
|
|
cpu_add_thread(newcpu, thread);
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sets the thread assigned CPU to the given one.
|
|
|
|
* Precondition: the thread CPU must be null */
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_set_cpu(struct ovni_ethread *th, struct ovni_cpu *cpu)
|
|
|
|
{
|
|
|
|
assert(th->cpu == NULL);
|
2021-10-18 12:47:51 +02:00
|
|
|
dbg("thread_set_cpu: setting thread %d cpu to %s\n",
|
|
|
|
th->tid, cpu->name);
|
2021-10-11 11:12:26 +02:00
|
|
|
th->cpu = cpu;
|
|
|
|
|
|
|
|
chan_enable(&th->chan[CHAN_OVNI_CPU], 1);
|
|
|
|
chan_set(&th->chan[CHAN_OVNI_CPU], cpu->gindex + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unsets the thread assigned CPU.
|
|
|
|
* Precondition: the thread CPU must be not null */
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_unset_cpu(struct ovni_ethread *th)
|
|
|
|
{
|
|
|
|
assert(th->cpu != NULL);
|
|
|
|
th->cpu = NULL;
|
|
|
|
|
|
|
|
chan_enable(&th->chan[CHAN_OVNI_CPU], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Migrates the thread assigned CPU to the given one.
|
|
|
|
* Precondition: the thread CPU must be not null */
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_migrate_cpu(struct ovni_ethread *th, struct ovni_cpu *cpu)
|
|
|
|
{
|
|
|
|
assert(th->cpu != NULL);
|
|
|
|
th->cpu = cpu;
|
|
|
|
|
|
|
|
assert(chan_is_enabled(&th->chan[CHAN_OVNI_CPU]));
|
|
|
|
chan_set(&th->chan[CHAN_OVNI_CPU], cpu->gindex + 1);
|
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
//static void
|
|
|
|
//print_threads_state(struct ovni_loom *loom)
|
|
|
|
//{
|
|
|
|
// struct ovni_cpu *cpu;
|
|
|
|
// size_t i, j;
|
|
|
|
//
|
|
|
|
// for(i=0; i<loom->ncpus; i++)
|
|
|
|
// {
|
|
|
|
// cpu = &loom->cpu[i];
|
|
|
|
//
|
|
|
|
// dbg("-- cpu %ld runs %lu threads:", i, cpu->nthreads);
|
|
|
|
// for(j=0; j<cpu->nthreads; j++)
|
|
|
|
// {
|
|
|
|
// dbg(" %ld", cpu->thread[j]->tid);
|
|
|
|
// }
|
|
|
|
// dbg("\n");
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// dbg("-- vcpu runs %lu threads:", loom->vcpu.nthreads);
|
|
|
|
// for(j=0; j<loom->vcpu.nthreads; j++)
|
|
|
|
// {
|
|
|
|
// dbg(" %ld", loom->vcpu.thread[j]->tid);
|
|
|
|
// }
|
|
|
|
// dbg("\n");
|
|
|
|
//}
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
static void
|
2021-10-11 11:12:26 +02:00
|
|
|
pre_thread_execute(struct ovni_emu *emu, struct ovni_ethread *th)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
|
|
|
struct ovni_cpu *cpu;
|
|
|
|
int cpuid;
|
|
|
|
|
|
|
|
/* The thread cannot be already running */
|
2021-10-21 16:15:29 +02:00
|
|
|
assert(th->state != TH_ST_RUNNING);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
cpuid = emu->cur_ev->payload.i32[0];
|
2021-10-18 12:47:51 +02:00
|
|
|
|
2021-08-02 21:13:03 +02:00
|
|
|
cpu = emu_get_cpu(emu->cur_loom, cpuid);
|
2021-10-18 12:47:51 +02:00
|
|
|
dbg("pre_thread_execute: thread %d runs in CPU %s\n", th->tid, cpu->name);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* First set the CPU in the thread */
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_set_cpu(th, cpu);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Then set the thread to running state */
|
|
|
|
thread_set_state(th, TH_ST_RUNNING);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* And then add the thread to the CPU, so tracking channels see the
|
|
|
|
* updated thread state */
|
|
|
|
cpu_add_thread(cpu, th);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
pre_thread_end(struct ovni_ethread *th)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-21 16:46:42 +02:00
|
|
|
assert(th->state == TH_ST_RUNNING);
|
|
|
|
assert(th->cpu);
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* First update the thread state */
|
2021-10-21 16:46:42 +02:00
|
|
|
thread_set_state(th, TH_ST_DEAD);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
/* Then remove it from the cpu, so channels are properly updated */
|
|
|
|
cpu_remove_thread(th->cpu, th);
|
|
|
|
|
|
|
|
thread_unset_cpu(th);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
pre_thread_pause(struct ovni_ethread *th)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-11 11:12:26 +02:00
|
|
|
assert(th->state == TH_ST_RUNNING || th->state == TH_ST_COOLING);
|
|
|
|
assert(th->cpu);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_set_state(th, TH_ST_PAUSED);
|
2021-10-18 12:47:51 +02:00
|
|
|
update_cpu(th->cpu);
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
pre_thread_resume(struct ovni_ethread *th)
|
2021-10-11 11:12:26 +02:00
|
|
|
{
|
|
|
|
assert(th->state == TH_ST_PAUSED || th->state == TH_ST_WARMING);
|
|
|
|
assert(th->cpu);
|
|
|
|
|
|
|
|
thread_set_state(th, TH_ST_RUNNING);
|
2021-10-18 12:47:51 +02:00
|
|
|
update_cpu(th->cpu);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
pre_thread_cool(struct ovni_ethread *th)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-11 11:12:26 +02:00
|
|
|
assert(th->state == TH_ST_RUNNING);
|
|
|
|
assert(th->cpu);
|
|
|
|
|
|
|
|
thread_set_state(th, TH_ST_COOLING);
|
2021-10-18 12:47:51 +02:00
|
|
|
update_cpu(th->cpu);
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
static void
|
2021-10-18 12:47:51 +02:00
|
|
|
pre_thread_warm(struct ovni_ethread *th)
|
2021-10-11 11:12:26 +02:00
|
|
|
{
|
|
|
|
assert(th->state == TH_ST_PAUSED);
|
|
|
|
assert(th->cpu);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_set_state(th, TH_ST_WARMING);
|
2021-10-18 12:47:51 +02:00
|
|
|
update_cpu(th->cpu);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-21 16:15:29 +02:00
|
|
|
pre_thread(struct ovni_emu *emu)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
|
|
|
struct ovni_ev *ev;
|
2021-10-18 12:47:51 +02:00
|
|
|
struct ovni_ethread *th;
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-07-29 17:46:25 +02:00
|
|
|
//emu_emit(emu);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
th = emu->cur_thread;
|
2021-07-28 11:56:35 +02:00
|
|
|
ev = emu->cur_ev;
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
switch(ev->header.value)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-11 11:12:26 +02:00
|
|
|
case 'C': /* create */
|
2021-07-28 11:56:35 +02:00
|
|
|
dbg("thread %d creates a new thread at cpu=%d with args=%x %x\n",
|
2021-10-11 11:12:26 +02:00
|
|
|
th->tid,
|
2021-07-28 11:56:35 +02:00
|
|
|
ev->payload.u32[0],
|
|
|
|
ev->payload.u32[1],
|
|
|
|
ev->payload.u32[2]);
|
|
|
|
|
|
|
|
break;
|
2021-10-11 11:12:26 +02:00
|
|
|
case 'x': pre_thread_execute(emu, th); break;
|
2021-10-18 12:47:51 +02:00
|
|
|
case 'e': pre_thread_end(th); break;
|
|
|
|
case 'p': pre_thread_pause(th); break;
|
|
|
|
case 'r': pre_thread_resume(th); break;
|
|
|
|
case 'c': pre_thread_cool(th); break;
|
|
|
|
case 'w': pre_thread_warm(th); break;
|
2021-07-28 11:56:35 +02:00
|
|
|
default:
|
2021-09-27 17:42:14 +02:00
|
|
|
err("unknown thread event value %c\n",
|
|
|
|
ev->header.value);
|
|
|
|
exit(EXIT_FAILURE);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-21 16:15:29 +02:00
|
|
|
pre_affinity_set(struct ovni_emu *emu)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
|
|
|
int cpuid;
|
|
|
|
struct ovni_cpu *newcpu;
|
2021-10-11 11:12:26 +02:00
|
|
|
struct ovni_ethread *th;
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
th = emu->cur_thread;
|
2021-07-28 11:56:35 +02:00
|
|
|
cpuid = emu->cur_ev->payload.i32[0];
|
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
assert(th->cpu);
|
|
|
|
assert(th->state == TH_ST_RUNNING
|
|
|
|
|| th->state == TH_ST_COOLING
|
|
|
|
|| th->state == TH_ST_WARMING);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
/* Migrate current cpu to the one at cpuid */
|
2021-08-02 21:13:03 +02:00
|
|
|
newcpu = emu_get_cpu(emu->cur_loom, cpuid);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
if(th->cpu == newcpu)
|
2021-10-21 16:46:42 +02:00
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
/* No need to warn the user */
|
|
|
|
//err("warning: thread %d affinity already set to cpu %d\n",
|
|
|
|
// th->tid,
|
|
|
|
// th->cpu->gindex);
|
2021-10-21 16:46:42 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
cpu_migrate_thread(th->cpu, th, newcpu);
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_migrate_cpu(th, newcpu);
|
2021-10-21 16:46:42 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
//dbg("cpu %d now runs %d\n", cpuid, th->tid);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-21 16:15:29 +02:00
|
|
|
pre_affinity_remote(struct ovni_emu *emu)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-18 12:47:51 +02:00
|
|
|
size_t i;
|
|
|
|
int32_t cpuid, tid;
|
2021-07-28 11:56:35 +02:00
|
|
|
struct ovni_cpu *newcpu;
|
2021-10-11 11:12:26 +02:00
|
|
|
struct ovni_ethread *remote_th;
|
2021-10-11 16:27:28 +02:00
|
|
|
struct ovni_loom *loom;
|
|
|
|
struct ovni_eproc *proc;
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
cpuid = emu->cur_ev->payload.i32[0];
|
|
|
|
tid = emu->cur_ev->payload.i32[1];
|
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
remote_th = emu_get_thread(emu->cur_proc, tid);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 16:27:28 +02:00
|
|
|
if(remote_th == NULL)
|
|
|
|
{
|
|
|
|
/* Search the thread in other processes of the loom if
|
|
|
|
* not found in the current one */
|
|
|
|
loom = emu->cur_loom;
|
|
|
|
|
|
|
|
for(i=0; i<loom->nprocs; i++)
|
|
|
|
{
|
|
|
|
proc = &loom->proc[i];
|
|
|
|
|
|
|
|
/* Skip the current process */
|
|
|
|
if(proc == emu->cur_proc)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
remote_th = emu_get_thread(proc, tid);
|
|
|
|
|
|
|
|
if(remote_th)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(remote_th == NULL)
|
|
|
|
{
|
|
|
|
err("thread tid %d not found: cannot set affinity remotely\n",
|
|
|
|
tid);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2021-08-10 12:46:45 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
/* The remote_th cannot be in states dead or unknown */
|
|
|
|
assert(remote_th->state != TH_ST_DEAD
|
|
|
|
&& remote_th->state != TH_ST_UNKNOWN);
|
2021-08-10 12:46:45 +02:00
|
|
|
|
|
|
|
/* It must have an assigned CPU */
|
2021-10-11 11:12:26 +02:00
|
|
|
assert(remote_th->cpu);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-08-10 12:46:45 +02:00
|
|
|
/* Migrate current cpu to the one at cpuid */
|
2021-08-02 21:13:03 +02:00
|
|
|
newcpu = emu_get_cpu(emu->cur_loom, cpuid);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
cpu_migrate_thread(remote_th->cpu, remote_th, newcpu);
|
2021-10-11 11:12:26 +02:00
|
|
|
thread_migrate_cpu(remote_th, newcpu);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-11 11:12:26 +02:00
|
|
|
//dbg("remote_th %d switches to cpu %d by remote petition\n", tid,
|
2021-07-29 17:46:25 +02:00
|
|
|
// cpuid);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-10-21 16:15:29 +02:00
|
|
|
pre_affinity(struct ovni_emu *emu)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-07-29 17:46:25 +02:00
|
|
|
//emu_emit(emu);
|
2021-07-30 20:08:40 +02:00
|
|
|
switch(emu->cur_ev->header.value)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-21 16:15:29 +02:00
|
|
|
case 's': pre_affinity_set(emu); break;
|
|
|
|
case 'r': pre_affinity_remote(emu); break;
|
2021-07-28 11:56:35 +02:00
|
|
|
default:
|
|
|
|
dbg("unknown affinity event value %c\n",
|
2021-07-30 20:08:40 +02:00
|
|
|
emu->cur_ev->header.value);
|
2021-07-28 11:56:35 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
static void
|
2021-10-11 11:12:26 +02:00
|
|
|
pre_burst(struct ovni_emu *emu)
|
|
|
|
{
|
2021-10-11 12:42:37 +02:00
|
|
|
struct ovni_ethread *th;
|
2021-10-11 11:12:26 +02:00
|
|
|
int64_t dt;
|
2021-10-11 12:42:37 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
UNUSED(dt);
|
|
|
|
|
2021-10-11 12:42:37 +02:00
|
|
|
th = emu->cur_thread;
|
|
|
|
|
|
|
|
if(th->nbursts >= MAX_BURSTS)
|
2021-10-11 11:12:26 +02:00
|
|
|
{
|
2021-10-11 12:42:37 +02:00
|
|
|
err("too many bursts: ignored\n");
|
|
|
|
return;
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 12:42:37 +02:00
|
|
|
th->burst_time[th->nbursts] = emu->delta_time;
|
|
|
|
if(th->nbursts > 0)
|
2021-10-11 11:12:26 +02:00
|
|
|
{
|
2021-10-11 12:42:37 +02:00
|
|
|
dt = th->burst_time[th->nbursts] -
|
|
|
|
th->burst_time[th->nbursts - 1];
|
2021-10-11 11:12:26 +02:00
|
|
|
|
2021-10-18 12:47:51 +02:00
|
|
|
dbg("burst delta time %ld ns\n", dt);
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
2021-10-11 12:42:37 +02:00
|
|
|
|
|
|
|
th->nbursts++;
|
2021-10-11 11:12:26 +02:00
|
|
|
}
|
|
|
|
|
2021-07-28 11:56:35 +02:00
|
|
|
void
|
2021-07-28 19:12:20 +02:00
|
|
|
hook_pre_ovni(struct ovni_emu *emu)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
|
|
|
//emu_emit(emu);
|
|
|
|
|
2021-10-21 16:05:01 +02:00
|
|
|
if(emu->cur_ev->header.model != 'O')
|
|
|
|
return;
|
|
|
|
|
2021-10-11 15:46:49 +02:00
|
|
|
switch(emu->cur_ev->header.category)
|
2021-07-28 11:56:35 +02:00
|
|
|
{
|
2021-10-21 16:15:29 +02:00
|
|
|
case 'H': pre_thread(emu); break;
|
|
|
|
case 'A': pre_affinity(emu); break;
|
2021-10-11 11:12:26 +02:00
|
|
|
case 'B': pre_burst(emu); break;
|
2021-07-28 11:56:35 +02:00
|
|
|
default:
|
2021-10-11 15:46:49 +02:00
|
|
|
dbg("unknown ovni event category %c\n",
|
|
|
|
emu->cur_ev->header.category);
|
2021-07-28 11:56:35 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-07-29 17:46:25 +02:00
|
|
|
//print_threads_state(emu);
|
2021-07-28 11:56:35 +02:00
|
|
|
}
|