Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] OOPify/C++ify Type (cont)
[simgrid.git] / src / mc / mc_object_info.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 #include <stddef.h>
8
9 #include <xbt/dynar.h>
10
11 #include "mc_object_info.h"
12 #include "mc_private.h"
13
14 namespace simgrid {
15 namespace mc {
16
17 // Type
18
19 Type::Type()
20 {
21   this->type = 0;
22   this->id = 0;
23   this->byte_size = 0;
24   this->element_count = 0;
25   this->members = nullptr;
26   this->is_pointer_type = 0;
27   this->subtype = nullptr;
28   this->full_type = nullptr;
29 }
30
31 Type::~Type()
32 {
33   xbt_dynar_free(&this->members);
34 }
35
36 // ObjectInformations
37
38 dw_frame_t ObjectInformation::find_function(const void *ip) const
39 {
40   xbt_dynar_t dynar = this->functions_index;
41   mc_function_index_item_t base =
42       (mc_function_index_item_t) xbt_dynar_get_ptr(dynar, 0);
43   int i = 0;
44   int j = xbt_dynar_length(dynar) - 1;
45   while (j >= i) {
46     int k = i + ((j - i) / 2);
47     if (ip < base[k].low_pc) {
48       j = k - 1;
49     } else if (ip >= base[k].high_pc) {
50       i = k + 1;
51     } else {
52       return base[k].function;
53     }
54   }
55   return nullptr;
56 }
57
58 dw_variable_t ObjectInformation::find_variable(const char* name) const
59 {
60   unsigned int cursor = 0;
61   dw_variable_t variable;
62   xbt_dynar_foreach(this->global_variables, cursor, variable){
63     if(!strcmp(name, variable->name))
64       return variable;
65   }
66
67   return nullptr;
68 }
69
70 }
71 }