Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add some #includes
[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 dw_frame_t MC_file_object_info_find_function(mc_object_info_t info, const void *ip)
15 {
16   xbt_dynar_t dynar = info->functions_index;
17   mc_function_index_item_t base =
18       (mc_function_index_item_t) xbt_dynar_get_ptr(dynar, 0);
19   int i = 0;
20   int j = xbt_dynar_length(dynar) - 1;
21   while (j >= i) {
22     int k = i + ((j - i) / 2);
23     if (ip < base[k].low_pc) {
24       j = k - 1;
25     } else if (ip >= base[k].high_pc) {
26       i = k + 1;
27     } else {
28       return base[k].function;
29     }
30   }
31   return NULL;
32 }
33
34 dw_variable_t MC_file_object_info_find_variable_by_name(mc_object_info_t info, const char* name)
35 {
36   unsigned int cursor = 0;
37   dw_variable_t variable;
38   xbt_dynar_foreach(info->global_variables, cursor, variable){
39     if(!strcmp(name, variable->name))
40       return variable;
41   }
42
43   return NULL;
44 }