Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : disable use of system malloc for raw_heap
[simgrid.git] / src / mc / mc_memory.c
1 /* Copyright (c) 2008-2012 Da 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 <sys/stat.h>
7 #include <fcntl.h>
8 #include "mc/mc.h"
9 #include "mc_private.h"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_memory, mc,
13                                 "Logging specific to MC (memory)");
14
15 /* Pointers to each of the heap regions to use */
16 void *std_heap = NULL;          /* memory erased each time the MC stuff rollbacks to the beginning. Almost everything goes here */
17 void *raw_heap = NULL;          /* memory persistent over the MC rollbacks. Only MC stuff should go there */
18
19 /* Initialize the model-checker memory subsystem */
20 /* It creates the two heap regions: std_heap and raw_heap */
21 void MC_memory_init()
22 {
23   /* Create the first region HEAP_OFFSET bytes after the heap break address */
24   std_heap = mmalloc_get_default_md();
25   xbt_assert(std_heap != NULL);
26
27 #if defined HAVE_GNU_LD && !defined MMALLOC_WANT_OVERRIDE_LEGACY 
28   /* use the system malloc for the model-checker data */
29   raw_heap = NULL;
30 #else
31   /* Create the second region a page after the first one ends + safety gap */
32   raw_heap = xbt_mheap_new(-1, (char*)(std_heap) + STD_HEAP_SIZE + getpagesize());
33   xbt_assert(raw_heap != NULL);
34 #endif
35 }
36
37 /* Finalize the memory subsystem */
38 #include "xbt_modinter.h"
39 void MC_memory_exit(void)
40 {
41   if (raw_heap)
42     xbt_mheap_destroy(raw_heap);
43 }