Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / mc / mc_member.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 <xbt/misc.h>
8
9 #include "src/mc/mc_private.h"
10 #include "src/mc/Type.hpp"
11 #include "src/mc/mc_dwarf.hpp"
12
13
14 namespace simgrid {
15 namespace dwarf {
16
17 /** Resolve snapshot in the process address space
18  *
19  * @param object   Process address of the struct/class
20  * @param type     Type of the struct/class
21  * @param member   Member description
22  * @param snapshot Snapshot (or NULL)
23  * @return Process address of the given member of the 'object' struct/class
24  */
25 void *resolve_member(
26     const void *base, simgrid::mc::Type* type, simgrid::mc::Member* member,
27     simgrid::mc::AddressSpace* address_space, int process_index)
28 {
29   // TODO, get rid of this?
30   if (!member->has_offset_location())
31     return ((char *) base) + member->offset();
32
33   ExpressionContext state;
34   state.frame_base = NULL;
35   state.cursor = NULL;
36   state.address_space = address_space;
37   state.process_index = process_index;
38
39   ExpressionStack stack;
40   stack.push((ExpressionStack::value_type) base);
41   simgrid::dwarf::execute(member->location_expression, state, stack);
42   return (void*) stack.top();
43 }
44
45 }
46 }