Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
6f4c1dac267df780162c68a5ca10b023a5e50acc
[simgrid.git] / src / mc / mc_comm_pattern.h
1 /* Copyright (c) 2007-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 SIMGRID_MC_COMM_PATTERN_H
8 #define SIMGRID_MC_COMM_PATTERN_H
9
10 #include <cstddef>
11 #include <cstring>
12
13 #include <string>
14 #include <vector>
15
16 #include <simgrid_config.h>
17 #include <xbt/dynar.h>
18
19 #include "src/simix/smx_private.h"
20 #include "src/smpi/private.h"
21 #include <smpi/smpi.h>
22
23 #include "src/mc/mc_state.h"
24
25 namespace simgrid {
26 namespace mc {
27
28 struct PatternCommunicationList {
29   unsigned int index_comm = 0;
30   std::vector<std::unique_ptr<simgrid::mc::PatternCommunication>> list;
31 };
32
33 }
34 }
35
36 SG_BEGIN_DECL()
37
38 /**
39  *  Type: `xbt_dynar_t<mc_list_comm_pattern_t>`
40  */
41 extern XBT_PRIVATE xbt_dynar_t initial_communications_pattern;
42
43 /**
44  *  Type: `xbt_dynar_t<xbt_dynar_t<simgrid::mc::PatternCommunication*>>`
45  */
46 extern XBT_PRIVATE xbt_dynar_t incomplete_communications_pattern;
47
48 typedef enum {
49   MC_CALL_TYPE_NONE,
50   MC_CALL_TYPE_SEND,
51   MC_CALL_TYPE_RECV,
52   MC_CALL_TYPE_WAIT,
53   MC_CALL_TYPE_WAITANY,
54 } e_mc_call_type_t;
55
56 typedef enum {
57   NONE_DIFF,
58   TYPE_DIFF,
59   RDV_DIFF,
60   TAG_DIFF,
61   SRC_PROC_DIFF,
62   DST_PROC_DIFF,
63   DATA_SIZE_DIFF,
64   DATA_DIFF,
65 } e_mc_comm_pattern_difference_t;
66
67 static inline e_mc_call_type_t MC_get_call_type(smx_simcall_t req)
68 {
69   switch(req->call) {
70   case SIMCALL_COMM_ISEND:
71     return MC_CALL_TYPE_SEND;
72   case SIMCALL_COMM_IRECV:
73     return MC_CALL_TYPE_RECV;
74   case SIMCALL_COMM_WAIT:
75     return MC_CALL_TYPE_WAIT;
76   case SIMCALL_COMM_WAITANY:
77     return MC_CALL_TYPE_WAITANY;
78   default:
79     return MC_CALL_TYPE_NONE;
80   }
81 }
82
83 XBT_PRIVATE void MC_handle_comm_pattern(e_mc_call_type_t call_type, smx_simcall_t request, int value, xbt_dynar_t current_pattern, int backtracking);
84
85 XBT_PRIVATE void MC_restore_communications_pattern(simgrid::mc::State* state);
86
87 XBT_PRIVATE void MC_state_copy_incomplete_communications_pattern(simgrid::mc::State* state);
88 XBT_PRIVATE void MC_state_copy_index_communications_pattern(simgrid::mc::State* state);
89
90 SG_END_DECL()
91
92 #endif