Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : use separate configuration flags for comm determinism and send determ...
[simgrid.git] / src / include / mc / datatypes.h
index 4c6cda3..baeb22d 100644 (file)
@@ -1,23 +1,73 @@
-/* Copyright (c) 2008-2012. Da SimGrid Team. All rights reserved.           */
+/* Copyright (c) 2008-2013. The SimGrid Team.
+ * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #ifndef MC_DATATYPE_H
 #define MC_DATATYPE_H
+
+#define UNW_LOCAL_ONLY
+
 #include "xbt/misc.h"
 #include "xbt/swag.h"
 #include "xbt/fifo.h"
 
+#include <libunwind.h>
+#include <dwarf.h>
+
 SG_BEGIN_DECL()
 
 /******************************* Transitions **********************************/
+
 typedef struct s_mc_transition *mc_transition_t;
 
-typedef struct s_mc_ignore_region{
+
+/*********** Structures for snapshot comparison **************************/
+
+typedef struct s_mc_heap_ignore_region{
+  int block;
+  int fragment;
+  void *address;
+  size_t size;
+}s_mc_heap_ignore_region_t, *mc_heap_ignore_region_t;
+
+typedef struct s_stack_region{
   void *address;
+  char *process_name;
+  void *context;
   size_t size;
-}s_mc_ignore_region_t, *mc_ignore_region_t;
+  int block;
+}s_stack_region_t, *stack_region_t;
+
+void heap_ignore_region_free(mc_heap_ignore_region_t r);
+void heap_ignore_region_free_voidp(void *r);
+
+/************ Object info *************/
+
+typedef struct s_mc_object_info s_mc_object_info_t, *mc_object_info_t;
+
+/************ DWARF structures *************/
+
+typedef int e_dw_type_type;
+
+typedef struct s_dw_type s_dw_type_t, *dw_type_t;
+
+struct s_dw_type{
+  e_dw_type_type type;
+  void *id; /* Offset in the section (in hexadecimal form) */
+  char *name; /* Name of the type */
+  int byte_size; /* Size in bytes */
+  int element_count; /* Number of elements for array type */
+  char *dw_type_id; /* DW_AT_type */
+  xbt_dynar_t members; /* if DW_TAG_structure_type, DW_TAG_union_type*/
+  int is_pointer_type;
+  int offset;
+  dw_type_t subtype;
+  dw_type_t other_object_same_type; // The same (but more complete) type in the other object.
+};
+
+char* get_type_description(mc_object_info_t info, char *type_name);
 
 SG_END_DECL()
 #endif                          /* _MC_MC_H */