Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5027e081111270c1a7bf9c1bc868b9e5ecd735ff
[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->is_pointer_type = 0;
26   this->subtype = nullptr;
27   this->full_type = nullptr;
28 }
29
30 // ObjectInformations
31
32 dw_frame_t ObjectInformation::find_function(const void *ip) const
33 {
34   xbt_dynar_t dynar = this->functions_index;
35   mc_function_index_item_t base =
36       (mc_function_index_item_t) xbt_dynar_get_ptr(dynar, 0);
37   int i = 0;
38   int j = xbt_dynar_length(dynar) - 1;
39   while (j >= i) {
40     int k = i + ((j - i) / 2);
41     if (ip < base[k].low_pc) {
42       j = k - 1;
43     } else if (ip >= base[k].high_pc) {
44       i = k + 1;
45     } else {
46       return base[k].function;
47     }
48   }
49   return nullptr;
50 }
51
52 dw_variable_t ObjectInformation::find_variable(const char* name) const
53 {
54   unsigned int cursor = 0;
55   dw_variable_t variable;
56   xbt_dynar_foreach(this->global_variables, cursor, variable){
57     if(!strcmp(name, variable->name))
58       return variable;
59   }
60
61   return nullptr;
62 }
63
64 }
65 }