ovni/emu_openmp.c

94 lines
2.0 KiB
C
Raw Normal View History

2022-09-19 12:39:02 +02:00
/* Copyright (c) 2021 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
2021-10-26 18:42:41 +02:00
2021-10-11 12:29:12 +02:00
#include "uthash.h"
#include "chan.h"
2021-10-11 12:29:12 +02:00
#include "emu.h"
#include "ovni.h"
2021-10-11 12:29:12 +02:00
#include "prv.h"
/* --------------------------- init ------------------------------- */
void
hook_init_openmp(struct ovni_emu *emu)
{
struct ovni_ethread *th;
struct ovni_cpu *cpu;
size_t i;
int row;
2021-10-11 12:29:12 +02:00
FILE *prv_th, *prv_cpu;
int64_t *clock;
struct ovni_chan **uth, **ucpu;
2021-10-11 12:29:12 +02:00
clock = &emu->delta_time;
prv_th = emu->prv_thread;
prv_cpu = emu->prv_cpu;
/* Init the channels in all threads */
for (i = 0; i < emu->total_nthreads; i++) {
2021-10-11 12:29:12 +02:00
th = emu->global_thread[i];
row = th->gindex + 1;
uth = &emu->th_chan;
2021-10-11 12:29:12 +02:00
chan_th_init(th, uth, CHAN_OPENMP_MODE, CHAN_TRACK_TH_RUNNING, 0, 0, 1, row, prv_th, clock);
2021-10-11 12:29:12 +02:00
}
/* Init the channels in all cpus */
for (i = 0; i < emu->total_ncpus; i++) {
2021-10-11 12:29:12 +02:00
cpu = emu->global_cpu[i];
row = cpu->gindex + 1;
ucpu = &emu->cpu_chan;
2021-10-11 12:29:12 +02:00
chan_cpu_init(cpu, ucpu, CHAN_OPENMP_MODE, CHAN_TRACK_TH_RUNNING, 0, 0, 1, row, prv_cpu, clock);
2021-10-11 12:29:12 +02:00
}
}
/* --------------------------- pre ------------------------------- */
static void
2021-10-19 10:25:08 +02:00
pre_mode(struct ovni_emu *emu, int st)
2021-10-11 12:29:12 +02:00
{
struct ovni_ethread *th;
2021-10-19 10:25:08 +02:00
struct ovni_chan *chan;
2021-10-11 12:29:12 +02:00
th = emu->cur_thread;
2021-10-19 10:25:08 +02:00
chan = &th->chan[CHAN_OPENMP_MODE];
2021-10-11 12:29:12 +02:00
switch (emu->cur_ev->header.value) {
2021-10-11 12:29:12 +02:00
case '[':
2021-10-19 10:25:08 +02:00
chan_push(chan, st);
2021-10-11 12:29:12 +02:00
break;
case ']':
2021-10-19 10:25:08 +02:00
chan_pop(chan, st);
2021-10-11 12:29:12 +02:00
break;
default:
2021-10-19 10:25:08 +02:00
err("unexpected value '%c' (expecting '[' or ']')\n",
emu->cur_ev->header.value);
2021-10-19 10:25:08 +02:00
abort();
2021-10-11 12:29:12 +02:00
}
}
void
hook_pre_openmp(struct ovni_emu *emu)
{
if (emu->cur_ev->header.model != 'M')
die("hook_pre_openmp: unexpected event with model %c\n",
emu->cur_ev->header.model);
if (!emu->cur_thread->is_active)
die("hook_pre_openmp: current thread %d not active\n",
emu->cur_thread->tid);
2021-10-11 12:29:12 +02:00
switch (emu->cur_ev->header.category) {
case 'T':
pre_mode(emu, ST_OPENMP_TASK);
break;
case 'P':
pre_mode(emu, ST_OPENMP_PARALLEL);
break;
2021-10-11 12:29:12 +02:00
default:
break;
}
}