Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Use ucontext_t instead of void* in some places
[simgrid.git] / src / mc / mc_ignore.cpp
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 #include "src/internal_config.h"
8 #include "src/mc/mc_object_info.h"
9 #include "src/mc/mc_private.h"
10 #include "src/smpi/private.h"
11 #include "src/mc/mc_snapshot.h"
12 #include "src/mc/mc_ignore.h"
13 #include "src/mc/mc_protocol.h"
14 #include "src/mc/mc_client.h"
15
16 extern "C" {
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_ignore, mc,
19                                 "Logging specific to MC ignore mechanism");
20
21 // ***** Model-checked
22
23 void MC_ignore_heap(void *address, size_t size)
24 {
25   if (mc_mode != MC_MODE_CLIENT)
26     return;
27
28   xbt_mheap_t heap = mmalloc_get_current_heap();
29
30   s_mc_ignore_heap_message_t message;
31   message.type = MC_MESSAGE_IGNORE_HEAP;
32   message.address = address;
33   message.size = size;
34   message.block =
35    ((char *) address -
36     (char *) heap->heapbase) / BLOCKSIZE + 1;
37   if (heap->heapinfo[message.block].type == 0) {
38     message.fragment = -1;
39     heap->heapinfo[message.block].busy_block.ignore++;
40   } else {
41     message.fragment =
42         ((uintptr_t) (ADDR2UINT(address) % (BLOCKSIZE))) >>
43         heap->heapinfo[message.block].type;
44     heap->heapinfo[message.block].busy_frag.ignore[message.fragment]++;
45   }
46
47   if (MC_protocol_send(mc_client->fd, &message, sizeof(message)))
48     xbt_die("Could not send ignored region to MCer");
49 }
50
51 void MC_remove_ignore_heap(void *address, size_t size)
52 {
53   if (mc_mode != MC_MODE_CLIENT)
54     return;
55
56   s_mc_ignore_memory_message_t message;
57   message.type = MC_MESSAGE_UNIGNORE_HEAP;
58   message.addr = (std::uintptr_t) address;
59   message.size = size;
60   MC_client_send_message(&message, sizeof(message));
61 }
62
63 void MC_ignore_global_variable(const char *name)
64 {
65   // TODO, send a message to the model_checker
66   xbt_die("Unimplemented");
67 }
68
69 /** @brief Register a stack in the model checker
70  *
71  *  The stacks are allocated in the heap. The MC handle them especially
72  *  when we analyse/compare the content of the heap so it must be told where
73  *  they are with this function.
74  *
75  *  @param stack
76  *  @param process Process owning the stack
77  *  @param context
78  *  @param size    Size of the stack
79  */
80 void MC_register_stack_area(void *stack, smx_process_t process, ucontext_t* context, size_t size)
81 {
82   if (mc_mode != MC_MODE_CLIENT)
83     return;
84
85   xbt_mheap_t heap = mmalloc_get_current_heap();
86
87   s_stack_region_t region;
88   memset(&region, 0, sizeof(region));
89   region.address = stack;
90   region.context = context;
91   region.size = size;
92   region.block =
93       ((char *) stack -
94        (char *) heap->heapbase) / BLOCKSIZE + 1;
95 #ifdef HAVE_SMPI
96   if (smpi_privatize_global_variables && process) {
97     region.process_index = smpi_process_index_of_smx_process(process);
98   } else
99 #endif
100   region.process_index = -1;
101
102   s_mc_stack_region_message_t message;
103   message.type = MC_MESSAGE_STACK_REGION;
104   message.stack_region = region;
105   MC_client_send_message(&message, sizeof(message));
106 }
107
108 }