Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add extern "C"
[simgrid.git] / src / include / mc / mc.h
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _MC_MC_H
8 #define _MC_MC_H
9
10 #ifdef _XBT_WIN32
11 #  include <xbt/win32_ucontext.h>     /* context relative declarations */
12 #else
13 #  include <ucontext.h>           /* context relative declarations */
14 #endif
15
16
17 #include "xbt/base.h"
18 #include "xbt/misc.h"
19 #include "xbt/fifo.h"
20 #include "xbt/dict.h"
21 #include "xbt/function_types.h"
22 #include "simgrid/simix.h"
23 #include "simgrid/modelchecker.h" /* our public interface (and definition of HAVE_MC) */
24 #include "xbt/automaton.h"
25 #include "xbt/dynar.h"
26
27 /* Maximum size of the application heap.
28  *
29  * The model-checker heap is placed at this offset from the
30  * beginning of the application heap.
31  *
32  * In the current implementation, if the application uses more
33  * than this for the application heap the application heap will
34  * smash the beginning of the model-checker heap and bad things
35  * will happen.
36  *
37  * For 64 bits systems, we have a lot of virtual memory available
38  * so we wan use a much bigger value in order to avoid bad things
39  * from happening.
40  * */
41
42 #define STD_HEAP_SIZE   (sizeof(void*)<=4 ? (100*1024*1024) : (1ll*1024*1024*1024*1024))
43
44 SG_BEGIN_DECL()
45
46 /********************************** Configuration of MC **************************************/  
47
48 extern XBT_PUBLIC(int) _sg_do_model_check;
49 extern XBT_PRIVATE int _sg_do_model_check_record;
50 extern XBT_PRIVATE int _sg_mc_checkpoint;
51 extern XBT_PUBLIC(int) _sg_mc_sparse_checkpoint;
52 extern XBT_PUBLIC(int) _sg_mc_ksm;
53 extern XBT_PUBLIC(int) _sg_mc_soft_dirty;
54 extern XBT_PUBLIC(char*) _sg_mc_property_file;
55 extern XBT_PRIVATE int _sg_mc_timeout;
56 extern XBT_PRIVATE int _sg_mc_hash;
57 extern XBT_PRIVATE int _sg_mc_max_depth;
58 extern XBT_PUBLIC(int) _sg_mc_visited;
59 extern XBT_PRIVATE char* _sg_mc_dot_output_file;
60 extern XBT_PUBLIC(int) _sg_mc_comms_determinism;
61 extern XBT_PUBLIC(int) _sg_mc_send_determinism;
62 extern XBT_PRIVATE int _sg_mc_safety;
63 extern XBT_PRIVATE int _sg_mc_liveness;
64 extern XBT_PRIVATE int _sg_mc_snapshot_fds;
65 extern XBT_PRIVATE int _sg_mc_termination;
66
67 /********************************* Global *************************************/
68
69 XBT_PRIVATE void _mc_cfg_cb_reduce(const char *name, int pos);
70 XBT_PRIVATE void _mc_cfg_cb_checkpoint(const char *name, int pos);
71 XBT_PRIVATE void _mc_cfg_cb_sparse_checkpoint(const char *name, int pos);
72 XBT_PRIVATE void _mc_cfg_cb_ksm(const char *name, int pos);
73 XBT_PRIVATE void _mc_cfg_cb_soft_dirty(const char *name, int pos);
74 XBT_PRIVATE void _mc_cfg_cb_property(const char *name, int pos);
75 XBT_PRIVATE void _mc_cfg_cb_timeout(const char *name, int pos);
76 XBT_PRIVATE void _mc_cfg_cb_snapshot_fds(const char *name, int pos);
77 XBT_PRIVATE void _mc_cfg_cb_hash(const char *name, int pos);
78 XBT_PRIVATE void _mc_cfg_cb_max_depth(const char *name, int pos);
79 XBT_PRIVATE void _mc_cfg_cb_visited(const char *name, int pos);
80 XBT_PRIVATE void _mc_cfg_cb_dot_output(const char *name, int pos);
81 XBT_PRIVATE void _mc_cfg_cb_comms_determinism(const char *name, int pos);
82 XBT_PRIVATE void _mc_cfg_cb_send_determinism(const char *name, int pos);
83 XBT_PRIVATE void _mc_cfg_cb_termination(const char *name, int pos);
84
85 XBT_PUBLIC(void) MC_run(void);
86 XBT_PUBLIC(void) MC_init(void);
87 XBT_PUBLIC(void) MC_exit(void);
88 XBT_PUBLIC(void) MC_process_clock_add(smx_process_t, double);
89 XBT_PUBLIC(double) MC_process_clock_get(smx_process_t);
90 XBT_PRIVATE void MC_automaton_load(const char *file);
91
92 /****************************** MC ignore **********************************/
93 XBT_PUBLIC(void) MC_ignore_heap(void *address, size_t size);
94 XBT_PUBLIC(void) MC_remove_ignore_heap(void *address, size_t size);
95 XBT_PUBLIC(void) MC_ignore_local_variable(const char *var_name, const char *frame);
96 XBT_PUBLIC(void) MC_ignore_global_variable(const char *var_name);
97 XBT_PUBLIC(void) MC_register_stack_area(void *stack, smx_process_t process, ucontext_t* context, size_t size);
98
99 /********************************* Memory *************************************/
100 XBT_PUBLIC(void) MC_memory_init(void);  /* Initialize the memory subsystem */
101 XBT_PUBLIC(void) MC_memory_exit(void);
102 XBT_PUBLIC(void) MC_memory_init_server(void);
103
104 SG_END_DECL()
105
106 #endif                          /* _MC_MC_H */