114 lines
3.3 KiB
C
114 lines
3.3 KiB
C
/* Copyright (c) 2022 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#ifndef INSTR_H
|
|
#define INSTR_H
|
|
|
|
#define _GNU_SOURCE /* For gethostname() */
|
|
|
|
#include "common.h"
|
|
#include "compat.h"
|
|
#include "ovni.h"
|
|
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
#define INSTR_0ARG(name, mcv) \
|
|
static inline void name(void) \
|
|
{ \
|
|
struct ovni_ev ev = {0}; \
|
|
ovni_ev_set_clock(&ev, ovni_clock_now()); \
|
|
ovni_ev_set_mcv(&ev, mcv); \
|
|
ovni_ev_emit(&ev); \
|
|
}
|
|
|
|
#define INSTR_1ARG(name, mcv, ta, a) \
|
|
static inline void name(ta a) \
|
|
{ \
|
|
struct ovni_ev ev = {0}; \
|
|
ovni_ev_set_clock(&ev, ovni_clock_now()); \
|
|
ovni_ev_set_mcv(&ev, mcv); \
|
|
ovni_payload_add(&ev, (uint8_t *) &a, sizeof(a)); \
|
|
ovni_ev_emit(&ev); \
|
|
}
|
|
|
|
#define INSTR_2ARG(name, mcv, ta, a, tb, b) \
|
|
static inline void name(ta a, tb b) \
|
|
{ \
|
|
struct ovni_ev ev = {0}; \
|
|
ovni_ev_set_clock(&ev, ovni_clock_now()); \
|
|
ovni_ev_set_mcv(&ev, mcv); \
|
|
ovni_payload_add(&ev, (uint8_t *) &a, sizeof(a)); \
|
|
ovni_payload_add(&ev, (uint8_t *) &b, sizeof(b)); \
|
|
ovni_ev_emit(&ev); \
|
|
}
|
|
|
|
#define INSTR_3ARG(name, mcv, ta, a, tb, b, tc, c) \
|
|
static inline void name(ta a, tb b, tc c) \
|
|
{ \
|
|
struct ovni_ev ev = {0}; \
|
|
ovni_ev_set_mcv(&ev, mcv); \
|
|
ovni_ev_set_clock(&ev, ovni_clock_now()); \
|
|
ovni_payload_add(&ev, (uint8_t *) &a, sizeof(a)); \
|
|
ovni_payload_add(&ev, (uint8_t *) &b, sizeof(b)); \
|
|
ovni_payload_add(&ev, (uint8_t *) &c, sizeof(c)); \
|
|
ovni_ev_emit(&ev); \
|
|
}
|
|
|
|
INSTR_3ARG(instr_thread_execute, "OHx", int32_t, cpu, int32_t, creator_tid, uint64_t, tag)
|
|
|
|
static inline void
|
|
instr_thread_end(void)
|
|
{
|
|
struct ovni_ev ev = {0};
|
|
|
|
ovni_ev_set_mcv(&ev, "OHe");
|
|
ovni_ev_set_clock(&ev, ovni_clock_now());
|
|
ovni_ev_emit(&ev);
|
|
|
|
/* Flush the events to disk before killing the thread */
|
|
ovni_flush();
|
|
}
|
|
|
|
static inline void
|
|
instr_start(int rank, int nranks)
|
|
{
|
|
char hostname[OVNI_MAX_HOSTNAME];
|
|
char rankname[OVNI_MAX_HOSTNAME + 64];
|
|
|
|
if (gethostname(hostname, HOST_NAME_MAX) != 0)
|
|
die("gethostname failed");
|
|
|
|
sprintf(rankname, "%s.%d", hostname, rank);
|
|
|
|
ovni_proc_init(1, rankname, getpid());
|
|
ovni_proc_set_rank(rank, nranks);
|
|
ovni_thread_init(gettid());
|
|
|
|
/* All ranks inform CPUs */
|
|
for (int i = 0; i < nranks; i++)
|
|
ovni_add_cpu(i, i);
|
|
|
|
int curcpu = rank;
|
|
|
|
dbg("thread %d has cpu %d (ncpus=%d)\n",
|
|
gettid(), curcpu, nranks);
|
|
|
|
instr_thread_execute(curcpu, -1, 0);
|
|
}
|
|
|
|
static inline void
|
|
instr_end(void)
|
|
{
|
|
instr_thread_end();
|
|
ovni_thread_free();
|
|
ovni_proc_fini();
|
|
}
|
|
|
|
#endif /* INSTR_H */
|