2021-07-28 11:56:35 +02:00
|
|
|
#ifndef OVNI_EMU_H
|
|
|
|
#define OVNI_EMU_H
|
|
|
|
|
|
|
|
#include "ovni.h"
|
2021-07-29 17:46:25 +02:00
|
|
|
#include "uthash.h"
|
2021-08-03 17:48:37 +02:00
|
|
|
#include "parson.h"
|
2021-07-28 11:56:35 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/* Debug macros */
|
|
|
|
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
|
|
# define dbg(...) fprintf(stderr, __VA_ARGS__);
|
|
|
|
#else
|
|
|
|
# define dbg(...)
|
|
|
|
#endif
|
|
|
|
|
2021-10-21 16:05:01 +02:00
|
|
|
#define err(...) fprintf(stderr, __VA_ARGS__);
|
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
|
|
|
};
|
|
|
|
|
2021-07-29 17:46:25 +02:00
|
|
|
enum nosv_task_state {
|
|
|
|
TASK_ST_CREATED,
|
|
|
|
TASK_ST_RUNNING,
|
|
|
|
TASK_ST_PAUSED,
|
|
|
|
TASK_ST_DEAD,
|
|
|
|
};
|
|
|
|
|
2021-09-23 10:41:53 +02:00
|
|
|
enum nosv_thread_ss_state {
|
|
|
|
ST_NULL = 0,
|
|
|
|
ST_SCHED_HUNGRY = 6,
|
|
|
|
ST_SCHED_SERVING = 7,
|
|
|
|
ST_SCHED_SUBMITTING = 8,
|
2021-09-23 15:12:55 +02:00
|
|
|
ST_MEM_ALLOCATING = 9,
|
2021-10-11 11:12:26 +02:00
|
|
|
ST_TASK_RUNNING = 10,
|
|
|
|
ST_NOSV_CODE = 11,
|
2021-10-13 14:44:20 +02:00
|
|
|
ST_PAUSE = 12,
|
|
|
|
ST_YIELD = 13,
|
|
|
|
ST_WAITFOR = 14,
|
|
|
|
ST_SCHEDPOINT = 15,
|
2021-10-11 11:12:26 +02:00
|
|
|
ST_BAD = 666,
|
2021-09-23 10:41:53 +02:00
|
|
|
};
|
|
|
|
|
2021-10-11 17:29:45 +02:00
|
|
|
enum nosv_tampi_state {
|
|
|
|
ST_TAMPI_SEND = 1,
|
|
|
|
ST_TAMPI_RECV = 2,
|
|
|
|
ST_TAMPI_ISEND = 3,
|
|
|
|
ST_TAMPI_IRECV = 4,
|
|
|
|
ST_TAMPI_WAIT = 5,
|
|
|
|
ST_TAMPI_WAITALL = 6,
|
|
|
|
};
|
|
|
|
|
2021-09-23 10:41:53 +02:00
|
|
|
enum nosv_thread_ss_event {
|
|
|
|
EV_NULL = 0,
|
2021-10-13 14:45:55 +02:00
|
|
|
EV_SCHED_RECV = 50,
|
|
|
|
EV_SCHED_SEND = 51,
|
|
|
|
EV_SCHED_SELF = 52,
|
2021-09-23 10:41:53 +02:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
struct nosv_task {
|
|
|
|
int id;
|
2021-07-29 18:13:41 +02:00
|
|
|
int type_id;
|
2021-07-29 17:46:25 +02:00
|
|
|
struct ovni_ethread *thread;
|
|
|
|
enum nosv_task_state state;
|
|
|
|
UT_hash_handle hh;
|
|
|
|
};
|
|
|
|
|
2021-07-29 18:13:41 +02:00
|
|
|
struct nosv_task_type {
|
|
|
|
int id;
|
2021-07-30 20:08:40 +02:00
|
|
|
const char *label;
|
2021-07-29 18:13:41 +02:00
|
|
|
UT_hash_handle hh;
|
|
|
|
};
|
|
|
|
|
2021-10-21 16:15:29 +02:00
|
|
|
#define MAX_CHAN_STACK 128
|
|
|
|
|
2021-10-21 16:41:52 +02:00
|
|
|
enum chan_track {
|
|
|
|
CHAN_TRACK_NONE = 0,
|
|
|
|
CHAN_TRACK_TH_RUNNING,
|
2021-10-11 11:12:26 +02:00
|
|
|
CHAN_TRACK_TH_UNPAUSED,
|
2021-10-21 16:41:52 +02:00
|
|
|
};
|
|
|
|
|
2021-10-21 16:15:29 +02:00
|
|
|
struct ovni_chan {
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* 1 if channel needs flush to PRV */
|
|
|
|
int dirty;
|
|
|
|
|
|
|
|
/* Where should the events be written to? */
|
|
|
|
FILE *prv;
|
2021-10-21 16:39:36 +02:00
|
|
|
|
|
|
|
/* What should cause the channel to become disabled? */
|
|
|
|
enum chan_track track;
|
2021-10-21 16:15:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum chan {
|
|
|
|
CHAN_OVNI_PID,
|
2021-10-21 16:39:36 +02:00
|
|
|
CHAN_OVNI_TID,
|
|
|
|
CHAN_OVNI_NTHREADS,
|
|
|
|
CHAN_OVNI_STATE,
|
|
|
|
CHAN_OVNI_APPID,
|
|
|
|
CHAN_OVNI_CPU,
|
|
|
|
|
|
|
|
CHAN_NOSV_TASKID,
|
|
|
|
CHAN_NOSV_TYPEID,
|
|
|
|
CHAN_NOSV_APPID,
|
|
|
|
CHAN_NOSV_SUBSYSTEM,
|
2021-10-11 17:29:45 +02:00
|
|
|
|
|
|
|
CHAN_TAMPI_MODE,
|
|
|
|
|
2021-10-21 16:15:29 +02:00
|
|
|
CHAN_MAX
|
|
|
|
};
|
2021-09-23 10:41:53 +02:00
|
|
|
|
2021-10-21 16:39:36 +02:00
|
|
|
/* Same order as `enum chan` */
|
2021-10-11 11:12:26 +02:00
|
|
|
const static int chan_to_prvtype[CHAN_MAX][3] = {
|
2021-10-21 16:39:36 +02:00
|
|
|
/* Channel TH CPU */
|
|
|
|
{ CHAN_OVNI_PID, 10, 60 },
|
|
|
|
{ CHAN_OVNI_TID, 11, 61 },
|
|
|
|
{ CHAN_OVNI_NTHREADS, -1, 62 },
|
|
|
|
{ CHAN_OVNI_STATE, 13, 63 },
|
|
|
|
{ CHAN_OVNI_APPID, 14, 64 },
|
|
|
|
{ CHAN_OVNI_CPU, 15, -1 },
|
|
|
|
|
|
|
|
{ CHAN_NOSV_TASKID, 20, 70 },
|
|
|
|
{ CHAN_NOSV_TYPEID, 21, 71 },
|
|
|
|
{ CHAN_NOSV_APPID, 22, 72 },
|
|
|
|
{ CHAN_NOSV_SUBSYSTEM, 23, 73 },
|
2021-10-11 17:29:45 +02:00
|
|
|
|
|
|
|
{ CHAN_TAMPI_MODE, 30, 80 },
|
2021-10-21 16:08:03 +02:00
|
|
|
};
|
|
|
|
|
2021-10-21 16:39:36 +02:00
|
|
|
///* All PRV event types */
|
|
|
|
//enum prv_type {
|
|
|
|
// /* Rows are CPUs */
|
|
|
|
// PTC_PROC_PID = 10,
|
|
|
|
// PTC_THREAD_TID = 11,
|
|
|
|
// PTC_NTHREADS = 12,
|
|
|
|
// PTC_TASK_ID = 20,
|
|
|
|
// PTC_TASK_TYPE_ID = 21,
|
|
|
|
// PTC_APP_ID = 30,
|
|
|
|
// PTC_SUBSYSTEM = 31,
|
|
|
|
//
|
|
|
|
// /* Rows are threads */
|
|
|
|
// PTT_THREAD_STATE = 60,
|
|
|
|
// PTT_THREAD_TID = 61,
|
|
|
|
// PTT_SUBSYSTEM = 62,
|
|
|
|
//
|
|
|
|
// PTT_TASK_ID = 63,
|
|
|
|
// PTT_TASK_TYPE_ID = 64,
|
|
|
|
// PTT_TASK_APP_ID = 65,
|
|
|
|
//};
|
|
|
|
|
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-30 20:08:40 +02:00
|
|
|
/* Stream fd */
|
|
|
|
int stream_fd;
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
enum ethread_state state;
|
|
|
|
|
|
|
|
/* 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 */
|
|
|
|
|
|
|
|
/* nosv task */
|
|
|
|
struct nosv_task *task;
|
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];
|
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;
|
2021-08-03 18:42:56 +02:00
|
|
|
int appid;
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
/* Path of the process tracedir */
|
|
|
|
char dir[PATH_MAX];
|
|
|
|
|
|
|
|
/* Threads */
|
|
|
|
size_t nthreads;
|
|
|
|
struct ovni_ethread thread[OVNI_MAX_THR];
|
2021-07-30 21:37:25 +02:00
|
|
|
|
2021-08-03 17:48:37 +02:00
|
|
|
JSON_Value *meta;
|
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
/* ------ Subsystem specific data --------*/
|
|
|
|
/* TODO: Use dynamic allocation */
|
|
|
|
|
|
|
|
struct nosv_task_type *types;
|
|
|
|
struct nosv_task *tasks;
|
|
|
|
|
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-21 16:42:46 +02:00
|
|
|
/* CPU channels */
|
|
|
|
struct ovni_chan chan[CHAN_MAX];
|
|
|
|
|
2021-07-28 19:12:20 +02:00
|
|
|
size_t last_nthreads;
|
|
|
|
|
2021-10-21 16:05:01 +02:00
|
|
|
/* 1 if the cpu has updated is threads, 0 if not */
|
|
|
|
int updated;
|
|
|
|
|
2021-07-28 11:56:35 +02:00
|
|
|
/* The threads the cpu is currently running */
|
|
|
|
size_t nthreads;
|
|
|
|
struct ovni_ethread *thread[OVNI_MAX_THR];
|
2021-10-11 11:12:26 +02:00
|
|
|
|
|
|
|
/* Cpu name as shown in paraver row */
|
|
|
|
char name[MAX_CPU_NAME];
|
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
|
|
|
|
|
|
|
int max_ncpus;
|
2021-08-02 18:15:59 +02:00
|
|
|
int max_phyid;
|
2021-07-28 11:56:35 +02:00
|
|
|
int ncpus;
|
2021-08-19 11:32:16 +02:00
|
|
|
int offset_ncpus;
|
2021-07-28 11:56:35 +02:00
|
|
|
struct ovni_cpu cpu[OVNI_MAX_CPU];
|
|
|
|
|
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-08-02 21:13:03 +02:00
|
|
|
struct ovni_eproc proc[OVNI_MAX_PROC];
|
2021-10-21 16:05:01 +02:00
|
|
|
|
|
|
|
/* Keep a list of updated cpus */
|
|
|
|
int nupdated_cpus;
|
|
|
|
struct ovni_cpu *updated_cpu[OVNI_MAX_CPU];
|
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 {
|
|
|
|
int nlooms;
|
|
|
|
struct ovni_loom loom[OVNI_MAX_LOOM];
|
2021-09-27 17:42:14 +02:00
|
|
|
|
|
|
|
/* Index of next virtual event */
|
|
|
|
int ivirtual;
|
|
|
|
|
|
|
|
/* Number of virtual events stored */
|
|
|
|
int nvirtual;
|
|
|
|
|
|
|
|
/* The virtual events are generated by the emulator */
|
|
|
|
struct ovni_ev *virtual_events;
|
|
|
|
|
2021-08-02 21:13:03 +02:00
|
|
|
int nstreams;
|
|
|
|
struct ovni_stream *stream;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ovni_stream {
|
|
|
|
uint8_t *buf;
|
|
|
|
size_t size;
|
|
|
|
size_t offset;
|
|
|
|
|
|
|
|
int tid;
|
|
|
|
int thread;
|
|
|
|
int proc;
|
|
|
|
int loom;
|
|
|
|
int loaded;
|
|
|
|
int active;
|
|
|
|
struct ovni_ev *cur_ev;
|
|
|
|
uint64_t lastclock;
|
2021-08-03 19:56:31 +02:00
|
|
|
int64_t clock_offset;
|
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;
|
|
|
|
|
2021-08-02 21:13:03 +02:00
|
|
|
struct nosv_task *cur_task;
|
|
|
|
|
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;
|
|
|
|
|
2021-08-03 18:42:56 +02:00
|
|
|
FILE *prv_thread;
|
|
|
|
FILE *prv_cpu;
|
2021-08-03 20:47:02 +02:00
|
|
|
FILE *pcf_thread;
|
|
|
|
FILE *pcf_cpu;
|
2021-08-03 18:42:56 +02:00
|
|
|
|
2021-08-03 19:56:31 +02:00
|
|
|
char *clock_offset_file;
|
|
|
|
char *tracedir;
|
|
|
|
|
2021-08-02 10:08:58 +02:00
|
|
|
/* Total counters */
|
2021-10-21 16:34:04 +02:00
|
|
|
int total_nthreads;
|
2021-08-02 10:08:58 +02:00
|
|
|
int total_proc;
|
2021-10-21 16:34:04 +02:00
|
|
|
int total_ncpus;
|
2021-07-28 11:56:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Emulator function declaration */
|
|
|
|
|
|
|
|
void emu_emit(struct ovni_emu *emu);
|
|
|
|
|
2021-10-21 16:46:42 +02:00
|
|
|
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-30 21:37:25 +02:00
|
|
|
void hook_emit_ovni(struct ovni_emu *emu);
|
2021-07-28 19:12:20 +02:00
|
|
|
void hook_post_ovni(struct ovni_emu *emu);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-10-21 16:46:42 +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);
|
2021-07-30 21:37:25 +02:00
|
|
|
void hook_emit_nosv(struct ovni_emu *emu);
|
2021-07-29 17:46:25 +02:00
|
|
|
void hook_post_nosv(struct ovni_emu *emu);
|
|
|
|
|
2021-10-21 16:46:42 +02:00
|
|
|
void hook_init_nosv_ss(struct ovni_emu *emu);
|
2021-09-23 10:41:53 +02:00
|
|
|
void hook_pre_nosv_ss(struct ovni_emu *emu);
|
|
|
|
void hook_emit_nosv_ss(struct ovni_emu *emu);
|
|
|
|
void hook_post_nosv_ss(struct ovni_emu *emu);
|
|
|
|
|
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-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
|
|
|
|
2021-09-20 15:42:45 +02:00
|
|
|
struct ovni_ethread *emu_get_thread(struct ovni_eproc *proc, int tid);
|
2021-07-28 11:56:35 +02:00
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
void emu_emit_prv(struct ovni_emu *emu, int type, int val);
|
|
|
|
|
2021-09-27 17:42:14 +02:00
|
|
|
void
|
|
|
|
emu_virtual_ev(struct ovni_emu *emu, char *mcv);
|
|
|
|
|
2021-07-28 11:56:35 +02:00
|
|
|
#endif /* OVNI_EMU_H */
|