Rodrigo Arias
354f2f50eb
Until now, emulation models were always being registered via probe(), which causes the emulator to initialize all the channels. To reduce the overhead, the channels were not connected or registered in the bay until the first event of that model was received. This delayed connect was causing issues in muxes where the newly connected model required refreshing the touched channels. Which in turn was causing unexpected PRV events. By determining which models we need to enable, we can remove the delayed connect mechanism and just enable those models at initialization time, and connect the channels.
45 lines
908 B
C
45 lines
908 B
C
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#include <stdint.h>
|
|
#include "compat.h"
|
|
#include "instr.h"
|
|
#include "instr_nosv.h"
|
|
|
|
static void
|
|
create_and_run(int32_t id, uint32_t typeid, int us)
|
|
{
|
|
instr_nosv_task_create(id, typeid);
|
|
/* Change subsystem to prevent duplicates */
|
|
instr_nosv_submit_enter();
|
|
instr_nosv_task_execute(id);
|
|
sleep_us(us);
|
|
}
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
instr_start(0, 1);
|
|
instr_nosv_init();
|
|
|
|
int ntasks = 100;
|
|
uint32_t typeid = 1;
|
|
|
|
instr_nosv_type_create(typeid);
|
|
|
|
/* Create and run the tasks, one nested into another */
|
|
for (int i = 0; i < ntasks; i++)
|
|
create_and_run(i + 1, typeid, 500);
|
|
|
|
/* End the tasks in the opposite order */
|
|
for (int i = ntasks - 1; i >= 0; i--) {
|
|
instr_nosv_task_end(i + 1);
|
|
/* Change subsystem to prevent duplicates */
|
|
instr_nosv_submit_exit();
|
|
}
|
|
|
|
instr_end();
|
|
|
|
return 0;
|
|
}
|