Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'fluidio' into 'master'
[simgrid.git] / src / mc / mc_client_api.cpp
1 /* Copyright (c) 2008-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/simix.hpp"
7 #include "src/kernel/actor/ActorImpl.hpp"
8 #include "src/mc/mc_config.hpp"
9 #include "src/mc/mc_private.hpp"
10 #include "src/mc/mc_record.hpp"
11 #include "src/mc/mc_replay.hpp"
12 #include "src/mc/remote/AppSide.hpp"
13 #include "xbt/asserts.h"
14 #include "xbt/random.hpp"
15
16 /* Implementation of the user API from the App to the Checker (see modelchecker.h)  */
17
18 int MC_random(int min, int max)
19 {
20 #if SIMGRID_HAVE_MC
21   xbt_assert(mc_model_checker == nullptr);
22 #endif
23   if (not MC_is_active() && not MC_record_replay_is_active()) { // no need to do a simcall in this case
24     static simgrid::xbt::random::XbtRandom prng;
25     return prng.uniform_int(min, max);
26   }
27   simgrid::kernel::actor::RandomSimcall observer{simgrid::kernel::actor::ActorImpl::self(), min, max};
28   return simgrid::kernel::actor::simcall_answered([&observer] { return observer.get_value(); }, &observer);
29 }
30
31 void MC_assert(int prop)
32 {
33   // Cannot used xbt_assert here, or it would be an infinite recursion.
34 #if SIMGRID_HAVE_MC
35   if (mc_model_checker != nullptr)
36     xbt_die("This should be called from the client side");
37   if (not prop) {
38     if (MC_is_active())
39       simgrid::mc::AppSide::get()->report_assertion_failure();
40     if (MC_record_replay_is_active())
41       xbt_die("MC assertion failed");
42   }
43 #else
44   if (not prop)
45     xbt_die("Safety property violation detected without the model-checker");
46 #endif
47 }
48
49 int MC_is_active()
50 {
51   return simgrid::mc::cfg_do_model_check;
52 }
53
54 void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value)
55 {
56 #if SIMGRID_HAVE_MC
57   xbt_assert(mc_model_checker == nullptr);
58   simgrid::mc::AppSide::get()->declare_symbol(name, value);
59 #endif
60 }
61
62 void MC_ignore(void* addr, size_t size)
63 {
64 #if SIMGRID_HAVE_MC
65   xbt_assert(mc_model_checker == nullptr);
66   simgrid::mc::AppSide::get()->ignore_memory(addr, size);
67 #endif
68 }
69
70 void MC_ignore_heap(void *address, size_t size)
71 {
72 #if SIMGRID_HAVE_MC
73   xbt_assert(mc_model_checker == nullptr);
74   simgrid::mc::AppSide::get()->ignore_heap(address, size);
75 #endif
76 }
77
78 void MC_unignore_heap(void* address, size_t size)
79 {
80 #if SIMGRID_HAVE_MC
81   xbt_assert(mc_model_checker == nullptr);
82   simgrid::mc::AppSide::get()->unignore_heap(address, size);
83 #endif
84 }