ovni/emu.h

577 lines
12 KiB
C
Raw Normal View History

2021-10-26 18:42:41 +02:00
/*
* Copyright (c) 2021 Barcelona Supercomputing Center (BSC)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-07-28 11:56:35 +02:00
#ifndef OVNI_EMU_H
#define OVNI_EMU_H
#include <stdio.h>
2021-12-09 16:56:24 +01:00
#include "common.h"
2021-07-28 11:56:35 +02:00
#include "ovni.h"
2021-07-29 17:46:25 +02:00
#include "uthash.h"
#include "parson.h"
#include "heap.h"
2022-05-31 20:39:57 +02:00
#include "pcf.h"
2021-07-28 11:56:35 +02:00
/* Emulated thread runtime status */
enum ethread_state {
TH_ST_UNKNOWN,
TH_ST_RUNNING,
TH_ST_PAUSED,
TH_ST_DEAD,
2021-10-11 11:12:26 +02:00
TH_ST_COOLING,
TH_ST_WARMING,
2021-07-28 11:56:35 +02:00
};
2022-07-01 17:54:18 +02:00
enum task_state {
2021-07-29 17:46:25 +02:00
TASK_ST_CREATED,
TASK_ST_RUNNING,
TASK_ST_PAUSED,
TASK_ST_DEAD,
};
enum ovni_state {
ST_OVNI_FLUSHING = 1,
};
2021-10-19 10:07:01 +02:00
enum error_values {
ST_BAD = 666,
ST_TOO_MANY_TH = 777,
};
2021-10-14 07:30:27 +02:00
enum nosv_ss_values {
2021-09-23 10:41:53 +02:00
ST_NULL = 0,
2021-10-14 07:30:27 +02:00
ST_NOSV_SCHED_HUNGRY = 6,
ST_NOSV_SCHED_SERVING,
ST_NOSV_SCHED_SUBMITTING,
ST_NOSV_MEM_ALLOCATING,
ST_NOSV_MEM_FREEING,
ST_NOSV_TASK_RUNNING,
ST_NOSV_API_SUBMIT,
ST_NOSV_API_PAUSE,
ST_NOSV_API_YIELD,
ST_NOSV_API_WAITFOR,
ST_NOSV_API_SCHEDPOINT,
ST_NOSV_ATTACH,
ST_NOSV_WORKER,
ST_NOSV_DELEGATE,
2021-10-14 07:30:27 +02:00
EV_NOSV_SCHED_RECV,
EV_NOSV_SCHED_SEND,
EV_NOSV_SCHED_SELF,
2021-09-23 10:41:53 +02:00
};
enum tampi_state {
2021-10-11 17:29:45 +02:00
ST_TAMPI_SEND = 1,
ST_TAMPI_RECV = 2,
ST_TAMPI_ISEND = 3,
ST_TAMPI_IRECV = 4,
ST_TAMPI_WAIT = 5,
ST_TAMPI_WAITALL = 6,
};
enum openmp_state {
2021-10-11 12:29:12 +02:00
ST_OPENMP_TASK = 1,
ST_OPENMP_PARALLEL = 2,
};
2021-12-03 16:24:41 +01:00
enum nodes_state {
ST_NODES_REGISTER = 1,
ST_NODES_UNREGISTER = 2,
ST_NODES_IF0_WAIT = 3,
ST_NODES_IF0_INLINE = 4,
ST_NODES_TASKWAIT = 5,
ST_NODES_CREATE = 6,
ST_NODES_SUBMIT = 7,
ST_NODES_SPAWN = 8,
2021-10-25 16:57:31 +02:00
};
2022-07-01 17:54:18 +02:00
/* The values of nanos6_ss_state are synced to the previous
* CTF implementation. */
enum nanos6_ss_state {
2022-08-23 12:44:57 +02:00
ST_NANOS6_NULL = 0, /* IDLE */
ST_NANOS6_TASK_BODY = 3, /* TASK */
ST_NANOS6_TASK_CREATING = 8, /* TASK_CREATE */
ST_NANOS6_TASK_SUBMIT = 10, /* TASK_SUBMIT */
ST_NANOS6_TASK_SPAWNING = 18, /* SPAWN_FUNCTION */
2022-08-23 12:44:57 +02:00
ST_NANOS6_SCHED_HUNGRY = 2, /* BUSY_WAIT */
ST_NANOS6_SCHED_ADDING = 6, /* SCHEDULER_ADD_TASK */
ST_NANOS6_SCHED_SERVING = 20, /* SCHEDULER_LOCK_SERVING */
2022-08-23 12:44:57 +02:00
ST_NANOS6_DEP_REG = 4, /* DEPENDENCY_REGISTER */
ST_NANOS6_DEP_UNREG = 5, /* DEPENDENCY_UNREGISTER */
ST_NANOS6_BLK_TASKWAIT = 12, /* TASK_WAIT */
ST_NANOS6_BLK_WAITFOR = 13, /* WAIT_FOR */
ST_NANOS6_BLK_BLOCKING = 16, /* BLOCKING_API_BLOCK */
ST_NANOS6_BLK_UNBLOCKING = 17, /* BLOCKING_API_UNBLOCK */
EV_NANOS6_SCHED_RECV = 50,
EV_NANOS6_SCHED_SEND = 51,
EV_NANOS6_SCHED_SELF = 52,
2022-07-01 17:54:18 +02:00
};
enum nanos6_thread_state {
ST_NANOS6_TH_EXTERNAL = 1,
ST_NANOS6_TH_WORKER,
ST_NANOS6_TH_LEADER,
ST_NANOS6_TH_MAIN
2022-07-01 17:54:18 +02:00
};
enum kernel_cs_state {
ST_KERNEL_CSOUT = 3,
};
2021-07-29 17:46:25 +02:00
struct ovni_ethread;
2021-08-02 10:08:58 +02:00
struct ovni_eproc;
2021-07-29 17:46:25 +02:00
2022-07-01 17:54:18 +02:00
struct task_type {
uint32_t id; /* Per-process task identifier */
uint32_t gid; /* Global identifier computed from the label */
char label[MAX_PCF_LABEL];
UT_hash_handle hh;
};
2022-07-01 17:54:18 +02:00
struct task {
uint32_t id;
2022-07-01 17:54:18 +02:00
struct task_type *type;
/* The thread that has began to execute the task. It cannot
* change after being set, even if the task ends. */
2021-07-29 17:46:25 +02:00
struct ovni_ethread *thread;
2022-07-01 17:54:18 +02:00
enum task_state state;
2021-07-29 17:46:25 +02:00
UT_hash_handle hh;
2021-12-07 18:56:05 +01:00
/* List handle for nested task support */
2022-07-01 17:54:18 +02:00
struct task *next;
struct task *prev;
2021-07-29 17:46:25 +02:00
};
struct task_info {
/* Both hash maps of all known tasks and types */
struct task_type *types;
struct task *tasks;
};
struct task_stack {
union {
struct task *top; /* Synctactic sugar */
struct task *tasks;
};
struct ovni_ethread *thread;
};
2021-10-21 16:15:29 +02:00
#define MAX_CHAN_STACK 128
enum chan_track {
/* The channel is manually controlled. */
CHAN_TRACK_NONE = 0,
/* Enables the channel when the thread is running only. */
CHAN_TRACK_TH_RUNNING,
/* The thread active tracking mode a enables the channel when
* the thread is running, cooling or warming. Otherwise the
* channel is disabled. */
CHAN_TRACK_TH_ACTIVE,
};
enum chan {
CHAN_OVNI_PID,
CHAN_OVNI_TID,
2021-10-19 10:13:57 +02:00
CHAN_OVNI_NRTHREADS,
CHAN_OVNI_STATE,
CHAN_OVNI_APPID,
CHAN_OVNI_CPU,
CHAN_OVNI_FLUSH,
CHAN_NOSV_TASKID,
CHAN_NOSV_TYPE,
CHAN_NOSV_APPID,
CHAN_NOSV_SUBSYSTEM,
2021-12-10 18:20:31 +01:00
CHAN_NOSV_RANK,
CHAN_TAMPI_MODE,
CHAN_OPENMP_MODE,
2021-12-03 16:24:41 +01:00
CHAN_NODES_SUBSYSTEM,
2022-07-01 17:54:18 +02:00
CHAN_NANOS6_TASKID,
CHAN_NANOS6_TYPE,
CHAN_NANOS6_SUBSYSTEM,
CHAN_NANOS6_RANK,
CHAN_NANOS6_THREAD,
2022-07-01 17:54:18 +02:00
CHAN_KERNEL_CS,
CHAN_MAX
};
2022-05-31 20:39:57 +02:00
enum chan_type {
CHAN_TH = 0,
CHAN_CPU = 1,
CHAN_MAXTYPE = 2,
};
enum chan_dirty {
CHAN_CLEAN = 0,
/* The channel is dirty because it has been enabled or disabled */
CHAN_DIRTY_ACTIVE = 1,
/* The channel is dirty because it changed the state */
CHAN_DIRTY_VALUE = 2,
};
2022-07-01 17:54:18 +02:00
static const int chan_to_prvtype[CHAN_MAX] = {
[CHAN_OVNI_PID] = 1,
[CHAN_OVNI_TID] = 2,
[CHAN_OVNI_NRTHREADS] = 3,
[CHAN_OVNI_STATE] = 4,
[CHAN_OVNI_APPID] = 5, /* Not used */
[CHAN_OVNI_CPU] = 6,
[CHAN_OVNI_FLUSH] = 7,
[CHAN_NOSV_TASKID] = 10,
[CHAN_NOSV_TYPE] = 11,
[CHAN_NOSV_APPID] = 12,
[CHAN_NOSV_SUBSYSTEM] = 13,
[CHAN_NOSV_RANK] = 14,
[CHAN_TAMPI_MODE] = 20,
[CHAN_OPENMP_MODE] = 25,
[CHAN_NODES_SUBSYSTEM] = 30,
[CHAN_NANOS6_TASKID] = 35,
[CHAN_NANOS6_TYPE] = 36,
[CHAN_NANOS6_SUBSYSTEM] = 37,
[CHAN_NANOS6_RANK] = 38,
[CHAN_NANOS6_THREAD] = 39,
[CHAN_KERNEL_CS] = 45,
};
2021-10-21 16:15:29 +02:00
struct ovni_chan {
/* Channel id */
enum chan id;
2021-10-21 16:15:29 +02:00
/* Number of states in the stack */
int n;
/* Stack of states */
int stack[MAX_CHAN_STACK];
/* 1 if enabled, 0 if not. */
int enabled;
/* What state should be shown in errors */
int badst;
/* Last state emitted (-1 otherwise) */
int lastst;
2021-10-21 16:15:29 +02:00
/* Punctual event: -1 if not used */
int ev;
/* Emit events of this type */
int type;
/* A pointer to a clock to sample the time */
int64_t *clock;
/* The time of the last state or event */
int64_t t;
/* Paraver row */
int row;
/* Type of dirty */
enum chan_dirty dirty;
2021-10-21 16:15:29 +02:00
/* Where should the events be written to? */
FILE *prv;
/* What should cause the channel to become disabled? */
enum chan_track track;
2021-10-21 16:15:29 +02:00
/* The thread associated with the channel if any */
struct ovni_ethread *thread;
/* The CPU associated with the channel if any */
struct ovni_cpu *cpu;
2021-10-11 17:29:45 +02:00
struct ovni_chan **update_list;
2021-10-11 12:29:12 +02:00
/* Used when the channel is a list */
struct ovni_chan *prev;
struct ovni_chan *next;
2021-10-21 16:08:03 +02:00
};
2021-10-11 12:42:37 +02:00
#define MAX_BURSTS 100
2021-07-28 11:56:35 +02:00
/* State of each emulated thread */
struct ovni_ethread {
/* Emulated thread tid */
pid_t tid;
2021-08-02 10:08:58 +02:00
int index;
int gindex;
/* The process associated with this thread */
struct ovni_eproc *proc;
2021-07-28 11:56:35 +02:00
enum ethread_state state;
int is_running;
int is_active;
2021-07-28 11:56:35 +02:00
/* Thread stream */
struct ovni_stream *stream;
/* Current cpu */
struct ovni_cpu *cpu;
2021-07-29 17:46:25 +02:00
/* FIXME: Use a table with registrable pointers to custom data
* structures */
2022-07-01 17:54:18 +02:00
/* Task stacks, top ones are the tasks currently runnable. */
struct task_stack nosv_task_stack;
struct task_stack nanos6_task_stack;
2021-09-27 17:42:14 +02:00
2021-10-21 16:15:29 +02:00
/* Channels are used to output the emulator state in PRV */
struct ovni_chan chan[CHAN_MAX];
2021-10-11 12:42:37 +02:00
/* Burst times */
int nbursts;
int64_t burst_time[MAX_BURSTS];
/* These pointers keep a linked list of threads in each CPU */
struct ovni_ethread *prev;
struct ovni_ethread *next;
/* Trace file path */
char tracefile[PATH_MAX];
2021-07-28 11:56:35 +02:00
};
/* State of each emulated process */
struct ovni_eproc {
2021-07-30 21:37:25 +02:00
int pid;
2021-08-02 10:08:58 +02:00
int index;
int gindex;
int appid;
2021-12-10 18:20:31 +01:00
int rank;
2021-07-28 11:56:35 +02:00
2021-10-14 09:06:11 +02:00
/* The loom of the current process */
struct ovni_loom *loom;
2021-07-28 11:56:35 +02:00
/* Path of the process tracedir */
char dir[PATH_MAX];
/* Threads */
size_t nthreads;
2021-11-18 16:20:20 +01:00
struct ovni_ethread *thread;
2021-07-30 21:37:25 +02:00
JSON_Value *meta;
2021-07-30 21:37:25 +02:00
/* ------ Subsystem specific data --------*/
/* TODO: Use dynamic allocation */
struct task_info nosv_task_info;
struct task_info nanos6_task_info;
2021-07-28 11:56:35 +02:00
};
/* ------------------ emulation ---------------- */
enum ovni_cpu_type {
CPU_REAL,
CPU_VIRTUAL,
};
enum ovni_cpu_state {
CPU_ST_UNKNOWN,
CPU_ST_READY,
};
2021-10-11 11:12:26 +02:00
#define MAX_CPU_NAME 32
2021-07-28 11:56:35 +02:00
struct ovni_cpu {
2021-08-02 18:15:59 +02:00
/* Logical index: 0 to ncpus - 1 */
int i;
2021-07-28 11:56:35 +02:00
2021-08-02 18:15:59 +02:00
/* Physical id: as reported by lscpu(1) */
int phyid;
2021-07-28 11:56:35 +02:00
2021-08-02 21:13:03 +02:00
/* Global index for all CPUs */
int gindex;
2021-07-28 11:56:35 +02:00
enum ovni_cpu_state state;
2021-10-14 09:08:07 +02:00
/* The loom of the CPU */
struct ovni_loom *loom;
2021-10-21 16:42:46 +02:00
/* CPU channels */
struct ovni_chan chan[CHAN_MAX];
/* The threads assigned to this CPU */
2021-07-28 11:56:35 +02:00
size_t nthreads;
struct ovni_ethread *thread;
2021-10-11 11:12:26 +02:00
/* Running threads */
size_t nrunning_threads;
struct ovni_ethread *th_running;
/* Active threads (not paused or dead) */
size_t nactive_threads;
struct ovni_ethread *th_active;
2021-10-11 11:12:26 +02:00
/* Cpu name as shown in paraver row */
char name[MAX_CPU_NAME];
2021-11-29 11:02:54 +01:00
/* Is this a virtual CPU? */
int virtual;
2021-07-28 11:56:35 +02:00
};
2021-08-02 21:13:03 +02:00
/* ----------------------- trace ------------------------ */
/* State of each loom on post-process */
struct ovni_loom {
size_t nprocs;
2021-08-10 10:16:41 +02:00
char hostname[OVNI_MAX_HOSTNAME];
2021-07-28 11:56:35 +02:00
size_t max_ncpus;
size_t max_phyid;
size_t ncpus;
size_t offset_ncpus;
2021-11-18 18:27:28 +01:00
struct ovni_cpu *cpu;
2021-12-10 18:20:31 +01:00
int rank_enabled;
2021-07-28 11:56:35 +02:00
2021-08-03 19:56:31 +02:00
int64_t clock_offset;
2021-07-28 11:56:35 +02:00
/* Virtual CPU */
struct ovni_cpu vcpu;
2021-11-18 15:53:10 +01:00
struct ovni_eproc *proc;
2021-08-02 21:13:03 +02:00
};
2021-09-27 17:42:14 +02:00
#define MAX_VIRTUAL_EVENTS 16
2021-08-02 21:13:03 +02:00
struct ovni_trace {
size_t nlooms;
2021-11-18 14:05:19 +01:00
struct ovni_loom *loom;
2021-09-27 17:42:14 +02:00
size_t nstreams;
2021-08-02 21:13:03 +02:00
struct ovni_stream *stream;
};
struct ovni_stream {
uint8_t *buf;
size_t size;
size_t offset;
int tid;
struct ovni_loom *loom;
struct ovni_eproc *proc;
struct ovni_ethread *thread;
2021-08-02 21:13:03 +02:00
int loaded;
int active;
double progress;
2021-08-02 21:13:03 +02:00
struct ovni_ev *cur_ev;
int64_t lastclock;
2021-08-03 19:56:31 +02:00
int64_t clock_offset;
heap_node_t hh;
2021-08-02 21:13:03 +02:00
};
struct ovni_emu {
struct ovni_trace trace;
2021-07-28 11:56:35 +02:00
struct ovni_stream *cur_stream;
struct ovni_ev *cur_ev;
struct ovni_loom *cur_loom;
struct ovni_eproc *cur_proc;
struct ovni_ethread *cur_thread;
2021-10-21 16:34:04 +02:00
/* Indexed by gindex */
struct ovni_ethread **global_thread;
struct ovni_cpu **global_cpu;
/* Global processed size and offset of all streams */
size_t global_size;
size_t global_offset;
double start_emulation_time;
2021-08-03 19:56:31 +02:00
int64_t firstclock;
int64_t lastclock;
2021-07-29 17:46:25 +02:00
int64_t delta_time;
/* Counters for statistics */
int64_t nev_processed;
2021-11-08 17:06:17 +01:00
/* Be strict */
int enable_linter;
FILE *prv_thread;
FILE *prv_cpu;
2022-05-31 20:39:57 +02:00
struct pcf_file pcf[CHAN_MAXTYPE];
2021-08-03 19:56:31 +02:00
char *clock_offset_file;
char *tracedir;
2021-08-02 10:08:58 +02:00
/* Total counters */
size_t total_nthreads;
size_t total_nprocs;
size_t total_ncpus;
uint32_t nosv_type_counter;
/* Keep a list of dirty channels for the CPUs and threads */
struct ovni_chan *cpu_chan;
struct ovni_chan *th_chan;
heap_head_t sorted_stream;
2021-07-28 11:56:35 +02:00
};
/* Emulator function declaration */
void hook_init_ovni(struct ovni_emu *emu);
2021-07-28 19:12:20 +02:00
void hook_pre_ovni(struct ovni_emu *emu);
2021-07-28 11:56:35 +02:00
void hook_init_nosv(struct ovni_emu *emu);
2021-07-29 17:46:25 +02:00
void hook_pre_nosv(struct ovni_emu *emu);
void hook_end_nosv(struct ovni_emu *emu);
2021-07-29 17:46:25 +02:00
2021-10-11 17:29:45 +02:00
void hook_init_tampi(struct ovni_emu *emu);
void hook_pre_tampi(struct ovni_emu *emu);
2021-10-11 12:29:12 +02:00
void hook_init_openmp(struct ovni_emu *emu);
void hook_pre_openmp(struct ovni_emu *emu);
2021-12-03 16:24:41 +01:00
void hook_init_nodes(struct ovni_emu *emu);
void hook_pre_nodes(struct ovni_emu *emu);
2021-10-25 16:57:31 +02:00
void hook_init_kernel(struct ovni_emu *emu);
void hook_pre_kernel(struct ovni_emu *emu);
2022-07-01 17:54:18 +02:00
void hook_init_nanos6(struct ovni_emu *emu);
void hook_pre_nanos6(struct ovni_emu *emu);
void hook_end_nanos6(struct ovni_emu *emu);
2021-08-02 21:13:03 +02:00
struct ovni_cpu *emu_get_cpu(struct ovni_loom *loom, int cpuid);
2021-07-28 11:56:35 +02:00
struct ovni_ethread *emu_get_thread(struct ovni_eproc *proc, int tid);
2021-07-28 11:56:35 +02:00
void emu_cpu_update_chan(struct ovni_cpu *cpu, struct ovni_chan *cpu_chan);
2021-07-30 21:37:25 +02:00
2021-07-28 11:56:35 +02:00
#endif /* OVNI_EMU_H */