Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move code in simgrid::mc
[simgrid.git] / teshsuite / mc / dwarf / dwarf.cpp
1 /* Copyright (c) 2014-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 #ifdef NDEBUG
8 #undef NDEBUG
9 #endif
10
11 #include <string.h>
12 #include <assert.h>
13
14 #include <mc/mc.h>
15
16 #include "mc/datatypes.h"
17 #include "src/mc/mc_private.h"
18
19 #include "src/mc/Process.hpp"
20 #include "src/mc/Type.hpp"
21 #include "src/mc/ObjectInformation.hpp"
22 #include "src/mc/Variable.hpp"
23
24 int test_some_array[4][5][6];
25 struct some_struct { int first; int second[4][5]; } test_some_struct;
26
27 static simgrid::mc::Type* find_type_by_name(simgrid::mc::ObjectInformation* info, const char* name)
28 {
29   for (auto& entry : info->types)
30     if(entry.second.name == name)
31       return &entry.second;
32   return nullptr;
33 }
34
35 static simgrid::mc::Frame* find_function_by_name(
36     simgrid::mc::ObjectInformation* info, const char* name)
37 {
38   for (auto& entry : info->subprograms)
39     if(entry.second.name == name)
40       return &entry.second;
41   return nullptr;
42 }
43
44 static simgrid::mc::Variable* find_local_variable(
45     simgrid::mc::Frame* frame, const char* argument_name)
46 {
47   for (simgrid::mc::Variable& variable : frame->variables)
48     if(argument_name == variable.name)
49       return &variable;
50
51   for (simgrid::mc::Frame& scope : frame->scopes) {
52     simgrid::mc::Variable* variable = find_local_variable(
53       &scope, argument_name);
54     if(variable)
55       return variable;
56   }
57
58   return nullptr;
59 }
60
61 static void test_local_variable(simgrid::mc::ObjectInformation* info, const char* function, const char* variable, void* address, unw_cursor_t* cursor) {
62   simgrid::mc::Frame* subprogram = find_function_by_name(info, function);
63   assert(subprogram);
64   // TODO, Lookup frame by IP and test against name instead
65
66   simgrid::mc::Variable* var = find_local_variable(subprogram, variable);
67   assert(var);
68
69   void* frame_base = subprogram->frame_base(*cursor);
70   simgrid::dwarf::Location location = simgrid::dwarf::resolve(
71     var->location_list, info, cursor, frame_base, NULL, -1);
72
73   xbt_assert(location.in_memory(),
74     "Expected the variable %s of function %s to be in memory",
75     variable, function);
76   xbt_assert(location.address() == address,
77     "Bad resolution of local variable %s of %s", variable, function);
78
79 }
80
81 static simgrid::mc::Variable* test_global_variable(
82   simgrid::mc::Process& process, simgrid::mc::ObjectInformation* info,
83   const char* name, void* address, long byte_size)
84 {
85   simgrid::mc::Variable* variable = info->find_variable(name);
86   xbt_assert(variable, "Global variable %s was not found", name);
87   xbt_assert(variable->name == name,
88     "Name mismatch for %s", name);
89   xbt_assert(variable->global, "Variable %s is not global", name);
90   xbt_assert(variable->address == address,
91       "Address mismatch for %s : %p expected but %p found",
92       name, address, variable->address);
93
94   auto i = process.binary_info->types.find(variable->type_id);
95   xbt_assert(i != process.binary_info->types.end(), "Missing type for %s", name);
96   simgrid::mc::Type* type = &i->second;
97   xbt_assert(type->byte_size = byte_size, "Byte size mismatch for %s", name);
98   return variable;
99 }
100
101 static simgrid::mc::Member* find_member(simgrid::mc::Type& type, const char* name)
102 {
103   for (simgrid::mc::Member& member : type.members)
104     if(member.name == name)
105       return &member;
106   return nullptr;
107 }
108
109 int some_local_variable = 0;
110
111 typedef struct foo {int i;} s_foo;
112
113 static void test_type_by_name(simgrid::mc::Process& process, s_foo my_foo)
114 {
115   assert(
116     process.binary_info->full_types_by_name.find("struct foo") !=
117       process.binary_info->full_types_by_name.end());
118 }
119
120 int main(int argc, char** argv)
121 {
122   SIMIX_global_init(&argc, argv);
123
124   simgrid::mc::Variable* var;
125   simgrid::mc::Type* type;
126
127   simgrid::mc::Process process(getpid(), -1);
128   process.init();
129
130   test_global_variable(process, process.binary_info.get(),
131     "some_local_variable", &some_local_variable, sizeof(int));
132
133   var = test_global_variable(process, process.binary_info.get(),
134     "test_some_array", &test_some_array, sizeof(test_some_array));
135   auto i = process.binary_info->types.find(var->type_id);
136   xbt_assert(i != process.binary_info->types.end(), "Missing type");
137   type = &i->second;
138   xbt_assert(type->element_count == 6*5*4,
139     "element_count mismatch in test_some_array : %i / %i",
140     type->element_count, 6*5*4);
141
142   var = test_global_variable(process, process.binary_info.get(),
143     "test_some_struct", &test_some_struct, sizeof(test_some_struct));
144   i = process.binary_info->types.find(var->type_id);
145   xbt_assert(i != process.binary_info->types.end(), "Missing type");
146   type = &i->second;
147
148   assert(type);
149   assert(find_member(*type, "first")->offset() == 0);
150   assert(find_member(*type, "second")->offset()
151       == ((const char*)&test_some_struct.second) - (const char*)&test_some_struct);
152
153   unw_context_t context;
154   unw_cursor_t cursor;
155   unw_getcontext(&context);
156   unw_init_local(&cursor, &context);
157
158   test_local_variable(process.binary_info.get(), "main", "argc", &argc, &cursor);
159
160   {
161     int lexical_block_variable = 50;
162     test_local_variable(process.binary_info.get(), "main",
163       "lexical_block_variable", &lexical_block_variable, &cursor);
164   }
165
166   s_foo my_foo;
167   test_type_by_name(process, my_foo);
168
169   _exit(0);
170 }