Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9af2e2ff4887ffecfb54ea32e381420f82d49505
[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 <xbt.h>
15 #include <mc/mc.h>
16
17 #include "mc/datatypes.h"
18 #include "mc/mc_object_info.h"
19 #include "mc/mc_private.h"
20
21 #include "mc/Process.hpp"
22 #include "mc/Type.hpp"
23 #include "mc/ObjectInformation.hpp"
24 #include "mc/Variable.hpp"
25
26 int test_some_array[4][5][6];
27 struct some_struct { int first; int second[4][5]; } test_some_struct;
28
29 static simgrid::mc::Type* find_type_by_name(simgrid::mc::ObjectInformation* info, const char* name)
30 {
31   for (auto& entry : info->types)
32     if(entry.second.name == name)
33       return &entry.second;
34   return nullptr;
35 }
36
37 static simgrid::mc::Frame* find_function_by_name(
38     simgrid::mc::ObjectInformation* info, const char* name)
39 {
40   for (auto& entry : info->subprograms)
41     if(entry.second.name == name)
42       return &entry.second;
43   return nullptr;
44 }
45
46 static simgrid::mc::Variable* find_local_variable(
47     simgrid::mc::Frame* frame, const char* argument_name)
48 {
49   for (simgrid::mc::Variable& variable : frame->variables)
50     if(argument_name == variable.name)
51       return &variable;
52
53   for (simgrid::mc::Frame& scope : frame->scopes) {
54     simgrid::mc::Variable* variable = find_local_variable(
55       &scope, argument_name);
56     if(variable)
57       return variable;
58   }
59
60   return nullptr;
61 }
62
63 static void test_local_variable(simgrid::mc::ObjectInformation* info, const char* function, const char* variable, void* address, unw_cursor_t* cursor) {
64   simgrid::mc::Frame* subprogram = find_function_by_name(info, function);
65   assert(subprogram);
66   // TODO, Lookup frame by IP and test against name instead
67
68   simgrid::mc::Variable* var = find_local_variable(subprogram, variable);
69   assert(var);
70
71   void* frame_base = mc_find_frame_base(subprogram, info, cursor);
72   simgrid::dwarf::Location location = simgrid::dwarf::resolve(
73     var->location_list, info, cursor, frame_base, NULL, -1);
74
75   xbt_assert(location.in_memory(),
76     "Expected the variable %s of function %s to be in memory",
77     variable, function);
78   xbt_assert(location.address() == address,
79     "Bad resolution of local variable %s of %s", variable, function);
80
81 }
82
83 static simgrid::mc::Variable* test_global_variable(simgrid::mc::Process* process, simgrid::mc::ObjectInformation* info, 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 p(getpid(), -1);
128   simgrid::mc::Process* process = &p;
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 }