Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Do not execute MCer code in MCed mode in MC_remove_ignore_heap()
[simgrid.git] / src / mc / mc_record.cpp
1 /* Copyright (c) 2014. 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 #include <stdio.h>
8 #include <stdlib.h>
9
10 #include <xbt.h>
11 #include <simgrid/simix.h>
12
13 #include "mc_record.h"
14 #include "mc_base.h"
15
16 #ifdef HAVE_MC
17 #include "mc_private.h"
18 #include "mc_state.h"
19 #include "mc_smx.h"
20 #endif
21
22 extern "C" {
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc,
25   " Logging specific to MC record/replay facility");
26
27 char* MC_record_path = NULL;
28
29 void MC_record_replay(mc_record_item_t start, size_t len)
30 {
31   MC_wait_for_requests();
32   mc_record_item_t end = start + len;
33
34   // Choose the recorded simcall and execute it:
35   for (mc_record_item_t item=start;item!=end; ++item) {
36
37     XBT_DEBUG("Executing %i$%i", item->pid, item->value);
38 /*
39     if (xbt_dynar_is_empty(simix_global->process_to_run))
40       xbt_die("Unexpected end of application.");
41 */
42
43     // Choose a request:
44     smx_process_t process = SIMIX_process_from_PID(item->pid);
45     if (!process)
46       xbt_die("Unexpected process.");
47     smx_simcall_t simcall = &(process->simcall);
48     if(!simcall || simcall->call == SIMCALL_NONE)
49       xbt_die("No simcall for this process.");
50     if (!MC_request_is_visible(simcall) || !MC_request_is_enabled(simcall))
51       xbt_die("Unexpected simcall.");
52
53     // Execute the request:
54     SIMIX_simcall_handle(simcall, item->value);
55     MC_wait_for_requests();
56   }
57 }
58
59 xbt_dynar_t MC_record_from_string(const char* data)
60 {
61   XBT_INFO("path=%s", data);
62   if (!data || !data[0])
63     return NULL;
64
65   xbt_dynar_t dynar = xbt_dynar_new(sizeof(s_mc_record_item_t), NULL);
66
67   const char* current = data;
68   while (*current) {
69
70     s_mc_record_item_t item = { 0, 0 };
71     int count = sscanf(current, "%u/%u", &item.pid, &item.value);
72     if(count != 2 && count != 1)
73       goto fail;
74     xbt_dynar_push(dynar, &item);
75
76     // Find next chunk:
77     const char* end = strchr(current, ';');
78     if(end==NULL)
79       break;
80     else
81       current = end + 1;
82   }
83
84   return dynar;
85
86 fail:
87   xbt_dynar_free(&dynar);
88   return NULL;
89 }
90
91 #ifdef HAVE_MC
92 char* MC_record_stack_to_string(xbt_fifo_t stack)
93 {
94   xbt_fifo_item_t start = xbt_fifo_get_last_item(stack);
95
96   if (!start) {
97     char* res = (char*) malloc(1 * sizeof(char));
98     res[0] = '\0';
99     return res;
100   }
101
102   char* buffer;
103   size_t size;
104   FILE* file = open_memstream(&buffer, &size);
105
106   xbt_fifo_item_t item;
107   for (item = start; item; item = xbt_fifo_get_prev_item(item)) {
108
109     // Find (pid, value):
110     mc_state_t state = (mc_state_t) xbt_fifo_get_item_content(item);
111     int value = 0;
112     smx_simcall_t saved_req = MC_state_get_executed_request(state, &value);
113     const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req);
114     const int pid = issuer->pid;
115
116     // Serialization the (pid, value) pair:
117     const char* sep = (item!=start) ? ";" : "";
118     if (value)
119       fprintf(file, "%s%u/%u", sep, pid, value);
120     else
121       fprintf(file, "%s%u", sep, pid);
122   }
123
124   fclose(file);
125   return buffer;
126 }
127
128 void MC_record_dump_path(xbt_fifo_t stack)
129 {
130   if (MC_record_is_active()) {
131     char* path = MC_record_stack_to_string(stack);
132     XBT_INFO("Path = %s", path);
133     free(path);
134   }
135 }
136 #endif
137
138 void MC_record_replay_from_string(const char* path_string)
139 {
140   xbt_dynar_t path = MC_record_from_string(path_string);
141   mc_record_item_t start = &xbt_dynar_get_as(path, 0, s_mc_record_item_t);
142   MC_record_replay(start, xbt_dynar_length(path));
143   xbt_dynar_free(&path);
144 }
145
146 void MC_record_replay_init()
147 {
148   mc_time = xbt_new0(double, simix_process_maxpid);
149 }
150
151 }